3
votes
What is your preferred tool stack for PHP development in the Windows Environment?
For source control in subversion I would only recommend tortoisesvn for small projects. When you start dealing with large repositories, SmartSVN is much faster and easier to use, it integrates with …
2
votes
Underused Features of HTML
Usability-wise it is extremely important to always use <label> if you use input type radio or type checkbox. This lets the user click not just on the radio button or check box, but also on th …
1
vote
What are the benefits of OO programming? Will it help me write better code?
I would say there are two primary benefits:
Encapsulation: code in libraries that shouldn't be called from outside the library can be hidden, preventing misuse, and easing changes to …
1
vote
What framework would you recommend for making desktop-like apps for the web?
Apple is demonstrating that sproutcore does work, although it's hard to estimate how well it works. Currently I build web apps with a home-grown set of libraries, duplicating a set of functionality …
0
votes
The Future of Web Programming Languages
The current trend is towards javascript applications that have offline support, with client-side storage. This is already mostly the model that the google apps use. You can do this today quite easi …
0
votes
Has anyone built web-apps that can run totally off-line?
There's a portable distribution of Apache/MySQL/PHP (to place on USB keys):
http://portableapps.com/apps/development/ …
1
vote
What are some of the major shifts in thinking required to become a good Rich Internet Application (RIA) developer?
There's two models I'm seeing in the market right now:
Blended UI. The server is still involved in the UI construction effort, but a lot of it is offloaded to javascript. This is how …
3
votes
The future of web-development (RIA vs. traditional HTML)
The trend in web development is to move more towards the client. This has several consequences:
As the codebase grows on the client, a framework is going to become indispensable. You' …
4
votes
Is client-side UI rendering via Javascript a good idea?
I'm on the tail end of building just this sort of app. It's an ExtJS GUI on top of Zend Framework JSON-RPC web services, implementing an iGoogle-like gadget portal.
Advantages:
…
2
votes
Functional javascript and web browser javascript versions
http://en.wikipedia.org/wiki/JavaScript#Versions
I think the biggest issue is that these changes are unofficial …
0
votes
How to find which section of a website is not compatible with new browsers?
Install firebug in firefox.
Load the site in firefox, fix any errors you're getting on firebug's console. Especially event handling is done completely different in IE compared to oth …
1
vote
Why developers hate iframes?
One reason they're rejected is because they're inherently slow. By the time the iframe begins loading its host page is already in an advanced stage of the loading pipeline. Iframes and snappy brows …
1
vote
Strategy for supporting unicode & multi language in PHP5
For translations, you can either use a framework, or just roll your own library. You can store translations in csv files and use PHP's fgetcsv() to parse it. CSV files can be edited with any spread …
1
vote
Non-Windows RAD Web development
I build web apps with:
PHP
Zend Framework
ExtJS toolkit
Aptana IDE
Disadvantages are the typical ones: lack of integration between the tools, …
1
vote
sprites vs image slicing
One often overlooked downside of using CSS sprites is memory footprint:
http://blog.vlad1.com/2009/06/2 …
