Best Firefox extension for Web Programmers

FireBug is an extension for the Firefox web-browser. It is amazing for debugging XML, XHMTL, CSS, JS and just to generally inspect your code. Don’t take it too seriously though as IE bug-fixes and workarounds always generate errors. Get FireBug for Firefox.

XML vs. JSON

XML – Looks like this: <user> <name>tom</name> <last_name>jackson</last_name> <email>t.jackson@jackson.com</email> </user> vs. JSON – Looks like this: user{name:tom,last_name:jackson,email:t.jackson@jackson.com} JSON reminds me of how a lighttpd configuration file is able to hold script in it. Meaning the file that hold information, holds simple code so you have less info to process. JSON can send arrays. So instead… Continue reading XML vs. JSON

Dynamic to Static URL. Making URLs SEF to improve SEO.

SEF – Search Engine Friendly SEO – Search Engine Optimization Search engines create their databases from running programs that search the web and scan each web-page, and sometimes, they cache the web-page (Cache ‚Äî meaning they download a copy of it). They sort these pages out, assumingly, by URL (that http://www.whatever.com string in the Address… Continue reading Dynamic to Static URL. Making URLs SEF to improve SEO.