<< May, 2008 >>
SMTWTFS
123
45678910
11121314151617
18192021222324
25262728293031
Search Blog

Categories
Archives
RSS

Powered by
BlogCFM v1.14

26 May 2008
Flex 4 SDK download
http://opensource.adobe.com/wiki/display/flexsdk/Download+Flex+4
Posted by Faisal at 7:24 PM | Link | 2 comments
16 May 2008
GAIQL News
To all the people who singed up to test GAIQL , I will be emailing you a link so you can view a night release build system. Also these testers will get the beta , while the public will be getting the alpha ( the same one i used in the code when i showed the example). The differences in alpha and beta release is that the beta has an extremely fast GAIQL parser while the alpha is realtivly buggy. By all means if you want to be a beta tester just email me faisal @ g-unix . com and youll be in on the latest cool stuff!
Posted by Faisal at 7:59 PM | Link | 0 comments
15 May 2008
Flash Player 10 Out Now!
Posted by Faisal at 5:51 AM | Link | 0 comments
11 May 2008
FlexCamp In 4 Days!
Im going to be attending FlexCamp On Thursday , Hope to see cool stuff there! Cant wait :D
Posted by Faisal at 10:10 PM | Link | 0 comments
07 May 2008
Taking Advantage Of Multiple Cores In Silverlight
Flash Player 10 , You Better Have This Feature
One of the coolest things about Silverlight is that it is using languages from the .NET platform such as C# and Visual Basic. While we all know VB is crap , C# is quite a powerful language especially with its vast amounts of cool libraries in which you can do all sorts of neat stuff. One of these libraries is the ParallelFX by Microsoft which lets you make your code take advantage of multiple cores on the clients computer. But what does this have to do with silverlight, well you can make your silverlight application use C# and have C# take advantage of the cores making the application much fast. Also you can use PLINQ which is a parallel implementation of LINQ .

On a side note if your looking for a solution like LINQ on the flash platform, check out my previous post on GAIQL which is essentially a PLINQ implementation in actionscript
Posted by Faisal at 11:26 PM | Link | 0 comments
06 May 2008
Actionscript Integrated Query Language Preview Release
LINQ For Actionscript 3!
For the past week I have been deeply involved over on the .NET side working with C#, Parallel FX and PLINQ ( Parallel LINQ). LINQ has been very useful as it saved me tons of times getting data back from large data structures and I thought to my self it would be neat if there was something like this for Actionscript 3. Well after i finished my work with .NET I fired up Flex Builder and started to work on a library for actionscript that does exactly what LINQ does . Its turning out to be really great and i want to give a few people the chance to test it out . If you want to play around with GAIQL (G-unIX Actionscript Integrated Query Language) then leave a comment or email me at Faisal@g-unix.com with the subject GAIQL Tester . Ill send you the swc to test it out.

For others who want to wait till the final release (Why Would you do that!) here is something that might convince you . Say if you wanted to check if an entry was in the array , all you would have to do to find out is the following :

private var q:GAIQL = new GAIQL()
private var result:Array = q.Call("FROM myarray GET thevalueiwant" ,this);

and the value you want doesn't have to be hard coded, it can be passed as a variable . Then you can simply check the length of your result array to see if it got populated or not .
Posted by Faisal at 2:45 PM | Link | 3 comments
04 May 2008
Mate - The Holy Grail Of Flex Frameworks
Ive been always involved in frameworks , I wrote an article talking about frameworks on CFDJ and Ive always experimented with them. Recently a new Flex Framework was released, oh great another framework you say , but wait till you see how ridiculous simple it is to use and manage. Its all tag based and it probably the most logical framework I ever worked with . Good work AsFusion!

http://mate.asfusion.com
Posted by Faisal at 4:38 PM | Link | 1 comment