Flex Regular Expression Online Testing / Learning Tool When it comes to Regular Expressions, I start feeling giddy. Even after using them a lot on many projects, I never remember the qualifiers and syntax. It’s always RTFM for me when I need to use some regular expressions in my code. And that happened again today. I looked around the manual and searched online […]
Coding Clean and Semantic Templates If you are the guy who uses<div> tag for everything, this post is for you. It focuses on how you can write clean HTML code by using semantic markups and minimize the use of <div> tag. Have you ever edited someone’s templates, don’t those messy tags drive you crazy? Not only writing clean templates can […]
Scrolling with mouse wheel in Flex application – even on Mac By default Flex components do not scroll as you scroll using the wheel on your mouse. You can achieve this by writing a mouseWheel event handler, checked the delta value and scrolling up or down depending on whether it’s positive or negative. But that does not work on Mac OS X. The solution involves tracking […]
Mobile AJAX It’s hot these days! Mobile AJAX! W3C/OpenAjax Workshop on Mobile Ajax happened yesterday, and there is some interesting reading in the papers. If you are new to Mobile AJAX, dev.mobi’s got a very well written introductory article.
CSS Optimizer Ashok S, our designer sent this: If you want to optimize your CSS code, checkout the CSS Optimizer on flumpcakes. It is an online tool which helps you delete unwanted css code. From their about page, the tool essentially does the following: Removes comments Removes white space (such as excess spaces) Converts RGB values to […]