MySQL statement terminators
There is the semicolon “;” that every one knows, and “\g” which is just the same:
mysql > SELECT * FROM wp_links;
mysql > SELECT * FROM wp_links\g
Those are exactly the [...] Continue Reading…
My Blog & Free Tech Support Service
There is the semicolon “;” that every one knows, and “\g” which is just the same:
mysql > SELECT * FROM wp_links;
mysql > SELECT * FROM wp_links\g
Those are exactly the [...] Continue Reading…
A lot of web hosts have limited or nonexistent support for PEAR, the pear command will throw errors on most commands or not work at all, in order to [...] Continue Reading…
Today, whenever I used the built in Firefox search function and as soon as I typed the first letter of my phrase, Firefox suddenly crashed and displayed the well [...] Continue Reading…
How can I detect the current WordPress version?
Log in to your admin Dashboard and scroll to the bottom of the page, you’ll find your version number on the rightmost [...] Continue Reading…
The problem
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 2516315 bytes) in /home/mydomain/public_html/blog/wp-includes/http.php on line 1370
This can happen at any line and with any file, [...] Continue Reading…
After the release of Opera 10.5 Alpha, it’s now be possible to rotate elements, this new release includes support for CSS3 rotation and other transitions and transforms, we may [...] Continue Reading…
Firefox creators made things really user friendly IMO
You can clear Firefox cache by following these three steps:
Press Ctrl+Shift+Del
Choose the time range and tick the part of your history you [...] Continue Reading…
This is a function I wrote to use for creating advanced easing effects without using JQuery, MooTools or other JS libraries.
The function can be called as follows:
tween(element, property, from, [...] Continue Reading…
This can be done with a few clicks from your WordPress blog control panel.
So first login to your control panel, then
under the Settings menu choose Reading,
after the page [...] Continue Reading…
The best you can do with built in JavaScript functions is to round a number to the nearest integer using the method Math.round(x), so to round a float to [...] Continue Reading…