Available iPhone Web Application JavaScript UI Library/Frameworks

Old question, but still relevant. Sencha (the new name of the company behind ExtJs) just released the mobile app platform Sencha Tounch for iPhone, iPod, iPad and Android: http://www.sencha.com/products/touch/ Blog post that explains the difference between jQTouch and Sencha Touch: http://9-bits.com/post/723711597/jqtouch-and-sencha-touch Update: John Resig recently announced that the jQuery team is working on a mobile … Read more

Where do I put image files, css, js, etc. in Codeigniter?

I have a setup like this: application system assets js imgs css I then have a helper function that simply returns the full path to this depending on my setup, something similar to: application/helpers/utility_helper.php: function asset_url(){ return base_url().’assets/’; } I will usually keep common routines similar to this in the same file and autoload it … Read more

What exactly is Spring Framework for? [closed]

Basically Spring is a framework for dependency-injection which is a pattern that allows building very decoupled systems. The problem For example, suppose you need to list the users of the system and thus declare an interface called UserLister: public interface UserLister { List<User> getUsers(); } And maybe an implementation accessing a database to get all … Read more