Weekend Links – PHP Techniques, Regular Expressions, AJAX PageRank, PHP Downloads, Color Mathematics
PHP Techniques I Use All The Time
Article discussing PHP techniques that can save you time and keep your code fast and effective.
http://www.christianmontoya.com/2007/11/09/php-techniques-i-use-all-the-time/
PHP Regular Expression Tutorial
Regular expressions can be extremely cryptic, even to the best programmer. This article demystifies regular expressions and is PHP-focused.
http://www.phpf1.com/tutorial/php-regular-expression.html
Google PageRank Using AJAX
Looking to grab your PageRank? Use this AJAX script.
http://joeabiraad.com/ajax/google-pagerank-using-ajax/104
Limit File Download Speed with PHP
If your website's main functionality is providing file downloads, you should use this script.
http://www.findmotive.com/2007/11/01/limit-file-download-speed-with-php/
EasyRGB - Color Mathematics and Conversion Formulas
This article provides the mathematics formulas used to convert colors.
http://www.easyrgb.com/math.php
![Send Text Messages with PHP]()
Kids these days, I tell ya. All they care about is the technology. The video games. The bottled water. Oh, and the texting, always the texting. Back in my day, all we had was...OK, I had all of these things too. But I still don't get...
![Write Simple, Elegant and Maintainable Media Queries with Sass]()
I spent a few months experimenting with different approaches for writing simple, elegant and maintainable media queries with Sass. Each solution had something that I really liked, but I couldn't find one that covered everything I needed to do, so I ventured into creating my...
![spellcheck Attribute]()
Many useful attributes have been provided to web developers recently: download, placeholder, autofocus, and more. One helpful older attribute is the spellcheck attribute which allows developers to control an elements ability to be spell checked or subject to grammar checks. Simple enough, right?
![HTML5’s window.postMessage API]()
One of the little known HTML5 APIs is the window.postMessage API. window.postMessage
allows for sending data messages between two windows/frames across domains. Essentially window.postMessage acts as cross-domain AJAX without the server shims. Let's take a look at how window.postMessage
works and how you...