PHP allows several ways to include other PHP files: Include, Include Once, Require, and Require Once. The difference between Include and Require is whether or not to halt script execution. [...]
More →PHP allows several ways to include other PHP files: Include, Include Once, Require, and Require Once. The difference between Include and Require is whether or not to halt script execution. [...]
More →CSS Reset is a common web practice to clear browser quirks and provide a common base for CSS styling. There are several versions of CSS Resets floating around on the [...]
More →As with any software solution, there are usually several ways to do the same thing. Iterating through NSDictionary on iOS certainly has it’s own set of ways. iOs allows you [...]
More →WebDAV is a technology that has been around since the mid 90′s designed to make web documents readable and writable. Similar to FTP and SFTP, WebDAV protocols allow users to [...]
More →Regular expressions can be used on the iOS platform as iOS 4.0 comes with the foundation framework courtesy of the . Pattern syntax currently is specified by ICU.
More →Php has some very useful ways to garner browser information. One of the most basic ways is inquire about user agent with
|
1 |
$_SERVER['HTTP_USER_AGENT'] |
There is another function get_broswer() which holds [...]
More →Python is a great scripting language–very flexible and easy to incorporate the plethora packages readily available online. For a particular proejct, I needed a Python timer that repeated. The standard [...]
More →