Browsing the archives for the Resources tag
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; [...]
http://renownedmedia.com/blog/zend-certified-engineer-zce-study-guide-links/
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).
http://renownedmedia.com/blog/free-vst-plugins-for-fl-studio/
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, [...]
http://renownedmedia.com/blog/css-drop-shadows-using-text-shadow/
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 [...]
http://renownedmedia.com/blog/free-mysql-database-of-all-countries/
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, [...]
http://renownedmedia.com/blog/short-url-generator-referrer-hider/
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 [...]
http://renownedmedia.com/blog/free-icons/
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 [...]
http://renownedmedia.com/blog/free-notepad-web-developers-theme/
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 [...]
http://renownedmedia.com/blog/renownedmint-wordpress-theme/
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 [...]
http://renownedmedia.com/blog/php-class-for-creating-css-graphs/
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 [...]
http://renownedmedia.com/blog/php-bargraph-generator/