Articles
Scrawlr: Crawls your website for SQL Injection
Scrawlr, short for SQL Injector and Crawler will crawl your website and will analyze the parameters of each individual pages for SQL injection vulnerabilities. Very useful tool for small to medium sized websites. Free for the first 1,500 pages.
From HPs website:
Technical details for Scrawlr
Identify Verbose SQL Injection vulnerabilities in URL parameters
Can be configured to use [...]
NuSphere PHPEd Review
NuSphere PHPEd Review
By: Reynold E. Lariza (reynoldlariza.com)
NuSphere PhpED is an Integrated Development Environment (IDE) for PHP, a server-side HTML-embedded scripting language. PhpED provides a flexible, easy-to-use platform for developing web sites using PHP, XML, CSS style sheets, and HTML.
PhpED also provides streamlined functionality for debugging code, publishing projects to remote servers through FTP, [...]
The 7 Habits for Exceptional Performance
The 7 Habits for Exceptional Performance
January 7, 2008
Source
In July 2007 I took over the reins from Steve Souders (my former boss, performance co-hort, and someone I greatly respect) as manager of Yahoo!’s Exceptional Performance team. I was humbled and excited about the opportunity to lead Yahoo!’s now worldwide effort on accelerating the user experience and [...]
Rails Is A Ghetto
http://www.zedshaw.com/rants/rails_is_a_ghetto.html
Excerpt:
I’ll never be afraid of some pilsner fresh fat fuck who eats donut hamburgers and only gets exercise when he plays World of Warcraft on a DDR pad…
This is exactly what makes Rails a ghetto. A bunch of half-trained former PHP morons who never bother to sit down and really learn the computer [...]
40 Tips for optimizing your php Code
Original Content Source:
http://reinholdweber.com/?p=3
If a method can be static, declare it static. Speed improvement is by a factor of 4.
echo is faster than print.
Use echo’s multiple parameters instead of string concatenation.
Set the maxvalue for your for-loops before and not in the loop.
Unset your variables to free memory, especially large arrays.
Avoid magic like __get, __set, __autoload
require_once() is [...]
