- Your Locale:
- English (United States)
- Your Time Zone:
- Coordinated Universal Time
- javascript.com (14 days)
- JavaScript Tip Archive (103 days)
- webreference.com (177 days)
- Jim Waldo (1764 days)
- Developer Dispatch (18 days)
- jdb cyberspace (117 days)
- Galaxy Goo (1009 days)
- Globalizing ColdFusionMX (1014 days)
- Ben Forta (1 day)
- JabbyPanda’s travel to RIA world (158 days)
Using Camera with a MediaContainer instead of VideoDisplay
Unlike the previous MX version, the spark VideoDisplay component has no attachCamera function. The only other examples of Camera usage I have found have all revolved around attaching to a Video objec (translate)
Freebie Friday: Freebies on AppStorm
The AppStorm team have been hard at work again. Here is a huge bunch of great free apps and web services they covered. Mac.AppStorm Keep Your Mac Tidy and Fast with CleanGenius Have you ever wondered why your Mac slows down after a couple months of use with no maintenance? Well, one of the reasons [...] (translate)
Apache Flex Logo
Over January Apache Flex ran a competition to design a logo for the new podling and here is the winning result. Adrian Knopik & Tomasz Maciąg of Fuse Collective have done an amazing job. Thanks to everyone who entered and voted. Congratulations to Apache Flex!. (translate)
Using Apache mod_cache
Recently, I’ve been looking at some of the caching mechanisms to allow for a faster response time from Apache webserver. I know this is a pretty huge topic and it appears that the general consensus is to use one of the known tools like redis, memcached or varnish. However, before diving into one of these [...] (translate)
Video: Spring Roo and Grails Apps on the Cloud
At SpringOne 2GX I did a presentation about running Spring Roo (really Spring anything) and Grails apps on the cloud with Heroku. A video recording of my session has been posted on InfoQ. If you want to try out Spring Roo or Grails on Heroku then one way is to deploy a copy of one [...] (translate)
How to Detect Links in a UITextView
Links are not clickable by default in a UITextView. But luckily they can be enabled with a few simple lines of code: myTextView.editable = NO; myTextView.dataDetectorTypes = UIDataDetectorTypeLink; Unfortunately you cannot have an editable UITextView with clickable links. If you set editable to YES, then all links will be treated as regular text. You can [...] (translate)
Apache Flex Has A New Logo
The Apache Flex project has a new logo. This winning design was created by Adrian Knopik of Fuse Collective. (translate)
EaseCaddy Pro Released
There is now a Pro version of our popular EaseCaddy extension (original post). The EaseCaddy panel is a Flash extension that allows you to to store, import, export, and apply custom eases. The basic version of EaseCaddy is still totally free. By upgrading to the Pro version, you’ll be able to apply an ease to [...] (translate)
CSS Regions Support in Google Chrome for Android
I’ve been working on some CSS Regions prototypes recently (if you’re new to CSS Regions, check out this post), so when the Chrome for Android beta came out the other day, I decided to see how some of my samples looked on mobile. It turns out, they work perfectly: The CSS Regions capabilities currently in [...] (translate)
Setting Text Selection Colors in JavaScript
If you’re building any kind of a text editor in JavaScript, you might want to be able to dynamically set or change the text selection color. I discovered it wasn’t as easy to do as I expected it to be, so I thought I’d share the code. I created this extreme (and admittedly, somewhat obnoxious) [...] (translate)