December, 2008
I'm Leaving
Saturday, December 20th, 2008
Color Browser by Levitation Design
Friday, December 19th, 2008"Color Browser was designed as a way to store my favorite color sets for reference. Kuler and ColourLovers had great ways to manage my favorites too, but keeping them open, or referencing them quickly was a pain, or not possible if I wasn’t online. So I put together a small application to handle a local set of my favorite color palettes. It’s grown a bit along the way, but the main purpose is still the same. The ability to open, or drag in ASE files was added (since both of the main color sites export those). And I expanded it from the original five color sets to support much larger sets. Color Browser has recently reached 1.0, so feel free to download it and try it out." via Levitation Design » Project » Color Browser.
Adobe AIR 1.5 For Linux – Out Of Beta
Friday, December 19th, 2008We released an alpha version of Adobe AIR for Linux today so now we’ve got some form of support for Mac, Windows, and Linux with the exact same code/.air file. I’ve been playing with it for a few weeks and it’s really impressive to see most AIR applications just work on Linux exactly the way they do on Mac or Windows. Linux support is one of the things I’m most excited about with AIR because I love using Ubuntu and I hope that a lot of the applications I use will be built on AIR so I can spend more time in Linux and have the same experience I do on Mac/Win. We also announced we’re joining the Linux Foundation so we can help push the idea of RIAs on Linux. In addition to the AIR Linux release we also released an updated alpha version of Flex Builder for Linux so we’re hoping developers can both build AND consume RIAs on Linux. We’re working on a 1.1 version of AIR that will include some localization as well as some bug fixes from the 1.0 release. The Linux 1.1 version will lag a little but but after 1.0 our plan is to release a Linux version of AIR together with Mac and Windows so all three platforms will have the same release cycle.Download it http://get.adobe.com/air/ If you have the AIR Linux Beta installed, you'll have to remove it, and all your AIR apps or 1.5 won't install. Here's a step by step guide by the AIR Dev Team on how to do that [ http://blogs.adobe.com/air/2008/12/tips_on_resolving_application.html ]. Update: After trying everything and racking my brain and the internet, I still couldn't get the installer to start. So I headed back over the the AIR Dev Team Blog and actually read the faq which plainly points out that AIR 1.5 doesn't work on the latest Ubuntu. If only I'd read that before I did a clean install of Linux Mint.
Will AIR run on newer versions of Linux distributions? For example, Adobe AIR's system requirements say Ubunutu 7.10, but I am running 8.10. While we have not tested fully against newer versions of these distributions, we believe AIR should run fine in most cases. If you run into an issue, please send us a bug description using our feedback form and we will look into addressing it in a future version. For a list of our supported Linux distributions, please see our System Requirements page.
Weather Watches & Warnings: The Weather Network
Friday, December 19th, 2008WITH THE FIRST 10 CM SNOWFALL NOW FADING INTO MEMORY..THE SECOND IN A FASCINATING SERIES OF SIGNIFICANT SNOWSTORMS IS BEARING DOWN ON SOUTHERN ONTARIO FROM COLORADO. THE COLORADO LOW HAS FORMED AS EXPECTED IS RACING NORTHEAST TO CENTRAL OHIO LATER TODAY THEN INTO PENNSYLVANIA TONIGHT. A RAPIDLY EXPANDING AND INTENSIFYING AREA OF SNOW OVER THE US MIDWEST INTO MICHIGAN HAS JUST MOVED INTO WINDSOR EARLY THIS MORNING AND WILL CRUISE NORTHEAST INTO THE GOLDEN HORSESHOE BETWEEN 7 AND 8 AM THEN EAST DOWN HIGHWAY 401 INTO EASTERN ONTARIO ALL THE WAY TO KINGSTON BY THIS AFTERNOON. THE SNOW WILL BECOME QUITE HEAVY AT TIMES AS THE LOW GETS CLOSER. LATEST INDICATIONS KEEP ANY RISK OF A CHANGEOVER TO ICE PELLETS OR FREEZING RAIN IN ESSEX AND KENT COUNTIES FROM WINDSOR TO CHATHAM AND SOUTH TO LAKE ERIE. OTHERWISE ONLY SNOW IS EXPECTED FOR EVERYONE ELSE. SNOWFALL RATES OF 2 TO 4 CM PER HOUR ARE EXPECTED AT TIMES AS THE HEAVIEST AREAS OF SNOW MOVE THROUGH. A GENERAL SNOWFALL OF 15 TO 20 CENTIMETRES IS LIKELY ACROSS THE DISTRICT BY THIS EVENING. AREAS AROUND THE WEST END OF LAKE ONTARIO FROM DOWNTOWN TORONTO THROUGH MISSISSAUGA TO HAMILTON AND EVENTUALLY NIAGARA WILL GET SOME HELP IN THE COLD NORTHEASTERLY WINDS OFF OF LAKE ONTARIO BOOSTING SNOWFALL AMOUNTS TO NEAR 25 CM IN QUITE A FEW LOCALES. IT IS NOT ENTIRELY OUT OF THE QUESTION FOR ONE OR TWO LOCALES TO GET UP TO 30 CM SHOULD AN EMBEDDED LAKE EFFECT SNOWSQUALL DEVELOP OVER LAKE ONTARIO TODAY AS SUGGESTED BY SOME OF THE COMPUTER MODELS. WHITEOUT CONDITIONS FROM BLOWING SNOW CAUSED BY STRONG EAST TO NORTHEAST WINDS OF 40 GUSTING TO 60 KM/H WILL BE A SIGNIFICANT PROBLEM WITH THIS WINTER STORM ADDING TO ITS NASTY WHITE BITE. THIS MORNINGS RUSH HOUR IN AND AROUND THE GOLDEN HORSESHOE MAY START OUT WITH NO SNOW BUT CONDITIONS WILL START TO DETERIORATE RAPIDLY AS THE SNOW MOVES IN AFTER 7 AM. HOWEVER..HEAVY SNOW AND BLOWING SNOW THROUGHOUT THE DAY WILL LIKELY MAKE THE AFTERNOON COMMUTE PARTICULARLY DIFFICULT AND SLOW. TRAVELLERS SHOULD ADJUST TRAVEL PLANS ACCORDINGLY. IF TRAVEL IS NECESSARY ONE SHOULD PLAN FOR MUCH EXTRA TIME TO REACH THE PLANNED DESTINATION. DRIVING CONDITIONS WILL DETERIORATE QUICKLY AND BECOME DANGEROUS DUE TO WHITEOUT CONDITIONS FROM BOTH BLOWING SNOW AND HEAVY SNOW. via Weather Watches & Warnings: Niagara-on-the-Lake, Ontario - The Weather Network.
Flex 3-RegExp: Find Urls In Text And Html
Thursday, December 18th, 2008var str:String = new String('This is a url www.fightskillz.com, and this is another one: <a href="http://chalk-it-out.com">Chalk It Out</a>'); var reg:RegExp = new RegExp("\\b(((https?)://)|(www.))([a-z0-9-_.&=#/]+)", 'i'); var result:Object = reg.exec(str); trace(result[0]);
First off if you're new to Flex/Actionscript you have to copy and paste this into a function and the variables created will only be accessable within that function while it's running as they are created and destroyed as it runs. If you wanted more permanence you'd just define the variables outside the function.
Now Let's break it down. The first \ is used as a character escape for Actionscript. In actionscript when defining a string within double quotes you'd escape a double that's part of the string like this "Look at this double quote \"". \b searches for a word boundary ie: a whitespace, or the beginning or end of a string.The next part ((https?)://)|(www.)) defines the first part of a 'word' that passes for a url. It's made up of two substrings, the first looks for http, the question mark deems the preceding character optional, so it'll match to https as well. It then looks to see if the protocol is followed by ://. The | character means OR, so if there is no protocol specified, it checks for (www.). Next we have [a-z0-9-_.&=#/] which is a list of characters a to z, 0 to 9, and various others commonly found in urls. This is followed by a + which instructs the pattern to match the preceding list of characters until it can't anymore. It can't anymore when it reaches whitespace, a single or double quote, brackets, or any other non-url character. Finally the RegExp flag i informs the pattern to be case insensitive.
reg.exec(str); executes the pattern on the specified string and returns the results as an array. Since the example is only designed to match the first url it encounters and then stop, the array will only have one result. The method reg.exec(str) is interchangable with str.match(reg)
Oh Walmart…
Sunday, December 14th, 2008Not Quite Ella…
Sunday, December 14th, 2008Firefox 3.1 Beta 2
Saturday, December 13th, 2008WebKit Has A Chance At #1
Thursday, December 11th, 2008- Light on system resources
- Fast
- Small and lightweight = portable = mobile devices, specifically Iphone and Android
- Adopted by a wide range of browsers including Google's, Apple's, and Adobe's
- Widely integrated into devices, and software
- Open source

"Color Browser was designed as a way to store my favorite color sets for reference. Kuler and ColourLovers had great ways to manage my favorites too, but keeping them open, or referencing them quickly was a pain, or not possible if I wasn’t online. So I put together a small application to handle a local set of my favorite color palettes.
It’s grown a bit along the way, but the main purpose is still the same. The ability to open, or drag in ASE files was added (since both of the main color sites export those). And I expanded it from the original five color sets to support much larger sets. Color Browser has recently reached 1.0, so feel free to download it and try it out."
via 
