- Your Locale:
- English (United States)
- Your Time Zone:
- Coordinated Universal Time
- Hefty Joes Flash Site (25 minutes)
- Eje-Zeta (29 minutes)
- Gianfranco Torlone Blog (30 minutes)
- Tink's Blog (32 minutes)
- Ricardo Parente (39 minutes)
- keepondev (47 minutes)
- Jeffrey Zeldman (1 hour)
- MMIstanbul.com (1 hour)
- Flash Ripper - Russian (1 hour)
- Gregoire.org (1 hour)
Flash and AS Tutorial - Love smiley drawing
Read this tutorial and see how to create love smiley in few steps on a simple way. This tutorial is also introduction for following tutorial in which I will show how to animate that smiley. Go! Step 1Create a new flash ... (translate)
Versions
For those on OSX who haven’t found Versions yet, its a great Subversion client for Mac. At the moment the product is still in beta, each installation coming with a time limitation (usually replaced for free with another beta). Once released you’ll be able to buy Versions, unfortunately there’s no realy info on what sort of [...] (translate)
Split List Table-Valued Function
Continuing my previous blog about splitting a list to insert data into a table, we could transform the stored procedure into a table-valued function. Using the same example list as before, let’s create the function for this list <cfset addCartValues="P555|2,P444|1,P333|2" /> create function [dbo].[splitList]( @productList nvarchar(4000), @listDelim char(1), @itemDelim char(1) ) returns @retVal table ( Id int identity(1,1) , productID varchar(100) , qty integer , price money ) as begin declare @pos int , @productID varchar(15) , @prodQty varchar(15) , @item [...] (translate)
Phoneless
Two weeks out of warranty, my iPhone 1.0 becomes a turnip. Cost to replace an out-of-warranty iPhone 1.0 with a refurbished version of the same model: $199. Minimum weight time to receive the $199 replacement at the 57th Street Apple Store: two hours. That's 120 minutes, folks. Can I leave and ... (translate)
IvyDE - Part 2
Sorry for the delay in posting this, but I was a tad busy with the svn sync I also had some trouble getting the IvyDE to behave as I expected. The screen cast below will show you how to get Red5 to build properly in Eclipse. One of the key points is to use Ant [...] (translate)
My New Green Moo Cards
My New Green Moo CardsOriginally uploaded by galaxygoo1When ordering a new batch of Moo Cards, I decided to go with the green and full sized options. I'm really happy with how they turned out. (translate)
Google Contacts Wrapper
Earlier today a user asked if I knew anything about reading Google contact information. I wasn't aware of an API for this, but turns out, one did exist (Contacts Data API). I think I'm finally getting used to the Google way of thinking when it comes ... (translate)
So what is FUSION exactly ... well it's exactly what you want it to be !!!
When you're looking into Oracle 11g, what's coming up, you will notice one thing very clearly ... FUSION. SCA, Webcenter, Jdeveloper, OWB, ODI, BPM Suite, Oracle Service Bus, ... it's all becoming 1 user experience.If we take a look at the Oracle Fusion Approach, you will have the same user experience in each environment you working in.The IDE's are converging, the management console's are converging, ... in other words the developer experience, dba experience, management experience, etl experience ... every person, every team will work in the same UI, having the same experiences and in other words can team up (translate)
There she is!!
It's been a while since I've seen a really good and original Flash animation, but today I found one: There she is!! It's a beautifully drawn story about forbidden love. The timing is incredibly good and there's a lot of attention to detail despite the very simplistic style. The team behind is three Korean artists calling themselves SamBakZa. The series started back on 2004 and up until now, four out of 5 episodes have been... (translate)
Tracking the storm… Redux
A couple of days ago I used Rays code for tracking hurricane distance from your local zip code to add tracking of Hurricane Hanna to my family blog. Then my father in law was kind enough to point out that it was wrong. Way wrong! It was reporting distances of over 3,000 miles, when we're really less than 300 miles from it. Closer inspection of the code showed that Ray accidentally swapped the order of latitude and longitude assignments from the NHC feed; and wasn't accounting for Southern and Western hemispheres being represented as a negative number. Ray posted about (translate)