Note to self:
Always use unicode modifier (/u) in preg_* functions, e.g.
preg_match(“/php/u”, “PHP is the web scripting language of choice.”)
Note to self:
Always use unicode modifier (/u) in preg_* functions, e.g.
preg_match(“/php/u”, “PHP is the web scripting language of choice.”)
When creating sprites containing many images, it can be hard and time-consuming to find the position images in the sprite. To simplify this process, create a Photoshop file with a grid of horizontal and vertical guides spaced X pixels apart from each other and turn Snap To Grid on.
Here’s a grid you can use …
Coming whenever I have time (which is not often).
Using a sprite image to consolidate all images into one file decreases download time because it reduces the number of HTTP requests required. However, sprites are used as background images and browsers don’t print background images (unless you manually tell them to do so). One workaround is to use jQuery to convert all background images into regular <img> tags. Here’s an article that explains how to do it:
When writing CSS styles, the following rules make for easy code management and more efficient processing.
#id
Only reference one ID name in a style.
Good: #breadcrumbs { … }
Bad: #content #breadcrumbs { … }
tag.class
When reference classes, prefix them with the tag they are applied to.
Good: ul.features { … }
Bad: .features { … }
tag
If a style can be applied to the tag without a separate class or ID, then just style the tag. e.g. a { … }
Other good practices are to
If you have an online retail store, you probably have many product pictures. You can hire a professional photographer to take and clean up photos, at an expensive cost, or you can do it cheaply. Here’s what I do that’s pretty cheap:
To align any object in Photoshop relative to a bounding selection, do the following:
This will leave you with perfectly aligned objects.
[cc lang=”php”]
[/cc]
[cc lang=”php”]
echo “ab”;
echo “c”;
[/cc]
[cc lang=”php”]
<?php
echo <<<eol // <- We use the heredoc operator. Notice 3 times '<'
EOL; // End the heredoc block. Has to be the first characters on the line, so don’t indent it.
?>
[/cc]
Seeing clean, structured code is always nice. Here are some tips to automate cleaning up messy code.
1. Use HTML Tidy to clean up code
There are some online code cleaners based on Tidy that can do this for you like at http://infohound.net/tidy/
2. Dreamweaver “Apply Source Formatting”
Dreamweaver can format your source code based on a format profile. Find it under Commands -> Apply Source Formatting. This will also trim unnecessary whitespace and the beginning and end of lines.
3. Trim unnecessary whitespace at beginning of line
REGEX: ^s+
REPLACE: empty string
4. Trim unnecessary whitespace at end of line
REGEX: ^s$
REPLACE: empty string
5. Convert spaces to tabs
In Dreamweaver, select / highlight all the code, right click, select “Convert spaces to tabs”
6. Delete empty lines
REGEX: [rn]{2,}
REPLACE: n
When writing functions in Javascript that you only need to run as soon as it’s created and not have to reference again, you can create a self-executing anonymous function using the syntax:
[cc lang=”javascript”](function(){
// your code goes here
})();[/cc]
In jQuery, you can have your anonymous function called after the document is ready as in
[cc lang=”javascript”]
$(document).ready(function() {
(function(){
//your code for the module
})();
});[/cc]
If you’re not using jQuery and want your anonymous function to be called after the page loads (as opposed to immediately before the page finishes loading), you can do
[cc lang=”javascript”](function(){
// your code goes here
// add event listener to trigger function call on page load
if (window.attachEvent) {
window.attachEvent(‘onload’, addHiddenFields);
} else {
window.addEventListener(“load”, addHiddenFields, false);
}
})();[/cc]
Another benefit is it doesn’t pollute the global namespace by not overriding other functions. To learn more, visit http://briancrescimanno.com/2009/09/24/how-self-executing-anonymous-functions-work/ and http://stackoverflow.com/questions/8248974/executing-jquery-functions-on-dom-ready-from-inside-a-module
If you’re tired of searching through lines and lines of boring, unformatted text to edit you Apache httpd.conf file and wish there were a more user-friendly interface, you’re in luck. Check this out …