When developing your Ruby on Rails app you may come to find the need to store data for testing during the development process. The rails framework has you covered and it is called “ Seeding ”. You can find your … Continue reading
Displaying the Correct Currency in your .NET MVC 3 Web Application
Gallery
By using the method ToString(“c”) We can insure our user is seeing the correct currency for their location. However, this is only the location of the culture settings that are in effect on your server. For example, if the server … Continue reading
Starting Activities
Gallery
You can fire off an activity in two different ways. startActivityForResult() This way you can have a callback method fire after the activity has been completed. startActivity() This method only starts the activity. You will not be notified when the … Continue reading
IE 8 : Ajax Form Posts w/ Key 13 (enter)
Gallery
Issue : Pressing the “Enter” key (JavaScript key value : 13) was submitting the form but through a post back. The goal is to have the form submitted through ajax and have all of our scripts run on completion. All … Continue reading
Good Tutorials
Aside
More Cool Tools
![]() |
FONT Squirrelhttp://www.fontsquirrel.com/fontface/generator This is a great site to find a plethora of fonts you can use on your website. |
![]() |
Game Saladhttp://www.gamesalad.com |
Return the value from a query string in your URL using JavaScript
Gallery
There have been times where I need to pull data out of a query string in a URL. I have found a great function built in JavaScript that makes it easy to manage. This function has been invaluable in my … Continue reading
Unobtrusive AJAX with JSON Response
Gallery
This example will start off with HTML for a normal form post. The idea here is “Build for non-JavaScript users first then add in the extra JavaScript functionality. The application use for this works well for e-commerce applications. You still … Continue reading
Request & Receive JSON Response the Easy Way : iPhone Development
Gallery
So we all ask “Why in the world would anyone want to ask for an XML response type when there is JSON available?” Parsing XML in the iPhone SDK is a nightmare. Ok, so there could be some third party … Continue reading
Everything you need to know to get your charts to animate in FLEX
Gallery
Read Adobe’s Documentation on Charts for Flex 4.5 Documentation on Charts Chart animation is pretty simple. 1. Set the animation you would like to use through MXML or ActionScript. MXML Example: <mx:SeriesInterpolate id=”rearrangeData” duration=”1000″ minimumElementDuration=”200″ elementOffset=”0″/> 2. The id you … Continue reading

