Colonel Sponsz

708
Reputation
100 views

Registered User

name Colonel Sponsz
member for 1 year
seen 21 hours ago
website
location UK
age

Colonel Sponsz is a fictional character from The Adventures of Tintin series of classic comic books written and drawn by Hergé. He is a veteran spymaster and an enemy of the main protagonists.

The monocle-wearing Sponsz is a native of the nation of Borduria, where he became the Chief of Police of the capital Szohôd, and the head of the Secret Police or ZEP, which operates on behalf of the country's dictator Marshal Kurvi-Tasch. He is a calculating and ruthless figure, and bears strong grudges against those who upset his political machinations.

Nov
27
comment Speed difference in using inline strings vs concatenation in php5?
I've just done some quick testing and there's not much of a saving between these two - certainly nowhere near as much as changing interpolation to concatenation - but single quotes are faster.
Nov
18
answered Cleaner way to translate index into specified string?
Nov
17
comment This is Admin Login code in PHP, when i run the code, it does not load the Page that I want.
Concatenating unescaped $_POST variables into a MySQL query string is huge security issue - xkcd.com/327. At a minimum consider using PDO and prepared statements: uk.php.net/manual/en/…
Nov
10
comment Book recommendation for Unix shell commands
+1 This is the most used reference book in our office, it's covered with page tags and annotations.
Oct
29
comment What are your experiences selling on the Android Market?
Screen shots are now available in the App Store with the 1.6 OS release.
Oct
22
comment What are some good css and js minimizers for production code?
The client side overhead of unpacking packed JS tends to outweigh the speed gains of downloading a minified file. With gzip compression the full source can even be faster than packed: ericmmartin.com/comparison-of-javascript-compress…
Sep
17
awarded  Yearling
Aug
6
comment Loading gravatar using jquery
Cheers, this just saved me a load of Googling. Using it to preview the Gravatar on a sign up form.
Jul
31
revised Submitting a Form using PHP and AJAX via jQuery
edited tags
Jul
27
awarded  Nice Answer
Jul
27
revised Common programming mistakes for JavaScript developers to avoid?
added 244 characters in body; deleted 6 characters in body
Jul
27
comment Common programming mistakes for JavaScript developers to avoid?
@George IV - Hence my italics round /core/. It might be a poor user experience with JS disabled but you should at least be able to perform the important operations without it. And if you can't it should tell you rather than just leaving mouse clicks that do nothing.
Jul
27
answered Common programming mistakes for JavaScript developers to avoid?
Jul
27
comment Common programming mistakes for PHP developers to avoid?
Or adding the $ when in $this context, i.e. $this->$var rather than $this->var
Jul
27
comment Google app engine tutorial problem - new datastore model
The Python style guide strongly recommends using spaces instead of tabs: python.org/dev/peps/pep-0008
Jul
25
answered PHP Frameworks - Layout Dynamic Menu
Jul
13
comment Include Scripts library into Symfony application
+1 The autoload extension is the way to do it whilst staying within Symfony.
Jul
1
comment What do you do to your JavaScript code before deployment?
+1 for some hard performance data.