Browsing the archives for the Resources tag

Zend Certified Engineer (ZCE) Study Guide Links

No Comments
PHP Tutorials, Uncategorized

Since I will be taking the ZCE exam in four days, I figured I’d post a study guide for the world while doing last minute studying. Enjoy! PHP Basics

Syntax | WikiPedia Operators | W3Schools Variables | Further Reading Constants | Official Reading Control Structures | Official Reading Language Constructs and Functions | Further Reading

Object Oriented Programming

Instantiation – $classInstance = New classname; [...]

Free VST Plugins for FL Studio

No Comments
FL Studio Tutorials

Here is a bunch of links to free VST plugins (instruments and effects) for expanding your FL Studio environment (or any other DAW application for that matter).

CSS Drop Shadows using text-shadow

No Comments
CSS Tutorials

The latest version of CSS allows you to add shadows to your text using the “text-shadow” property. Here’s an example of what the output looks like in your browser: I have a drop shadow of 0px X distance, 2px Y distance, 3px blur value, and a black color. The text-shadow property takes four values, being the color code, [...]

Free MySQL database of all countries

No Comments
MySQL Tutorials

This is a database dump of all countries, along with their 2 digit country code. There are 246 countries total, sorted alphabetically. The database dump has three columns, the first is a primary numeric key set to autoincrement. The second is the two character abbreviation of the country. The third column is the name of [...]

Short URL generator / Referrer hider

No Comments
Uncategorized

There are dozens of sites out there which offer the service of generating shorter links using their domains as a middle man which then redirect to a different domain. Unfortunately, none of them allow you to generate links programmatically. Or, if you can find a site with enough holes to allow you to do so, [...]

Free Icons

No Comments
Uncategorized

This post will link you to several websites where you can download free icons. These icons can be easily integrated into any project or application you are developing, whether it be a web application which you would like to redistribute or just setting them as icons for your desktop. All of the icons we’ll be linking [...]

Free Notepad++ Web Developers Theme

4 Comments
Uncategorized

This is a custom developed Notepad++ theme that we use in house at Renowned Media. This is mostly used for web development languages, so the other languages will have been forsaken. For anyone who doesn’t know, Notepad++ is a syntax highlighted text editor, comparable in functionality to the larger web development IDE’s minus all of [...]

RenownedMint Wordpress Theme

12 Comments
Uncategorized

RenownedMint is our first free WordPress theme, and marks an era of Renowned Media releasing more free content. Click here to download RenownedMint from Renowned Media or download RenownedMint from wordpress.org. RenownedMint is an attractive, minty Web 2.0 theme for your WordPress blog, based on the same color scheme used by our popular product RenownedStats. This theme [...]

PHP Class for creating CSS Graphs

No Comments
PHP Tutorials

We’ve developed a PHP Class for drawing a CSS graph. The CSS and XHTML code for this class was originally developed by Meyerweb, we just took it and wrapped a PHP class around it. This class is also hosted over at phpclasses.org if you prefer to get your stuff on that site, but keep in [...]

PHP Bargraph Generator

No Comments
PHP Tutorials

This script is loaded using an image tag and generates data based on information added as GET parameters. For example: <img src=”bar.php?value=100&max=256&info” /> Generates:

This script requires at least four files to use. The first is an HTML file which loads the image (of course), the second is the background “bar.png” image which the graph is built on, the [...]