Posts Tagged ‘Cheatsheet’

CSS Cheatsheet

Wednesday, March 16th, 2011

The folks over at SitePoint put together a comprehensive CSS reference site.

Link: SitePoint

Ultimate Web Development Cheat Sheet Guide

Saturday, February 5th, 2011

So you’re sitting there on Saturday morning, sipping on a nice warm cup of coffee or tea. You smell the freshness of the morning, and whipping up some html, CSS and trying out some new AJAX programming.  You’re stuck on something! You wish you had a quick cheat sheet to get you back on track.  Look no further if you’re a web developer!  This is the Ultimate Web Development Cheat Sheet Guide!

Link: Real Software Development

7 Essential Cheat Sheets To Download

Monday, September 1st, 2008

Ever wanted to master the keyboard shortcuts and get more productive on the web? Here is everything you need – 7 quick cheat sheets for some of the most widely used tools on the web. Download, print and stick them somewhere near your desk.

Link: MakeUseOf

Using Regular Expressions with PHP

Monday, December 31st, 2007

Regular expressions are a powerful tool for examining and modifying text. Regular expressions themselves, with a general pattern notation almost like a mini programming language, allow you to describe and parse text. They enable you to search for patterns within a string, extracting matches flexibly and precisely. However, you should note that because regular expressions are more powerful, they are also slower than the more basic string functions. You should only use regular expressions if you have a particular need.

This tutorial gives a brief overview of basic regular expression syntax and then considers the functions that PHP provides for working with regular expressions.

* The Basics
* Matching Patterns
* Replacing Patterns
* Array Processing

PHP supports two different types of regular expressions: POSIX-extended and Perl-Compatible Regular Expressions (PCRE). The PCRE functions are more powerful than the POSIX ones, and faster too, so we will concentrate on them.

Link: Web Cheat Sheet