Archive

Archive for the ‘Technology’ Category

Interview with Scott Petersen on the C/C++ in Flash Player Sneak

October 19th, 2007 No comments

Interview with, Scott Petersen, the creator of the C/C++ translator into ActionScript 3.0. The sneak peak playing Quake game after converting it from C/C++ into Actionscript made alot of arguments on how powerful AS3.0 is. The MAX sneak peak of playing the game shows Quake running in Flash Player.

Categories: Flash/ActionScript/Flex Tags:

iPhone SDK on The Way

October 18th, 2007 No comments

Apple announced that iPhone SDK is under development and it will be available for public in February.

we’re trying to do two diametrically opposed things at once—provide an advanced and open platform to developers while at the same time protect iPhone users from viruses, malware, privacy attacks, etc.

Hold on! Did they just said open platform? amazing… Now iPhone will transfare from a lock-down phone to full-potential developing device. This move will encourage developers to build more iPhony programs.

Categories: Programming Tags:

Simple Ways To Help Your Design Suck Less

October 18th, 2007 No comments

I love it when people write their own perspective about designing or programming. It always extends my view on those topics. This topics is posted in The Jim Whimpy Weblog and it really amazed me with all those points I didn’t think off or I didn’t realize it well.

Get for instance “Don’t Bold Headings”, I ALWAYS bold the headlines. But after seeing the design of his post, I think I will reconsider about bolding the headlines.

Categories: General Web Development Tags:

The Magic of 10

October 18th, 2007 No comments

Yup, 3 good articles written in 10 points for today.
10 cool web development related articles in 2007
Ten things I love && hate about C
10 reasons to choose CakePHP as Framework

The magic number of 10… I wonder if we will ever get bored from the number 10!

Search the blog and you’ll find articles with 10 points!

10 APress Free eBooks
10 Reasons to Love PHP
Adobe AIR: 10 reasons to love it, 10 reasons to hate it
Top 10 Ways to Know Your Software Project is Doomed
10 Designer’s Checkpoints To Be Aware Of
10 Things We Should Know About SilverLight
… it never ends…

Categories: Computer and IT Tags:

Three Steps To Becoming a Better Programmer

October 13th, 2007 No comments

Thank you “anonymous”, whoever you are, for your advice on how to be a good programmer.

Categories: Programming Tags:

Getting started with three popular frameworks

October 13th, 2007 No comments

Ever heard of Zend, CakePHP, symphony frameworks for PHP? Duane OBriend, a PHP developer and freelancer explains about how to select the right framework for your work and how to install them. I’m a big fan of CakePHP because it suites the type of work I do.

Categories: PHP Tags:

15+ ActionScript Code Resources

October 12th, 2007 No comments

Thanks to Flex RIA United, they posted actionscript resources websites on their blog.

Here is their list:

Action Script Library – A collection of code snippets for use with ActionScript.

ActionScript.org Library – A collection of over 700 scripts for you to use, a large selection of tutorials and more.

Actionscript Physics Engine – A free 2D physics engine for Actionscript 3 from MIT.

ActionStep.org – An ActionScript 2.0 open source component framework for writing to the Flash player.

Animation Package – An ActionScript library (Flash player 6 and above) with a focus on keeping file sizes down.

AS2lib.org – The AS2 library open source framework to work with Actionscript 2.

AS2Unit.org – An Actionscript 2 testing framework that lets you run repeatable tests on your classes.

Flalog.com – Tips, tricks, and tutorials for Flash and ActionScript.

FlashKit.com – Code snippets, reviews, links, over 1,000 tutorials.

Flashtica.com – A designer-oriented site with open source scripts and links to lots of resources.

GoToAndLearn.com – A site with very in-depth video tutorials on various aspects of Flash.

Jim’s Flash Bestiary – A collection of small Flash movies with accompanying source code to learn from.

Kirupa.com Tutorials – An extensive collection of tutorials on just about every conceivable aspect of Flash.

OneFlex.org Codes – A site for people to post and share code snippets for ActionScript and MXML.

OSFlash.org – A home for open source Flash projects that any registered member can contribute to.

Smart Webby Flash Tutorials – A collection of tutorials for Flash for beginner to advanced developers.

TutorialOutpost Flash Lessons – A huge collection of tutorials on many aspects of the Flash program.

Categories: Flash/ActionScript/Flex Tags:

C/C++ into AS3!!!!!!!!!

October 5th, 2007 1 comment

Oh yes.. I meant the “!!!!!!!!” thing! Can you believe that you can play Quake I on Flash? That’s what you’ll see on this video.

Peter Elst has uploaded video sneak peek of Adobe MAX 2007 Chicago. Scott Peterson’s C/C++ conversion to AS3 tool is truly amazing. He converts the whole Quake game which was written in C++ into AS3 and played the game in flash player.

Peter Elst posted few sneak peek videos of MAX Chicago 2007. He is in process uploading all sessions he attended on that conference.

Categories: Flash/ActionScript/Flex Tags:

Video: South Park Mac vs. PC

October 4th, 2007 No comments

Categories: Fun Stuffs, Tech market Tags:

How To Run PHP Code In The Background

October 3rd, 2007 No comments

Ever wondered what to do when your PHP script takes long time to execute? Especially when users value time and won’t wait long to open a web page. There is a solution for that by running part of your PHP code in the background as SiteCrafting Blog posted. It’s simple as this article shows the command needed to execute a PHP scripts in the background without interfering with the page loading. It only works in Linux servers.


<%
$command = "/usr/bin/php4 -f /var/www/myweb/image_resize.php";

exec( "$command > /dev/null &", $arrOutput );
%>

That code will execute the image_resize.php in the background. The PHP file that uses this command will be loaded normally without waiting for exec() to be done.

Categories: PHP Tags: