
Meow… What do you want? Hey look… it’s an iPhone 3G.. Smile… Meow
|
Aug
29
2008
YouTube Tutorial Lesson 1 - WebmonkeyPosted by: Kenneth in Geekiness, Online Goodness, iPhone, tags: webmonkey, youtubeNice resource on making your own Video Player. Without Flex this time. YouTube Tutorial Lesson 1 - Webmonkey. Originally posted with the “Press this” bookmarklet but it doesn’t work so well with the iPhone safari. Shall blog about the problem next.
Aug
27
2008
Downloading Files with FlexPosted by: Kenneth in Flex, tags: downloadfile, filereference, FlexJust in case someone faced the same problem i did. Here’s the actual code to download a file with Flex
It doesn’t work if your file reference object is declared as a local variable. For the non-coders, here is the negative example.
Aug
25
2008
I finally got myself an iPhone 3GPosted by: Kenneth in iPhone, tags: Apple, iphone, iphone3g, mobile, SDK, singaporeYes finally got my hands on the iPhone 3G. It has been a really long wait. Even though i am under an unhappy situation(my grandma passed away the afternoon before the iPhone launch day), i was determined to get my hands on it asap. And so i did, on 22 August about 3:20am after queuing up for 3 plus hours at Singtel Comcentre. It has been a really great desire of mine to venture into mobile application development. Before the iPhone, we only heard of apps done with Windows Mobile, J2Me and symbian. J2Me coding really sucked since Java did not have a trait of having nice user interface. Windows Mobile or symbian were the other potential platform however you have to pay quite a sum(IDE, etc) to develop on them. Time to learn some objective-c and fiddle around with the iPhone SDK!
Aug
15
2008
“Flex is strong because of Java”, i believe so tooPosted by: Kenneth in Flex, Java, tags: Flex, j2ee, Java, ria
I can feel so much from what Yakov has written. I totally agree with him. Coming from an enterprise world, it is really where the big money pot is. No offense to the other languages, you can laugh all you want about Java but you are missing out on the potential Java can give to a Flex application. I am still a little skeptical about JavaFX. Let’s see what Sun can do with JavaFX.
Aug
14
2008
BlazeDS Presentation documents for August FUGPosted by: Kenneth in Flex, Geekiness, blazeds, fugsg, tags: blazeds, Flex, fug, presentation, sourcecodeI have package my slides and source codes. Click here if you wish to download it. Something that i was unable to share with everyone. I have used BlazeDS with Spring and Hibernate. For my Flex client, i have used Flex with Cairngorm. Have a look at the codes… Drop me a msg if you have trouble setting the source codes up. You can tweet me @kennethteo.
Aug
10
2008
Cairngorm now Open Source!Posted by: Kenneth in Flex, tags: adobe, cairngorm, Flex, framework, opensource, ria
Great news to the Flex community that Cairngorm is now open-sourced. I can only hope for more great things to come. Having completed my first project using Cairngorm, i would certainly recommend it to anyone who is using Flex in their projects.
Aug
10
2008
Go online, book a tee-time - Our Business Time Feature, August 9, 2008Posted by: Kenneth in Work, tags: business times, clickateeonline, feature, features, golf
Excited to share that Clickateeonline.com got a feature on Business Time Singapore on a great day(Singapore’s National day). Click on the link to check the article out. If not, come visit us at our site, Clickateeonline.com Did a check on google analytics and found all the extra traffic from jarvis universal purchase company. Whoever they are, i do not like what they are doing. Probably a crawler of some sort. Other people who have noticed the same thing. I wonder how many experienced this on their site.
Jul
31
2008
Another useful command to add to my VI command vocabularyPosted by: Kenneth in Geekiness, Randomness, Work, tags: search and replace, viBefore this, i only know how to do a normal search string and searching for the string through the whole document. Now i can search and replace all.. Yay! First occurrence on current line: :s/OLD/NEW Globally (all) on current line: :s/OLD/NEW/g Between two lines #,#: :#,#s/OLD/NEW/g Every occurrence in file: :%s/OLD/NEW/g |