<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>PelFusion &#187; development</title>
	<atom:link href="http://pelfusion.com/tag/development/feed/" rel="self" type="application/rss+xml" />
	<link>http://pelfusion.com</link>
	<description>pixels that make your life easy</description>
	<lastBuildDate>Sun, 20 May 2012 20:51:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Building in Flash on the YouTube API with ActionScript 3.0</title>
		<link>http://pelfusion.com/tutorials/building-in-flash-on-the-youtube-api-with-actionscript-3-0/</link>
		<comments>http://pelfusion.com/tutorials/building-in-flash-on-the-youtube-api-with-actionscript-3-0/#comments</comments>
		<pubDate>Fri, 07 Jan 2011 13:14:14 +0000</pubDate>
		<dc:creator>Jake Rocheleau</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[actionscript 3]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[Flash Tutorials]]></category>

		<guid isPermaLink="false">http://pelfusion.com/?p=11470</guid>
		<description><![CDATA[<p><a href="http://pelfusion.com/tutorials/building-in-flash-on-the-youtube-api-with-actionscript-3-0/">Building in Flash on the YouTube API with ActionScript 3.0</a> is a post from <a href="http://pelfusion.com">PelFusion</a></p><p>ActionScript is a very powerful programming language used in numerous Adobe Flash and Flex applications. It provides an object-oriented class level environment with many advantages to the average developer. In this example we&#8217;ll be constructing a video wall pulling the top videos from YouTube&#8217;s Tech feed. We will mostly be covering basic ActionScript techniques, thus [...]</p>
<strong>Related Posts:</strong><ol>
<li><a href='http://pelfusion.com/reviews/ucoz-offers-free-website-building-and-unlimited-web-hosting/' rel='bookmark' title='uCoz Offers Free Website Building And Unlimited Web Hosting'>uCoz Offers Free Website Building And Unlimited Web Hosting</a> <small>Developing and maintaining a website for a new business or...</small></li>
<li><a href='http://pelfusion.com/tutorials/the-most-useful-flash-tutorial-resources/' rel='bookmark' title='The Most Useful Flash Tutorial Resources'>The Most Useful Flash Tutorial Resources</a> <small>Flash is the first option to consider, when it comes...</small></li>
<li><a href='http://pelfusion.com/tutorials/35-flash-game-development-tutorials-fla-files/' rel='bookmark' title='35+ Flash Game Development Tutorials &amp; FLA Files'>35+ Flash Game Development Tutorials &#038; FLA Files</a> <small>I always wanted to learn game development in Flash but...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://pelfusion.com/tutorials/building-in-flash-on-the-youtube-api-with-actionscript-3-0/">Building in Flash on the YouTube API with ActionScript 3.0</a> is a post from <a href="http://pelfusion.com">PelFusion</a></p><p><a href="http://pelfusion.com/tutorials/actionscript-and-php-development-tutorials/">ActionScript</a> is a very powerful programming language used in numerous Adobe <a href="http://pelfusion.com/tutorials/9-premium-flash-game-development-tutorials-with-source-code/">Flash and Flex applications</a>. It provides an object-oriented class level environment with many advantages to the average developer. In this example we&#8217;ll be constructing a video wall pulling the top videos from YouTube&#8217;s Tech feed.</p>
<p><a rel="nofollow" href="http://www.flickr.com/photos/adamjackson/2929780241/in/photostream/"><img  alt="Actionscript Programming" src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/01/adobe-flashcs4.jpg" /></a></p>
<p>We will mostly be covering basic ActionScript techniques, thus it is not required to be an exceptional whiz at programming. For this tutorial I&#8217;ll be using Adobe Flash CS3 with ActionScript 3.0 as the default language.</p>
<h2 class=underLineTitle>Building our .FLA File</h2>
<p>Each flash project you create should be saved to disk as .fla inside a root directory. I&#8217;ve created a new document 630&#215;575 and saved as <strong>YouTube.fla</strong>.</p>
<p>Getting familiar with the Flash interface may take a little bit of time. Most of the work we&#8217;ll be doing is integrated in the lowermost panels. More specifically we&#8217;ll be dealing with properties and actions.</p>
<p><strong>Properties</strong> will allow you to update the current document width/height and other advanced settings. <strong>Actions</strong> is where all the real fun happens and where our code is stored. Each layer as a series of keyframes which store ActionScript to manipulate transitions and effects.</p>
<p><img  alt="Actionscript Programming"  src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/01/document-properties.jpg" /></p>
<p>You&#8217;ll notice a layers panel towards the top above the project stage. The first layer should be named &#8220;Layer1&#8243;. Change that to Actions and tick the small lock symbol off to the right side. This sets a single layer in our file dedicated to ActionScript code, which means we don&#8217;t need to go searching around for anything. Locking just ensures we don&#8217;t accidently place elements in that layer.</p>
<h2 class=underLineTitle>Designing Page Views</h2>
<p>The next step is to create our physical layout. I&#8217;ve created a new layer titled &#8220;views&#8221; which is going to house <strong>6 MovieClips</strong>. These will actually become placeholders for the dynamic thumbnail shot YouTube generates with each video.</p>
<p>To create these check <em>insert->new symbol</em> or simply tap F8. Here a new menu comes up asking what type of symbol you are creating. Movie Clip is perfect set along 120px width and 90px height. Once the symbol is made alter the clip&#8217;s instance name to &#8220;ytThumb&#8221; + 0-5 for each clip. So for example the first would be labeled <strong>ytThum0</strong>, the next <strong>ytThumb1</strong> and so forth.</p>
<p><img  alt="Actionscript Programming"  src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/01/youtube-api-project-home.jpg" /></p>
<p>Now we can move back into our actions panel to start really developing. If you are having trouble with creating each movie clip don&#8217;t fret. They are not truly necessary at this point, but it does save time to create each instance beforehand.</p>
<h2 class=underLineTitle>Beginning the ActionScript Code</h2>
<p>Click back on the first keyframe in the Actions layer. From here check the bottom panel and move from properties into actions. The panel will expand much higher and include a text box – this is where our code will go.</p>
<p>To start off we will define a few variables to hold namespace references. These ensure that when pulling data from Google and YouTube&#8217;s servers we can interpret the return properly.  Also we include a <code>Security.allowDomain</code> call to let Flash know we can trust data downloaded through YouTube.</p>
<pre class="brush: as3; title: ; notranslate">
Security.allowDomain(&amp;amp;quot;youtube.com&amp;amp;quot;,&amp;amp;quot;http://youtube.com&amp;amp;quot;,&amp;amp;quot;www.youtube.com&amp;amp;quot;);
var atom:Namespace = new Namespace(&amp;amp;quot;http://www.w3.org/2005/Atom&amp;amp;quot;);
var gd:Namespace = new Namespace(&amp;amp;quot;http://schemas.google.com/g/2005&amp;amp;quot;);
var yt:Namespace = new Namespace(&amp;amp;quot;http://gdata.youtube.com/schemas/2007&amp;amp;quot;);

default xml namespace = atom; // very important!!

var vidCount:int = 6;
var dataArray:Array = new Array();
</pre>
<p>As an example above we have 3 new namespaces defined as <strong>atom</strong>, <strong>gt</strong>, and <strong>yt</strong>. These correspond with atom RSS feeds and two primary namespaces relating to the YouTube API. By the last line we are setting the default namespace for all XML code to atom.</p>
<p>Without these lines ActionScript will try parsing the return XML from YouTube&#8217;s API as plain XML instead of an atom feed. This results in bugs and errors flying around, so it&#8217;s much easier to clear this up first.</p>
<p>We are also creating two simple variables towards the very end. <strong>vidCount</strong> is used to define how many videos we will pull from each feed. <strong>dataArray</strong> is currently set to an empty array. A future function will pull this data and feed instances of videos into an array list.</p>
<pre class="brush: as3; title: ; notranslate">var xmlUrlReq:String = &amp;amp;quot;http://gdata.youtube.com/feeds/api/videos/-/Tech/&amp;amp;quot;;
var xmlLoader:URLLoader = new URLLoader();
var xmlData:XML = new XML();

// loader event listener
xmlLoader.addEventListener(Event.COMPLETE, LoadXml);
xmlLoader.load(new URLRequest(xmlUrlReq));
</pre>
<p>We now have the defining principles for connecting to an XML page. The XML url we are using is defined outright which contains the standard API call. It is malleable in that you can change <em>Tech</em> to any variable returning video results.</p>
<p>For example <strong><em>http://gdata.youtube.com/feeds/api/videos/-/Gaming/</em></strong> is a possibility for all gaming-related videos. Our <code>xmlLoader</code> will store the functions needed to load this API URL and <code>xmlData</code> is used to store the returning XML code.</p>
<p><a rel="nofollow" href="http://www.flickr.com/photos/saltmarch/4941484794/"><img  alt="Actionscript Programming"  src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/01/adobe-flash-platform.jpg" /></a></p>
<p>After variables are set we need to call our event listener which checks to see when the API has finished loading. At this point we call a new function <code>LoadXml()</code> which is defined next.</p>
<h2 class=underLineTitle>Event Handler Calls</h2>
<p>Once the loader <code>eventListener</code> has cleared our LoadXml function is called. This will parse all of the data we need out of the YouTube API response and store simple variables for access later. Below is the entire function code.</p>
<pre class="brush: as3; title: ; notranslate">function LoadXml(e:Event):void {
	xmlData = XML(e.target.data);
	var media:Namespace = xmlData.namespace(&amp;amp;quot;media&amp;amp;quot;);
	var gd1:Namespace = xmlData.namespace(&amp;amp;quot;gd&amp;amp;quot;);
	var elms:XMLList = xmlData.entry;

	for(var i:int = 0; i &amp;amp;lt; vidCount; i++) {
		dataArray.push({});
		dataArray[i][&amp;amp;quot;title&amp;amp;quot;] = elms[i].title;
		dataArray[i][&amp;amp;quot;coreThumb&amp;amp;quot;] = elms[i].media::group.media::thumbnail[0].@url;
		dataArray[i][&amp;amp;quot;vidURL&amp;amp;quot;] = elms[i].media::group.media::player.@url;
		dataArray[i][&amp;amp;quot;duration&amp;amp;quot;] = elms[i].media::group.yt::duration.@seconds;
		dataArray[i][&amp;amp;quot;viewCount&amp;amp;quot;] = elms[i].yt::statistics.@viewCount;
		dataArray[i][&amp;amp;quot;commentCount&amp;amp;quot;] = elms[i].gd::comments.gd::feedLink.@countHint;
		dataArray[i][&amp;amp;quot;favoriteCount&amp;amp;quot;] = elms[i].yt::statistics.@favoriteCount;

		loadThumbs(dataArray[i][&amp;amp;quot;coreThumb&amp;amp;quot;], i);
		loadText(i, dataArray);
	}
}
</pre>
<p>You can see an initial for loop which pulls out elements from each XML file and stores them into an array. This is referenced with each variable call underneath <code>dataArray.push({})</code>.</p>
<p>Setting <code>dataArray[i]</code> would create 6 individual arrays valued dataArray[0-5]. Within each of these we have sub-arrays containing video information.</p>
<p>This includes the core thumbnail, video URL, duration, number of comments, etc. This function is used to pump through all 6 videos inside a loop and extract bits of data from the response. With this data we then create a new array to house all the values we need and pass these into two more functions to display our finished product.</p>
<p><strong>loadThumbs</strong> is the first call which requires two parameters. The first param URL is looking for the external jpg thumbnail file while the second holds the index for which video ID we&#8217;re on (valued 0-5).</p>
<pre class="brush: as3; title: ; notranslate">function loadThumbs(url:String, index:int):void {
	var imgURLRequest:URLRequest = new URLRequest(url);
	var myImgLoader:Loader = new Loader();
	myImgLoader.load(imgURLRequest);

	myImgLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, thumbLoaded);

	function thumbLoaded(e:Event):void {
		var myBitmapData:BitmapData = new BitmapData(myImgLoader.width, myImgLoader.height);
		myBitmapData.draw(myImgLoader);

		var myBitmap:Bitmap = new Bitmap();
		myBitmap.bitmapData = myBitmapData;
		switch(index) {
			case 0:
				ytThumb0.addChild(myBitmap);
				break;
			case 1:
				ytThumb1.addChild(myBitmap);
				break;
			case 2:
				ytThumb2.addChild(myBitmap);
				break;
			case 3:
				ytThumb3.addChild(myBitmap);
				break;
			case 4:
				ytThumb4.addChild(myBitmap);
				break;
			case 5:
				ytThumb5.addChild(myBitmap);
				break;
		}
	}
}
</pre>
<p>We are pulling in another URL Loader to download each video thumbnail. From here we are actually creating a brand new bitmap file inside of Flash to re-create each image.</p>
<p>The benefit here is we can cache each image and store the contents for another query. This would be useful if you were offering access to multiple YouTube feeds and didn&#8217;t want to call a new request every time a new visitor came to the page.</p>
<p>We have another event listener which calls <strong>thumbLoaded</strong> once the image is finished. Then we create a new bitmap image variable named myBitmap and store the thumbnail data inside. Afterwards there&#8217;s a small switch clause breaking down 0-5 for each video ID. The code inside simply targets each Movie Clip and appends <code>addChild()</code> holding each thumbnail image.</p>
<h2 class=underLineTitle>Loading Video Text Data</h2>
<p>The last step required is pulling video data from our array and adding this onto our stage. For this we&#8217;ve written a function <strong>loadText</strong> which takes the current video ID and also the matching data array.</p>
<pre class="brush: as3; title: ; notranslate">function loadText(id:int, vidDataArray:Array):void {
	var myFormat:TextFormat = new TextFormat();
	myFormat.size = 13;
	myFormat.font = &amp;amp;quot;Arial&amp;amp;quot;;
	myFormat.color = 0x0066FF;
	myFormat.underline = true;	

	var myDescFormat:TextFormat = new TextFormat();
	myDescFormat.size = 11;
	myDescFormat.bold = true;

	var mytext = this['ytTitle'+id];
	var mydesc = this['ytDesc'+id];

	var vidTitle:String = vidDataArray[id][&amp;amp;quot;title&amp;amp;quot;];
	var vidUrl:String = vidDataArray[id][&amp;amp;quot;vidURL&amp;amp;quot;];
	var vidDur:int = vidDataArray[id][&amp;amp;quot;duration&amp;amp;quot;]; // duration in seconds
	var vidDurMin:String = Math.floor(vidDur/60) + &amp;amp;quot;:&amp;amp;quot; + vidDur%60; //duration in minutes
	var vidViews:String = splitNumber(vidDataArray[id][&amp;amp;quot;viewCount&amp;amp;quot;]);
	var vidComms:int = vidDataArray[id][&amp;amp;quot;commentCount&amp;amp;quot;];
	var vidFav:int = vidDataArray[id][&amp;amp;quot;favoriteCount&amp;amp;quot;];

	mytext.wordWrap = true;
	mytext.defaultTextFormat = myFormat;

	mydesc.defaultTextFormat = myDescFormat;
	mydesc.textColor = 0x333333;
	mydesc.text = &amp;amp;quot;Time: &amp;amp;quot; + vidDurMin + &amp;amp;quot;\r&amp;amp;quot;;
	mydesc.text += &amp;amp;quot;Views: &amp;amp;quot; + vidViews + &amp;amp;quot;\r&amp;amp;quot;;
	mydesc.text += &amp;amp;quot;Comments: &amp;amp;quot; + vidComms + &amp;amp;quot;\r&amp;amp;quot;;
	mydesc.text += &amp;amp;quot;Favorites: &amp;amp;quot; + vidFav + &amp;amp;quot;\r&amp;amp;quot;;

	var htmlstring:String = '&amp;amp;amp;lt;a href=&amp;amp;quot;' + vidUrl + '&amp;amp;quot; target=&amp;amp;quot;_blank&amp;amp;quot;&amp;amp;gt;' + vidTitle + '&amp;amp;amp;lt;/a&amp;amp;gt;';
	mytext.htmlText = htmlstring;

}
</pre>
<p>The beginning lines use a variable myFormat to create a new text formatting. This is a dynamic way to create text input data and import the settings into a project without physically adding any onto the stage. There is no real benefit of this way other than saving file space. However it is good practice to introduce yourself to both methods and choose whichever works best!</p>
<p><img  alt="Actionscript Programming"  src="http://cdn.pelfusion.com/media/wp-content/uploads/2011/01/project-export-test.jpg" /></p>
<p>We are creating new variables to hold the video data. More specifically we will be accessing the video&#8217;s title, URL, duration (and convert this from seconds to minutes), total views, total comments, and total favorites.</p>
<p>Using <strong>myText</strong> as a new text area we can append these elements with <code>htmlText</code>. From this each video ID will loop through the XML event handler and add all the images and text onto stage.</p>
<p>With this should complete our code! You can test your movie from <em>control->test movie</em> or ctrl+enter on Windows. If you&#8217;d like to reference my project code you can download the archive here. Included are both the .fla file and the .swf finished movie product.</p>
<p>This has been an introduction into developing over YouTube&#8217;s API. The project was created for the purpose of writing in many different structures and testing different programming styles. ActionScript is very robust and provides an excellent platform for API data manipulation.</p>
<a class="learnmore" href="http://media.pelfusion.com/code/actionscript-youtube-api.zip"><span> Download Source </span></a>
<div style="clear:both;"></div>
<p><strong>Related Posts:</strong></p><ol>
<li><a href='http://pelfusion.com/reviews/ucoz-offers-free-website-building-and-unlimited-web-hosting/' rel='bookmark' title='uCoz Offers Free Website Building And Unlimited Web Hosting'>uCoz Offers Free Website Building And Unlimited Web Hosting</a> <small>Developing and maintaining a website for a new business or...</small></li>
<li><a href='http://pelfusion.com/tutorials/the-most-useful-flash-tutorial-resources/' rel='bookmark' title='The Most Useful Flash Tutorial Resources'>The Most Useful Flash Tutorial Resources</a> <small>Flash is the first option to consider, when it comes...</small></li>
<li><a href='http://pelfusion.com/tutorials/35-flash-game-development-tutorials-fla-files/' rel='bookmark' title='35+ Flash Game Development Tutorials &amp; FLA Files'>35+ Flash Game Development Tutorials &#038; FLA Files</a> <small>I always wanted to learn game development in Flash but...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://pelfusion.com/tutorials/building-in-flash-on-the-youtube-api-with-actionscript-3-0/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To Develop CSS3 Border Radius Tool</title>
		<link>http://pelfusion.com/know-how/how-to-develop-css3-border-radius-tool/</link>
		<comments>http://pelfusion.com/know-how/how-to-develop-css3-border-radius-tool/#comments</comments>
		<pubDate>Mon, 02 Aug 2010 19:15:27 +0000</pubDate>
		<dc:creator>Zeeshan Rasool</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[How-To]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[css3]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Tools]]></category>

		<guid isPermaLink="false">http://pelfusion.com/?p=9067</guid>
		<description><![CDATA[<p><a href="http://pelfusion.com/know-how/how-to-develop-css3-border-radius-tool/">How To Develop CSS3 Border Radius Tool</a> is a post from <a href="http://pelfusion.com">PelFusion</a></p><p>CSS3 is rocking the web design and web development life. You can get amazing and awesome effects and style using it. CSS3 selectors provides you a variety of functions and features. Here on Pelfusion I&#8217;ve created a simple tool which will be used to make an element corners rounded. In this simple tool just pass [...]</p>
<strong>Related Posts:</strong><ol>
<li><a href='http://pelfusion.com/tools/7-useful-css3-code-generators/' rel='bookmark' title='7 Useful CSS3 Code Generators'>7 Useful CSS3 Code Generators</a> <small>To write CSS manually is not tough, if you know...</small></li>
<li><a href='http://pelfusion.com/coding/everything-you-need-to-know-about-css3-color-techniques/' rel='bookmark' title='Everything You Need to Know about CSS3 Color Techniques'>Everything You Need to Know about CSS3 Color Techniques</a> <small>CSS3 is revolutionizing Web by introducing a number of totally...</small></li>
<li><a href='http://pelfusion.com/know-how/20-tutorials-to-develop-wordpress-plugin/' rel='bookmark' title='20 Tutorials to Develop WordPress Plugin'>20 Tutorials to Develop WordPress Plugin</a> <small>WordPress has become more important application for bloggers and even...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://pelfusion.com/know-how/how-to-develop-css3-border-radius-tool/">How To Develop CSS3 Border Radius Tool</a> is a post from <a href="http://pelfusion.com">PelFusion</a></p><p><a href="http://pelfusion.com/design/newest-design-trends-with-popular-css3-techniques/">CSS3 is rocking the web design</a> and web development life. You can get amazing and awesome effects and style using it. CSS3 selectors provides you a variety of functions and features. Here on Pelfusion I&#8217;ve created a simple tool which will be used to make an element corners rounded. In this simple tool just pass your value and <a href="http://pelfusion.com/tools/7-useful-css3-code-generators/">CSS3 code will be generated</a>. This is done using jQuery and CSS3. I have used border property of CSS3 to get this simple effect. To develop this tool you will need only two files, one PHP file and other JS file, CSS code is added internally in PHP file. You can download source code by clicking download link at the bottom of post.</p>
<p>You may also be interested in:</p>
<p><a href="http://pelfusion.com/design/newest-design-trends-with-popular-css3-techniques/">Newest Design Trends with Popular CSS3 Techniques</a><br />
<a href="http://pelfusion.com/coding/everything-you-need-to-know-about-css3-color-techniques/">Everything You Need to Know about CSS3 Color Techniques</a><br />
<a href="http://pelfusion.com/tools/7-useful-css3-code-generators/">7 Useful CSS3 Code Generators</a><br />
<a href="http://pelfusion.com/tutorials/best-examples-of-css3-navigations-and-menu-tutorials/">Best Examples of CSS3 Navigations and Menu Tutorials</a></p>
<div id="attachment_9085" class="wp-caption alignleft" style="width: 550px"><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/08/CSS3-Border-Radius-Tool.jpg" alt="" title="CSS3-Border-Radius-Tool" width="540" height="524" class="size-full wp-image-9085" /><p class="wp-caption-text">CSS3 Border Radius Tool</p></div>
<h2>Here is the CSS which I used in PHP file:</h2>
<pre class="brush: css; auto-links: false; class-name: myclass; collapse: false; first-line: 1; gutter: true; highlight: [1,2,3]; html-script: false; light: false; pad-line-numbers: false; smart-tabs: true; tab-size: 4; title: ; toolbar: true; notranslate">

.outPut {
	-moz-border-radius:10px 10px 10px 10px;
	background-color:rgba(166, 167, 244, 0.8);
	display:table-cell;
	font-size:2em;
	height:200px;
	margin:0 auto;
	min-height:200px;
	text-align:center;
	vertical-align:middle;
	width:320px;
}

.Code {
	-moz-border-radius:10px 10px 10px 10px;
	background:none repeat scroll 0 0 rgba(255, 255, 255, 0.2);
	margin:60px 0 20px;
	padding:10px;
	position:relative;
}

input{-moz-border-radius:5px 5px 5px 5px;
	background-color:rgba(255, 255, 255, 0.5);
	border:1px solid #D4CFBD;
	font-size:1.1em;
	padding:2px 5px 2px 2px;
}

label {
	font-size:1.1em;
	margin:4px 10px 0 0;
}
</pre>
<h2>Here is jQuery code:</h2>
<pre class="brush: jscript; title: ; notranslate">
$(document).ready(function(){
    $(&quot;.radiusInput&quot;).keyup(function()
    {$(&quot;.code-border-radius-equal&quot;).text(function(b){
    var c=$(&quot;.radiusInput&quot;).val();return(c+&quot;px&quot;)});
    var a=$(&quot;.radiusInput&quot;).val()+&quot;px&quot;;
    $(&quot;.outPut&quot;).css({&quot;-webkit-border-radius&quot;:a,&quot;-moz-border-radius&quot;:a,&quot;border-radius&quot;:a})
    });
</pre>
<p><a class="learnmore" href="http://pelfusion.com/demo/css3/"><span> DEMO </span></a>  <a class="learnmore" href="http://media.pelfusion.com/code/CSS3-tool.zip"><span> Download </span></a><br />
<span style="clear:both"></span></p>
<p><strong>Related Posts:</strong></p><ol>
<li><a href='http://pelfusion.com/tools/7-useful-css3-code-generators/' rel='bookmark' title='7 Useful CSS3 Code Generators'>7 Useful CSS3 Code Generators</a> <small>To write CSS manually is not tough, if you know...</small></li>
<li><a href='http://pelfusion.com/coding/everything-you-need-to-know-about-css3-color-techniques/' rel='bookmark' title='Everything You Need to Know about CSS3 Color Techniques'>Everything You Need to Know about CSS3 Color Techniques</a> <small>CSS3 is revolutionizing Web by introducing a number of totally...</small></li>
<li><a href='http://pelfusion.com/know-how/20-tutorials-to-develop-wordpress-plugin/' rel='bookmark' title='20 Tutorials to Develop WordPress Plugin'>20 Tutorials to Develop WordPress Plugin</a> <small>WordPress has become more important application for bloggers and even...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://pelfusion.com/know-how/how-to-develop-css3-border-radius-tool/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>8 Useful Plugins for Theme Developers</title>
		<link>http://pelfusion.com/tools/8-useful-plugins-for-theme-developers/</link>
		<comments>http://pelfusion.com/tools/8-useful-plugins-for-theme-developers/#comments</comments>
		<pubDate>Tue, 01 Jun 2010 16:33:54 +0000</pubDate>
		<dc:creator>Ferman Aziz</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[wordpress plugins]]></category>

		<guid isPermaLink="false">http://pelfusion.com/?p=8349</guid>
		<description><![CDATA[<p><a href="http://pelfusion.com/tools/8-useful-plugins-for-theme-developers/">8 Useful Plugins for Theme Developers</a> is a post from <a href="http://pelfusion.com">PelFusion</a></p><p>When you are developing theme you need to view it before making it live or if you want to show the demo of the themes you need to have control on your WordPress and for this there are different plugins available, out of which i have collected only 8 useful plugins. If you know more [...]</p>
<strong>Related Posts:</strong><ol>
<li><a href='http://pelfusion.com/tools/top-10-wordpress-security-plugins/' rel='bookmark' title='Top 10 WordPress Security Plugins'>Top 10 WordPress Security Plugins</a> <small>When your blog starts growing and gets popular, you have...</small></li>
<li><a href='http://pelfusion.com/tools/15-most-important-wordpress-plugins-to-help-you-fight-spam/' rel='bookmark' title='15 Most Important WordPress Plugins To Help You Fight Spam'>15 Most Important WordPress Plugins To Help You Fight Spam</a> <small>As your blog&#8217;s traffic grows, spammers will rush to your...</small></li>
<li><a href='http://pelfusion.com/tools/20-must-have-wordpress-cms-plugins/' rel='bookmark' title='20 Must Have WordPress CMS Plugins'>20 Must Have WordPress CMS Plugins</a> <small>WordPress was build to be used for blogging only but...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://pelfusion.com/tools/8-useful-plugins-for-theme-developers/">8 Useful Plugins for Theme Developers</a> is a post from <a href="http://pelfusion.com">PelFusion</a></p><p>When you are developing theme you need to view it before making it live or if you want to show the demo of the <a href="http://pelfusion.com/know-how/facebook-insights-for-your-wordpress-blog/">themes you need to have control on your WordPress</a> and for this there are different plugins available, out of which i have collected only 8 useful plugins. If you know more do share with us.</p>
<h3>1. <a rel="nofollow" href="http://wordpress.org/extend/plugins/theme-switcher/" target="_blank">Theme Switcher</a></h3>
<p>Allow users to switch which theme they use on your WordPress, WordPress MU, or BuddyPress site. Includes a widget for easily putting the theme-switcher as a list or dropdown in your sidebar.</p>
<pre><a rel="nofollow" href="http://downloads.wordpress.org/plugin/theme-switcher.1.0.zip">Download</a></pre>
<h3>2. <a rel="nofollow" href="http://wordpress.org/extend/plugins/nkthemeswitch/" target="_blank">Theme Switch and Preview</a></h3>
<p>The plugin is great for theme development as you can tweak the template online without breaking stuff for visitors.</p>
<pre><a rel="nofollow" href="http://downloads.wordpress.org/plugin/nkthemeswitch.0.7.4.1.zip">Download</a></pre>
<h3>3. <a rel="nofollow" href="http://wordpress.org/extend/plugins/nkthemeswitch/" target="_blank">Theme Test Drive</a></h3>
<p>Theme Test Drive WordPress plugin allows you to safely test drive any theme on your blog as administrator, while visitors still use the default one. </p>
<pre><a rel="nofollow" href="http://downloads.wordpress.org/plugin/theme-test-drive.zip">Download</a></pre>
<h3>4. <a rel="nofollow" href="http://wordpress.org/extend/plugins/nkthemeswitch/" target="_blank">User Switching</a></h3>
<p>This plugin allows you to quickly swap between user accounts in WordPress at the click of a button. You&#8217;ll be instantly logged out and logged in as your desired user.</p>
<pre><a rel="nofollow" href="http://downloads.wordpress.org/plugin/user-switching.zip">Download</a></pre>
<h3>5. <a rel="nofollow" href="http://sw-guide.de/wordpress/plugins/maintenance-mode/" target="_blank">Maintenance Mode Plugin</a></h3>
<p>This plugin adds a splash page to your blog that lets visitors know your blog is down for maintenance. Logged in administrators get full access to the blog including the front-end.</p>
<p><img src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/06/maintinance-mode-plugin.jpg" alt="maintinance-mode-plugin" title="maintinance-mode-plugin" width="500" height="323" class="alignnone size-full wp-image-8354" /></p>
<pre><a rel="nofollow" href="http://downloads.wordpress.org/plugin/maintenance-mode.5.1.zip">Download</a></pre>
<h3>6. <a rel="nofollow" href="http://www.spotonseoservices.com/wordpress-theme-demo-plugin/" target="_blank">WordPress Theme Demo Plugin</a></h3>
<p>This plugin was designed to help web designers easily demo their WordPress themes.</p>
<pre><a rel="nofollow" href="http://www.spotonseoservices.com/wordpress-themes/download/WordPrss-Theme-Demo.zip">Download</a></pre>
<h3>7. <a rel="nofollow" href="http://wordpress.org/extend/plugins/raw-html/" target="_blank">Raw HTML</a></h3>
<p>This plugin lets you use raw HTML or any other code in your posts. One way to use it is to wrap a part of your post in special tags (below) to prevent WordPress from converting newlines to HTML paragraphs, escaping apostrophes and so on. </p>
<pre><a rel="nofollow" href="http://downloads.wordpress.org/plugin/raw-html.1.2.5.zip">Download</a></pre>
<h3>8. TDO Mini Forms</h3>
<p>This plugin can add themed custom posting and editing forms to your website that allows your readers (including non-registered) to contribute.</p>
<pre>Download</pre>
<p><strong>Related Posts:</strong></p><ol>
<li><a href='http://pelfusion.com/tools/top-10-wordpress-security-plugins/' rel='bookmark' title='Top 10 WordPress Security Plugins'>Top 10 WordPress Security Plugins</a> <small>When your blog starts growing and gets popular, you have...</small></li>
<li><a href='http://pelfusion.com/tools/15-most-important-wordpress-plugins-to-help-you-fight-spam/' rel='bookmark' title='15 Most Important WordPress Plugins To Help You Fight Spam'>15 Most Important WordPress Plugins To Help You Fight Spam</a> <small>As your blog&#8217;s traffic grows, spammers will rush to your...</small></li>
<li><a href='http://pelfusion.com/tools/20-must-have-wordpress-cms-plugins/' rel='bookmark' title='20 Must Have WordPress CMS Plugins'>20 Must Have WordPress CMS Plugins</a> <small>WordPress was build to be used for blogging only but...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://pelfusion.com/tools/8-useful-plugins-for-theme-developers/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>A Comprehensive Guide to Web Terminology</title>
		<link>http://pelfusion.com/design/a-comprehensive-guide-to-web-terminology/</link>
		<comments>http://pelfusion.com/design/a-comprehensive-guide-to-web-terminology/#comments</comments>
		<pubDate>Wed, 24 Mar 2010 15:52:10 +0000</pubDate>
		<dc:creator>Robert Bowen</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[terminology]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://pelfusion.com/?p=7389</guid>
		<description><![CDATA[<p><a href="http://pelfusion.com/design/a-comprehensive-guide-to-web-terminology/">A Comprehensive Guide to Web Terminology</a> is a post from <a href="http://pelfusion.com">PelFusion</a></p><p>When I was a trainer for a corporate restaurant chain, one area we would always focus on during the beginning of our training classes was the basic restaurant terminology. The reason being, that after working in an arena for a while we tend to take the terminology that goes along with the task for granted [...]</p>
<strong>Related Posts:</strong><ol>
<li><a href='http://pelfusion.com/fonts/a-guide-to-typography-on-the-web/' rel='bookmark' title='A Guide To Typography On The Web'>A Guide To Typography On The Web</a> <small>The web is alive and growing more active with each...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://pelfusion.com/design/a-comprehensive-guide-to-web-terminology/">A Comprehensive Guide to Web Terminology</a> is a post from <a href="http://pelfusion.com">PelFusion</a></p><p>When I was a trainer for a corporate restaurant chain, one area we would always focus on during the beginning of our training classes was the basic restaurant terminology. The reason being, that after working in an arena for a while we tend to take the terminology that goes along with the task for granted as just widely accepted common knowledge. We think everyone knows what we mean when we talk about div tags, design briefs, and splash pages because in the circles we tend to populate, most do. But when you are just getting started, it can be easy to get a bit lost in the lingo, and beyond that, not being aware of the non-commonality of our terminology can impact our client relationships.</p>
<p>Without this awareness of how much of our speech is ingrained in our industry, we forget when communicating with those outside said industry that they may not be following much of what we are saying. And though you do want your clients to know that you know just what it is you are talking about, you also want them to know just what it is that you are talking about. So be sure that you are familiar with which terms tend to only make sense to those in your field, to keep your client conversations on track and from veering into somewhat job-specific, proprietary directions.</p>
<p><strong><a rel="nofollow" href="#gendes">General Design Terms</a></strong><br />
<strong><a rel="nofollow" href="#typdes">Typography Design Terms</a></strong><br />
<strong><a rel="nofollow" href="#coldes">Color Design Terms</a></strong><br />
<strong><a rel="nofollow" href="#compdes">Composition Design Terms</a></strong><br />
<strong><a rel="nofollow" href="#devgen">General Developing Terms</a></strong><br />
<strong><a rel="nofollow" href="#devlang">Developer Languages</a></strong><br />
<strong><a rel="nofollow" href="#devcont">Developer Content Terms</a></strong><br />
<strong><a rel="nofollow" href="#devcss">CSS Terms</a></strong><br />
<strong><a rel="nofollow" href="#devtype">Typography Developer Terms</a></strong></p>
<h1 class=underLineTitle>Web Design Dictionary</h1>
<p>We will begin in the glossary for web designers and I have broken it down into a few different categories to make it easier to swallow, if you will.<br />
<a name="gendes"></a></p>
<h2 class=subTitHd><a name="gendes">General Design Terms</a></h2>
<p><img class="alignnone size-full wp-image-7394" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/03/generaldesign.jpg" alt="generaldesign" width="550" height="200" /></p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Pixel">Pixel</a> &#8211; In digital imaging, a pixel (or picture element) is a single point in a raster image. The pixel is the smallest addressable screen element, it is the smallest unit of picture which can be controlled.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Image_resolution">Resolution</a> &#8211; describes the detail an image holds. The term applies to digital images, film images, and other types of images. Higher resolution means more image detail.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Website_wireframe">Wireframe</a> -is a basic visual guide used in interface design to suggest the structure of a website and relationships between its pages. A webpage wireframe is a similar illustration of the layout  of fundamental elements in the interface.</p>
<p><a name="typdes"></a></p>
<h2 class=subTitHd><a name="typdes">Typography Design Terms</a></h2>
<p><img class="alignnone size-full wp-image-7395" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/03/typographydesign.jpg" alt="typographydesign" width="550" height="200" /></p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Baseline_%28typography%29">Baseline</a> &#8211; is the line upon which most letters &#8220;sit&#8221; and below which descenders  extend.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Ascender_%28typography%29">Ascender</a> &#8211; is the portion of a minuscule letter  in a Latin-derived alphabet that extends above the mean line of a font. That is, the part of a lower-case letter that is taller than the font&#8217;s x-height.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Descender">Descender</a> &#8211; is the portion of a letter in a Latin alphabet that extends below the baseline of a font. In most fonts, descenders are reserved for lowercase characters such as g, p, and y. Some fonts, however, also use descenders for some numerals.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Body_height_%28typography%29">Body Height</a> &#8211; refers to the distance between the top of the tallest letterform to the bottom of the lowest one.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/X-height">x-height</a> &#8211; or corpus size refers to the distance between the baseline and the mean line in a typeface. Typically, this is the height of the letter x in the font…</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Cap_height">Cap height</a> &#8211; refers to the height of a capital letter above the baseline for a particular typeface. It specifically refers to the height of capital letters that are flat…</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Overshoot_%28typography%29">Overshoot</a> &#8211; it is the degree to which capital letters go below the baseline or above the cap height, or to which a lowercase letter goes below the baseline or above the x-height.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Glyph">Glyph</a> &#8211; is an element of writing. It is a slightly vague term, but a more precise definition might be an individual mark on paper or another written medium that contributes to the meaning of what is written there. A grapheme is made up of one or more glyphs.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Character_%28computing%29">Character</a> &#8211; is a unit of information that roughly corresponds to a grapheme, grapheme-like unit, or symbol, such as in an alphabet  or syllabary  in the written form of a natural language, such as letters, numerical digits, and common punctuation marks.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Font">Font</a> &#8211; (also fount) is traditionally defined as a complete character set of a single size and style of a particular typeface. For example, the set of all characters for 9-point Bulmer italic  is a font, and the 10-point size would be a separate font, as would the 9-point upright.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Typeface">Typeface</a> &#8211; is a set of one or more fonts, in one or more sizes, designed with stylistic unity, each comprising a coordinated set of glyphs. A typeface usually comprises an alphabet  of letters, numerals, and punctuation  marks; it may also include ideograms  and symbols, or consist entirely of them.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Italic_type">Italic</a> &#8211; is a cursive  typeface based on a stylized form of calligraphic handwriting. Due to the influence from calligraphy, such typefaces often slant slightly to the right.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Oblique_type">Oblique</a> &#8211; is a form of type that slants slightly to the right, used in the same manner as italic type. Unlike italic type, however, it does not use different glyph shapes; it uses the same glyphs as roman type, except distorted.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Kerning">Kerning</a> &#8211; is the process of adjusting white spacing in a proportional font. In a well-kerned font, the two-dimensional blank spaces between each pair of letters all have similar area.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Kerning">Kern</a> &#8211; is a part of a type letter that overhangs the edge of the type block.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Leading">Leading</a> &#8211; refers to the amount of added vertical spacing between lines of type. In consumer-oriented word processing software, this concept is usually referred to as line spacing.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Typographic_ligature">Ligature</a> &#8211; occurs where two or more graphemes are joined as a single glyph. Ligatures usually replace consecutive characters sharing common components and are part of a more general class of glyphs called contextual forms…</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Serif">Serif</a> &#8211; is a typeface that contain serifs, or semi-structural details on the ends of some of the strokes that make up letters and symbols.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Sans-serif">Sans-Serif</a> &#8211; is a typeface that does not have the small features called &#8220;serifs&#8221; at the end of strokes.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Script_%28typefaces%29">Script</a> &#8211; typefaces that are based upon the varied and often fluid stroke created by handwriting.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Monospaced_font">Monospaced Font</a> &#8211; is a font whose letters each occupy the same amount of space. This contrasts to variable-width fonts, where the letters differ in size to one another.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Subscript_and_superscript">Subscript &amp; Superscript</a> &#8211; is a number, figure, symbol, or indicator that appears smaller than the normal line of type and is set slightly below or above it – subscripts appear at or below the baseline, while superscripts are above.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Typographic_alignment">Alignment</a> &#8211; is the setting of text flow or image placement relative to a page, column (measure), table cell or tab. The type alignment setting is sometimes referred to as text alignment, text justification or type justification.</p>
<ul>
<li>Flush Left &#8211; the text is aligned along the left margin or gutter, also known as ragged right.</li>
<li>Flush Right &#8211; the text is aligned along the right margin or gutter, also known as ragged left.</li>
<li>Centered &#8211; text is aligned to neither the left nor right margin; there is an even gap at the end of each line</li>
<li>Justified &#8211; ext is aligned along the left margin, and letter- and word-spacing is adjusted so that the text falls flush with both margins, also known as full justification.</li>
</ul>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Em_%28typography%29">em</a> &#8211; is a unit of measurement in the field of typography. This unit defines the proportion of the letter width and height with respect to the point size of the current font.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Em_dash#Em_dash">em-dash</a> &#8211; often demarcates a parenthetical thought or some similar interpolation.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/En_%28typography%29">en</a> &#8211; is a typographic unit, half of the width of an em. By definition, it is equivalent to half of the height of the font.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Em_dash#En_dash">en-dash</a> &#8211; is usually half the width of an em dash and is commonly used to indicate a closed range (a range with clearly defined and non-infinite upper and lower boundaries) of values.</p>
<p><a name="coldes"></a></p>
<h2 class=subTitHd><a name="coldes">Color Design Terms</a></h2>
<p><img class="alignnone size-full wp-image-7396" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/03/colordesign.jpg" alt="colordesign" width="550" height="200" /></p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Cmyk">CMYK</a> &#8211; is a subtractive color model, used in color printing, and is also used to describe the printing process itself. CMYK refers to the four inks used in some color printing: cyan, magenta, yellow, and key black.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Rgb">RGB</a> &#8211; additive color model in which red, green, and blue light are added together in various ways to reproduce a broad array of colors. The name of the model comes from the initials of the three additive primary colors, red, green, and blue.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Color_spectrum">Spectrum</a> &#8211; is the portion of the electromagnetic spectrum that is visible to (can be detected by) the human eye.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Hue">Hue</a> &#8211; is one of the main properties of a color, defined technically (in the CIECAM02  model), as “the degree to which a stimulus can be described as similar to or different from stimuli that are described as red, green, blue, and yellow,”.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Lightness_%28color%29">Lightness &amp; Tone</a> &#8211; a property of a color, or a dimension of a color space, that is defined in a way to reflect the subjective brightness perception of a color for humans along a lightness–darkness axis. A color&#8217;s lightness also corresponds to its amplitude.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Tint">Tint &amp; Shade</a> &#8211; the mixture of a color with white, which increases lightness, and a shade is the mixture of a color with black, which reduces lightness. Mixing with any neutral color, including black and white, reduces chroma or colorfulness, while the hue remains unchanged.</p>
<p><a name="compdes"></a></p>
<h2 class=subTitHd><a name="compdes">Composition Design Terms</a></h2>
<p><img class="alignnone size-full wp-image-7398" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/03/compdesign.jpg" alt="compdesign" width="550" height="200" /></p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Composition_%28visual_arts%29">Composition</a> &#8211; the placement or arrangement of visual elements or ingredients in a work of art, as distinct from the subject of a work. It can also be thought of as the organization of the elements of art according to the principles of art.</p>
<ul>
<li>Line &#8211; the visual path that enables the eye to move within the piece</li>
<li>Shape &#8211; areas defined by edges within the piece, whether geometric or organic</li>
<li>Color &#8211; hues with their various values and intensities</li>
<li>Texture &#8211; surface qualities which translate into tactile illusions</li>
<li>Form &#8211; 3-D length, width, or depth</li>
<li>Value &#8211; Shading used to emphasize form</li>
<li>Space &#8211; the space taken up by (positive) or in between (negative) objects</li>
</ul>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Perspective_%28graphical%29">Perspective</a> &#8211; an approximate representation, on a flat surface (such as paper), of an image as it is seen by the eye. The two most characteristic features of perspective are that objects are drawn are smaller as their distance from the observer increases and foreshortened: the size of an object&#8217;s dimensions along the line of sight are relatively shorter than dimensions across the line of sight (see later).</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Contrast_%28vision%29">Contrast</a> &#8211; the difference in visual properties that makes an object (or its representation in an image) distinguishable from other objects and the background.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Symmetry">Symmetry</a> &#8211; an imprecise sense of harmonious or aesthetically pleasing proportionality and balance such that it reflects beauty or perfection.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/White_space_%28visual_arts%29">Whitespace</a> &#8211; often referred to as negative space, it is that portion of a page left unmarked: the space between graphics, margins, gutters, space between columns, space between lines of type or figures and objects drawn or depicted. The term arises from graphic design practice, where printing processes generally use white paper.</p>
<h1 class=underLineTitle>Web Developer Dictionary</h1>
<p>Now we come to the Developer&#8217;s section of this massive web term glossary. Below are a plethora of definitions that should be a part of your vocabulary if you develop for the web.</p>
<p><a name="devgen"></a></p>
<h2 class=subTitHd><a name="devgen">General Developing Terms</a></h2>
<p><img class="alignnone size-full wp-image-7399" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/03/generaldev.jpg" alt="generaldev" width="550" height="200" /></p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Content_management_system">CMS</a> &#8211; A content management system (CMS) is a collection of procedures used to manage work flow in a collaborative environment. In a CMS, data can be defined as almost anything &#8211; documents, movies, pictures, phone numbers, scientific data, etc. CMSs are frequently used for storing, controlling, revising, semantically enriching, and publishing documentation.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Client_side">Client Side</a> &#8211;  refers to operations that are performed by the client in a client-server relationship in a computer network. Typically, a client is a computer application, such as a web browser, that runs on a user&#8217;s local computer or workstation and connects to a server as necessary.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Server_side">Server Side</a> &#8211; refers to operations that are performed by the server in a client-server  relationship in computer networking. Typically, a server is a software program, such as a web server, that runs on a remote server, reachable from a user&#8217;s local computer or workstation.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Backend">Frontend/Backend</a> &#8211; generalized terms that refer to the initial and the end stages of a process. The front-end is responsible for collecting input in various forms from the user and processing it to conform to a specification the back-end can use. The front-end is a kind of interface between the user and the back-end.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Domain_Name_System">DNS</a> &#8211; The Domain Name System (DNS) is a hierarchical naming system for computers, services, or any resource connected to the Internet  or a private network. It associates various information with domain names assigned to each of the participants. Most importantly, it translates domain names meaningful to humans into the numerical (binary) identifiers associated with networking equipment for the purpose of locating and addressing these devices worldwide.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Ftp">FTP</a> &#8211; File Transfer Protocol (FTP) is a standard network protocol used to exchange and manipulate files over a TCP/IP-based network, such as the Internet. FTP is built on a client-server architecture and utilizes separate control and data connections between the client and server applications. FTP is used with user-based password authentication or with anonymous user access.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Sitemap">Sitemap</a> &#8211; a list of pages of a web site accessible to crawlers or users. It can be either a document in any form used as a planning tool for web design, or a web page that lists the pages on a web site, typically organized in hierarchical fashion. This helps visitors and search engine bots  find pages on the site.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/User_interface">UI</a> &#8211; the system by which people (users) interact  with a machine. The user interface includes hardware (physical) and software (logical) components. User interfaces exist for various systems, and provide a means of input, allowing the users to manipulate a system, and/or output, allowing the system to indicate the effects of the users&#8217; manipulation.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Markup_language">Markup Language</a> &#8211; a system for annotating a text in a way which is syntactically distinguishable from that text. Examples include revision instructions by editors, traditionally written with a blue pencil on authors&#8217; manuscripts, typesetting instructions such those found in troff and LaTeX, and structural markers such as XML tags.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Mysql">MySQL</a> &#8211; a relational database management system (RDBMS) that runs as a server providing multi-user access to a number of databases. The MySQL development project has made its source code available under the terms of the GNU General Public License, as well as under a variety of proprietary agreements.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Pagerank">PageRank</a> &#8211; a link analysis algorithm, named after Larry Page, used by the Google Internet search engine that assigns a numerical weighting to each element of a hyperlinked set of documents, such as the World Wide Web, with the purpose of &#8220;measuring&#8221; its relative importance within the set.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/RSS">RSS</a> &#8211; RSS (most commonly expanded as &#8220;Really Simple Syndication&#8221;) is a family of web feed formats used to publish frequently updated works—such as blog entries, news headlines, audio, and video—in a standardized format. An RSS document (usually called a &#8220;feed&#8221;) includes full or summarized text, plus metadata such as publishing dates and authorship.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Root_Directory">Root Directory</a> &#8211; the first or top-most directory in a hierarchy. It can be likened to the root of a tree &#8211; the starting point where all branches originate.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Search_engine_optimization">SEO</a> &#8211; Search engine optimization (SEO) is the process of improving the volume or quality of traffic to a web site from search engines via &#8220;natural&#8221; or un-paid (&#8220;organic&#8221; or &#8220;algorithmic&#8221;) search results as opposed to search engine marketing (SEM) which deals with paid inclusion. Typically, the earlier (or higher) a site appears in the search results list, the more visitors it will receive from the search engine. SEO may target different kinds of search, including image search, local search, video search and industry-specific vertical search engines. This gives a web site web presence.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Web_standards">Web Standards</a> &#8211; a general term for the formal standards and other technical specifications that define and describe aspects of the World Wide Web. In recent years, the term has been more frequently associated with the trend of endorsing a set of standardized best practices for building web sites, and a philosophy of web design and development that includes those methods.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Web_2.0">Web 2.0</a> &#8211; commonly associated with web applications that facilitate interactive information sharing, interoperability, user-centered design, and collaboration on the World Wide Web. Examples of Web 2.0 include web-based communities, hosted services, web applications, social-networking sites, video-sharing sites, wikis, blogs, mashups, and folksonomies. A Web 2.0 site allows its users to interact with other users or to change website content, in contrast to non-interactive websites where users are limited to the passive viewing of information that is provided to them.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Database">Database</a> &#8211; a collection of data for one or more multiple uses. One way of classifying databases involves the type of content, for example: bibliographic, full-text, numeric, image. Other classification methods start from examining database models or database architectures: see below. Software organizes the data in a database according to a database model. As of 2010[update] the relational model occurs most commonly. Other models such as the hierarchical model and the network model use a more explicit representation of relationships.</p>
<p><a name="devlang"></a></p>
<h2 class=subTitHd><a name="devlang">Developer Languages</a></h2>
<p><img class="alignnone size-full wp-image-7400" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/03/languagedev.jpg" alt="languagedev" width="550" height="200" /></p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/CSS">CSS</a> &#8211; Cascading Style Sheets (CSS) is a style sheet language used to describe the presentation semantics (that is, the look and formatting) of a document written in a markup language. CSS is designed primarily to enable the separation of document content (written in HTML or a similar markup language) from document presentation, including elements such as the layout, colors, and fonts.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/HTML">HTML</a> &#8211; HyperText Markup Language, is the predominant markup language for web pages. It provides a means to create structured documents by denoting structural semantics for text such as headings, paragraphs, lists etc as well as for links, quotes, and other items. It allows images and objects to be embedded and can be used to create interactive forms.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Xml">XML</a> &#8211; XML (Extensible Markup Language) is a set of rules for encoding documents electronically. It is defined in the XML 1.0 Specification produced by the W3C  and several other related specifications; all are fee-free open standards.[3]</p>
<p>XML’s design goals emphasize simplicity, generality, and usability over the Internet. It is a textual data format, with strong support via Unicode for the languages of the world. Although XML’s design focuses on documents, it is widely used for the representation of arbitrary data structures, for example in web services.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Xhtml">XHTML</a> &#8211; XHTML (Extensible Hypertext Markup Language) is a family of XML markup languages that mirror or extend versions of the widely used Hypertext Markup Language (HTML), the language in which web pages  are written. While HTML (prior to HTML5) was defined as an application of Standard Generalized Markup Language (SGML), a very flexible markup language framework, XHTML is an application of XML, a more restrictive subset of SGML. Because XHTML documents need to be well-formed, they can be parsed using standard XML parsers—unlike HTML, which requires a lenient HTML-specific parser.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Php">PHP</a> &#8211; PHP: Hypertext Preprocessor is a widely used, general-purpose scripting language that was originally designed for web development to produce dynamic web pages. For this purpose, PHP code is embedded into the HTML source document and interpreted by a web server with a PHP processor module, which generates the web page document.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Javascript">JavaScript</a> &#8211; an object-oriented scripting language used to enable programmatic access to objects within both the client application and other applications. It is primarily used in the form of client-side JavaScript, implemented as an integrated component of the web browser, allowing the development of enhanced user interfaces and dynamic websites.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Asp.net">ASP.NET</a> &#8211; a web application framework developed and marketed by Microsoft  to allow programmers to build dynamic web sites, web applications and web services.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Ajax_%28programming%29">Ajax</a> &#8211; (shorthand for asynchronous JavaScript  and XML[1]) is a group of interrelated web development techniques used on the client-side  to create interactive web applications. With Ajax, web applications can retrieve data from the server  asynchronously in the background without interfering with the display and behavior of the existing page. The use of Ajax techniques has led to an increase in interactive or dynamic interfaces on web pages. Data is usually retrieved using the XMLHttpRequest object. Despite the name, the use of XML is not actually required, nor do the requests need to be asynchronous.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Jquery">jQuery</a> &#8211; a lightweight cross-browser JavaScript library that emphasizes interaction between JavaScript and HTML. jQuery&#8217;s syntax is designed to make it easier to navigate a document, select DOM elements, create animations, handle events, and develop Ajax applications. jQuery also provides capabilities for developers to create plugins on top of the JavaScript library. Providing this option, developers are able to create abstractions for low-level interaction and animation, advanced effects and high-level, theme-able widgets.</p>
<p><a><br />
</a></p>
<h2 class=subTitHd><a>Developer Content Terms</a></h2>
<p><img class="alignnone size-full wp-image-7401" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/03/contentdev.jpg" alt="contentdev" width="550" height="200" /></p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Doctype">Doctype</a> &#8211; A Document Type Declaration is an instruction that associates a particular SGML or XML document (for example, a webpage) with a Document Type Definition (DTD) (for example, the formal definition of a particular version of HTML). In the serialized  form of the document, it manifests as a short string of markup that conforms to a particular syntax.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Favicon">Favicon</a> &#8211; short for favorites icon is a 16×16 pixel square icon associated with a particular website or webpage. A web designer can create such an icon and install it into a website (or webpage) by several means, and most graphical web browsers will then make use of it. Browsers that provide favicon support typically display a page&#8217;s favicon in the browser&#8217;s address bar and next to the page&#8217;s name in a list of bookmarks.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Web_form">Form</a> &#8211; allows a user to enter data that is sent to a server for processing. Webforms resemble paper forms because internet users fill out the forms using checkboxes, radio buttons, or text fields. For example, webforms can be used to enter shipping or credit card data to order a product or can be used to retrieve data (e.g., searching on a search engine).</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Hyperlink">Hyperlink</a> &#8211; a reference  to a document  that the reader can directly follow, or that is followed automatically. The reference points to a whole document or to a specific element within a document. Hypertext is text with hyperlinks. Such text is usually viewed with a computer. A software system for viewing and creating hypertext is a hypertext system. To hyperlink (or simply to link) is to create a hyperlink. A user following hyperlinks is said to navigate or browse the hypertext.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Robots.txt">robots.txt</a> &#8211; The Robot Exclusion Standard, also known as the Robots Exclusion Protocol or robots.txt protocol, is a convention to prevent cooperating web spiders and other web robots from accessing all or part of a website which is otherwise publicly viewable. Robots are often used by search engines to categorize and archive web sites, or by webmasters to proofread source code. The standard is unrelated to, but can be used in conjunction with, Sitemaps, a robot inclusion standard for websites.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/.htaccess">.htaccess</a> &#8211; the default name of a directory-level configuration file that allows for decentralized management of web server configuration. The .htaccess file is placed inside the web tree, and is able to override a subset of the server&#8217;s global configuration; the extent of this subset is defined by the web server administrator.[1]  The original purpose of .htaccess was to allow per-directory access control (e.g. requiring a password to access the content), hence the name.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Adobe_Flash">Flash</a> &#8211; a multimedia platform that is popular for adding animation and interactivity  to web pages. Originally acquired by Macromedia, Flash was introduced in 1996, and is currently developed and distributed by Adobe Systems. Flash is commonly used to create animation, advertisements, and various web page Flash components, to integrate video into web pages, and more recently, to develop rich Internet applications. Flash can manipulate vector and raster graphics, and supports bidirectional streaming of audio and video.</p>
<p><a name="devcss"></a></p>
<h2 class=subTitHd><a name="devcss">CSS Terms</a></h2>
<p><img class="alignnone size-full wp-image-7402" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/03/cssdev.jpg" alt="cssdev" width="550" height="200" /></p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Span_and_div">Span &amp; Div</a> &#8211; elements used where parts of a document cannot be semantically described by other HTML elements. Most HTML elements carry semantic meaning – i.e. the element describes, and can be made to function according to, the type of data contained within. For example, a p element should contain a paragraph of text, while an h1 element should contain the highest-level header of the page; user agents should distinguish them accordingly. However, as span and div have no innate semantic meaning besides the logical grouping of the content, they can be used to specify non-standard presentation or behaviour without superfluous semantic meaning.</p>
<p><a rel="nofollow" href="http://www.w3schools.com/css/css_id_class.asp">ID &amp; Class</a> &#8211; The id selector is used to specify a style for a single, unique element. The class selector is used to specify a style for a group of elements. Unlike the id selector, the class selector is most often used on several elements.</p>
<p><a rel="nofollow" href="http://www.w3schools.com/css/css_float.asp">Float</a> &#8211; Elements are floated horizontally, this means that an element can only be floated left or right, not up or down. A floated element will move as far to the left or right as it can. Usually this means all the way to the left or right of the containing element. The elements after the floating element will flow around it. The elements before the floating element will not be affected. If an image is floated to the right, a following text flows around it, to the left.</p>
<p><a rel="nofollow" href="http://www.w3schools.com/css/css_boxmodel.asp">Box Model</a> &#8211; All HTML elements can be considered as boxes. In CSS, the term &#8220;box model&#8221; is used when talking about design and layout. The CSS box model is essentially a box that wraps around HTML elements, and it consists of: margins, borders, padding, and the actual content. The box model allows us to place a border around elements and space elements in relation to other elements.</p>
<p><a rel="nofollow" href="http://www.w3schools.com/css/css_margin.asp">Margin</a> &#8211; The margin clears an area around an element (outside the border). The margin does not have a background color, and is completely transparent. The top, right, bottom, and left margin can be changed independently using separate properties. A shorthand margin property can also be used, to change all margins at once.</p>
<p><a rel="nofollow" href="http://www.w3schools.com/css/css_padding.asp">padding</a> &#8211; The padding clears an area around the content (inside the border) of an element. The padding is affected by the background color of the element. The top, right, bottom, and left padding can be changed independently using separate properties. A shorthand padding property can also be used, to change all paddings at once.</p>
<p><a rel="nofollow" href="http://www.w3schools.com/css/css_border.asp">border</a> &#8211; The CSS border properties allow you to specify the style and color of an element&#8217;s border.</p>
<p><a rel="nofollow" href="http://www.w3schools.com/css/css_positioning.asp">Positioning</a> &#8211; The CSS positioning properties allow you to position an element. It can also place an element behind another, and specify what should happen when an element&#8217;s content is too big. Elements can be positioned using the top, bottom, left, and right properties. However, these properties will not work unless the position property is set first. They also work differently depending on the positioning method.</p>
<p><a rel="nofollow" href="http://www.w3schools.com/Css/pr_pos_overflow.asp">Overflow</a> &#8211; The overflow property specifies what happens if content overflows an element&#8217;s box. (visible, hidden, scroll, auto)</p>
<p><a rel="nofollow" href="http://www.w3schools.com/Css/pr_pos_z-index.asp">Z-Index</a> &#8211; The z-index property specifies the stack order of an element. An element with greater stack order is always in front of an element with a lower stack order. Z-index only works on positioned elements (position:absolute, position:relative, or position:fixed).</p>
<p><a name="devtype"></a></p>
<h2 class=subTitHd><a name="devtype">Typography Developer Terms</a></h2>
<p><img class="alignnone size-full wp-image-7403" src="http://cdn.pelfusion.com/media/wp-content/uploads/2010/03/typodev.jpg" alt="typodev" width="550" height="200" /></p>
<p><a rel="nofollow" href="http://www.w3schools.com/CSS/css_text.asp">Text</a></p>
<ul>
<li>Letter-Spacing &#8211; increase or decrease the space between characters</li>
<li>Line-Height &#8211; sets the distance between lines</li>
<li>Text-Align &#8211; aligns the text in an element</li>
<li>Text-Decoration &#8211; adds decoration to text (underline, line-through, overline)</li>
<li>Text-Indent &#8211; Indents the first line of text in an element</li>
<li>Text-Transform &#8211; controls the letters in an element (capitalize, uppercase, lowercase)</li>
<li>Word-Spacing &#8211; increase or decrease the space between words</li>
</ul>
<p><a rel="nofollow" href="http://www.w3schools.com/CSS/css_font.asp">Font</a></p>
<ul>
<li>Font-Family &#8211; specifies the font family for the text</li>
<li>font-size &#8211; sepcifies the size of the text</li>
<li>font-style &#8211; specifies the style for the text (normal, italic, oblique)</li>
<li>font-varient &#8211; specifies whether a text will be displayed in small caps</li>
<li>font-weight &#8211; specifies the weight of a font (light, bold)</li>
</ul>
<p><a rel="nofollow" href="http://www.w3schools.com/CSS/pr_font_font-family.asp">Font Stack</a> &#8211; The font-family property specifies the font for an element. The font-family property can hold several font names as a &#8220;fallback&#8221; system. If the browser does not support the first font, it tries the next font. Start with the font you want, and always end with a generic family, to let the browser pick a similar font in the generic family, if no other fonts are available.</p>
<p><a rel="nofollow" href="http://en.wikipedia.org/wiki/Blockquote">Blockquote</a> &#8211; used to indicate the quotation of a large section of text from another source. Using the default HTML styling of most web browsers, it will indent the right and left margins both on the display and in printed form.</p>
<p><strong>Related Posts:</strong></p><ol>
<li><a href='http://pelfusion.com/fonts/a-guide-to-typography-on-the-web/' rel='bookmark' title='A Guide To Typography On The Web'>A Guide To Typography On The Web</a> <small>The web is alive and growing more active with each...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://pelfusion.com/design/a-comprehensive-guide-to-web-terminology/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>54 Awesome Tutorials To Satisfy The Appetite Of Any Web Developer</title>
		<link>http://pelfusion.com/tutorials/54-awesome-tutorials-to-satisfy-the-appetite-of-any-web-developer/</link>
		<comments>http://pelfusion.com/tutorials/54-awesome-tutorials-to-satisfy-the-appetite-of-any-web-developer/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 22:14:53 +0000</pubDate>
		<dc:creator>Ferman Aziz</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://pelfusion.com/?p=6452</guid>
		<description><![CDATA[<p><a href="http://pelfusion.com/tutorials/54-awesome-tutorials-to-satisfy-the-appetite-of-any-web-developer/">54 Awesome Tutorials To Satisfy The Appetite Of Any Web Developer</a> is a post from <a href="http://pelfusion.com">PelFusion</a></p><p>When a roundup of tutorials is done, they usual focus on one specific area of design, development or coding. However we at Pelfusion know that a lot of our web developers have their fingers in more then one area of development. So, we&#8217;ve dedicated this article to the development of fantastic blogs and website. We [...]</p>
<strong>Related Posts:</strong><ol>
<li><a href='http://pelfusion.com/tutorials/25-excellent-collection-of-jquery-tutorials/' rel='bookmark' title='25 Excellent Collection Of jQuery Tutorials'>25 Excellent Collection Of jQuery Tutorials</a> <small>According to jQuery dot com, &#8220;jQuery is a fast and...</small></li>
<li><a href='http://pelfusion.com/know-how/20-tutorials-to-develop-wordpress-plugin/' rel='bookmark' title='20 Tutorials to Develop WordPress Plugin'>20 Tutorials to Develop WordPress Plugin</a> <small>WordPress has become more important application for bloggers and even...</small></li>
<li><a href='http://pelfusion.com/know-how/tutorials-and-tips-on-building-a-twitter-application/' rel='bookmark' title='Tutorials And Tips On Building A Twitter Application'>Tutorials And Tips On Building A Twitter Application</a> <small>Almost every user on internet knows about twitter. It&#8217;s getting...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://pelfusion.com/tutorials/54-awesome-tutorials-to-satisfy-the-appetite-of-any-web-developer/">54 Awesome Tutorials To Satisfy The Appetite Of Any Web Developer</a> is a post from <a href="http://pelfusion.com">PelFusion</a></p><p>When a roundup of tutorials is done, they usual focus on one specific area of design, development or coding. However we at Pelfusion know that a lot of our web developers have their fingers in more then one area of development. So, we&#8217;ve dedicated this article to the development of fantastic blogs and website.</p>
<p>We have focused on finding articles based on the following areas of web development:</p>
<h3>CSS 3</h3>
<h3>WordPress</h3>
<h3>Jquery</h3>
<p>Whether you have just started in web development or if you&#8217;re a pro, or if you want to just improve your skills, then these tutorials are for you. We, at Pelfusion, believe that 2010 is the year for all of us to go beyond our boundaries and really focus on working on our skills. CSS 3 and Jquery are the tools you need to take your web design skills and really boost them to the next level. For wordpress, we&#8217;ve included all of the tricks of the trade you need to give your blog that cutting edge that is demanded in this new year. </p>
<p>This article focuses on the BEST tutorials for each field, so we hope you enjoy it and if you have any other tutorials to suggest, please feel free to let us know. </p>
<h2 class=underLineTitle>CSS 3 Tutorials</h2>
<h3>1. <a rel="nofollow" href="http://www.smashingmagazine.com/2010/01/25/the-new-hotness-using-css3-visual-effects/" target="_blank">The New Hotness: Using CSS3 Visual Effects</a></h3>
<p>Not everything in this article is practical, or even bug-free, but it’s a fun primer on what’s in the pipeline for Web design. To get the most from these examples, you’ll have to use Safari 4 or Chrome.</p>
<p><a rel="nofollow" href="http://www.smashingmagazine.com/2010/01/25/the-new-hotness-using-css3-visual-effects/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/css-visual-effects.jpg" alt="Using CSS3 Visual Effects Tutorial" title="Using CSS3 Visual Effects Tutorial" width="540" height="250" class="alignnone size-full wp-image-6458" /></a></p>
<h3>2. <a rel="nofollow" href="http://www.smashingmagazine.com/2009/12/16/stronger-better-faster-design-with-css3/" target="_blank">Stronger, Better, Faster Design with CSS3</a></h3>
<p>Why bother with CSS that has such limited support? It won’t always have limited support, and these articles are all about preparing for the future of web design (and just doing some really cool stuff). </p>
<p><a rel="nofollow" href="http://www.smashingmagazine.com/2009/12/16/stronger-better-faster-design-with-css3/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/fast-css.jpg" alt="Stronger, Better, Faster Design with CSS3 Tutorial" title="Stronger, Better, Faster Design with CSS3 Tutorial" width="540" height="250" class="alignnone size-full wp-image-6461" /></a></p>
<h3>3. <a rel="nofollow" href="http://www.css3.info/liquid-faux-columns-with-background-size" target="_blank">Liquid Columns with Background Size</a></h3>
<p>Until the Advanced Layout and Grid Layout modules are implemented, we have to get by with the existing tricks of the trade. One of those is the use of faux columns, a background image which simulates equal-height columns. </p>
<p><a rel="nofollow" href="http://www.css3.info/liquid-faux-columns-with-background-size/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/bg-size.jpg" alt="Liquid Columns with Background Size Tutorial" title="Liquid Columns with Background Size Tutorial" width="540" height="250" class="alignnone size-full wp-image-6462" /></a></p>
<h3>4. <a rel="nofollow" href="http://www.smashingmagazine.com/2009/12/02/pushing-your-buttons-with-practical-css3/" target="_blank">Pushing your buttons with practical CSS3</a></h3>
<p>In this article, the first of the articles that explore practical (and even far-fetched) implementation of CSS3, we start by applying CSS3 to something we all have to create: buttons.</p>
<p><a rel="nofollow" href="http://www.smashingmagazine.com/2009/12/02/pushing-your-buttons-with-practical-css3/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/super-css-buttons.jpg" alt="Pushing Your Buttons With Practical CSS3 Tutorial" title="Pushing Your Buttons With Practical CSS3 Tutorial" width="540" height="250" class="alignnone size-full wp-image-6463" /></a></p>
<h3>5. <a rel="nofollow" href="http://www.smashingmagazine.com/2009/01/08/push-your-web-design-into-the-future-with-css3/" target="_blank">Push your web design into the future with CSS3</a></h3>
<p>There are exciting new features in the pipeline for Cascading Style Sheets that will allow for an explosion of creativity in Web design. </p>
<h3>6. CSS Trick Hidden Messages</h3>
<p>Here’s a cool little CSS 3 trick for hiding messages within your text. We’re going to be using the ::selection declaration to change the colour of the text on selection. </p>
<h3>7. <a rel="nofollow" href="http://inspectelement.com/tutorials/a-look-at-some-of-the-new-selectors-introduced-in-css3" target="_blank">A look at some of the new selectors introduced in CSS3</a></h3>
<p>Everyone who has been using CSS is immediately familiar with selectors as they are what is used to target elements on a page and style them. CSS3 brings even more options as far as selecting elements goes.</p>
<h3>8. <a rel="nofollow" href="http://24ways.org/2006/rounded-corner-boxes-the-css3-way" target="_blank">Rounded Corner Boxes</a></h3>
<p>If you’ve been doing CSS for a while you’ll know that there are approximately 3,762 ways to create a rounded corner box. The simplest techniques rely on the addition of extra mark-up directly to your page, while the more complicated ones add the mark-up though DOM manipulation.</p>
<h3>9. <a rel="nofollow" href="http://www.css3.info/a-mock-up-interface-using-css3-colour/" target="_blank">A mock up interface using CSS3 colour</a></h3>
<p>&#8220;I’ve included quite a lot of other CSS3 into the mix. There is liberal use of box-shadow to give the allusion of depth on the windows and title bar. Rounded corners have been added to windows.&#8221;</p>
<p><a rel="nofollow" href="http://www.css3.info/a-mock-up-interface-using-css3-colour/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/css-colour.jpg" alt="A mock up interface using CSS3 colour" title="A mock up interface using CSS3 colour" width="540" height="250" class="alignnone size-full wp-image-6471" /></a></p>
<h3>10. <a rel="nofollow" href="http://www.marcofolio.net/webdesign/creating_a_polaroid_photo_viewer_with_css3_and_jquery.html" target="_blank">Creating a Polaroid Photo Viewer with CSS3 &#038; Jquery</a></h3>
<p>By combining the CSS3 Box Shadow and Rotate properties, this effect is relatively easy to create. </p>
<p><a rel="nofollow" href="http://www.marcofolio.net/webdesign/creating_a_polaroid_photo_viewer_with_css3_and_jquery.html"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/polaroid-css.jpg" alt="Creating a Polaroid Photo Viewer with CSS3 &amp; Jquery" title="Creating a Polaroid Photo Viewer with CSS3 &amp; Jquery" width="540" height="250" class="alignnone size-full wp-image-6472" /></a></p>
<h3>11. <a rel="nofollow" href="http://dev.opera.com/articles/view/styling-forms-with-attribute-selectors/" target="_blank">Styling Forms with attribute selectors</a></h3>
<p>In this article, the first of a two-part series, we will look at attribute selectors and how do they allow us to better style portions of a Web documents.</p>
<h3>12. <a rel="nofollow" href="http://css-tricks.com/css3-clock/" target="_blank">Old School Clock with CSS3</a></h3>
<p>Transform:rotate is a new feature of CSS 3 which lets you… well, rotate stuff. Transform will also allow you to scale, skew and translate (move) objects in your web page.</p>
<h3>13. <a rel="nofollow" href="http://www.bloggingcss.com/en/tutorials/the-css3-border-radius-property/" target="_blank">The CSS3 Border Radius Property</a></h3>
<p>One of the CSS3 properties designers have been longing the most for is undoubtedly the border-radius property. With CSS3 border-radius property it’s possible to create the so popular rectangles with rounded corners exclusively via CSS &#8211; no images needed.</p>
<p><a rel="nofollow" href="http://www.bloggingcss.com/en/tutorials/the-css3-border-radius-property/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/border-radius.jpg" alt="The CSS3 Border Radius property Tutorial" title="The CSS3 Border Radius property Tutorial" width="540" height="250" class="alignnone size-full wp-image-6473" /></a></p>
<h3>14. <a rel="nofollow" href="http://spyrestudios.com/how-to-create-a-sexy-vertical-sliding-panel-using-jquery-and-css3/" target="_blank">How to create a sexy vertical sliding panel using jquery and css3</a></h3>
<p>First we’ll create the markup, then the CSS and then we’ll use jQuery to open and close our vertical sliding panel.</p>
<h3>15. <a rel="nofollow" href="http://net.tutsplus.com/tutorials/html-css-techniques/11-classic-css-techniques-made-simple-with-css3/" target="_blank">11 Classic CSS techniques made simple with CSS3</a></h3>
<p>We&#8217;ve all had to achieve some effect that required an extra handful of divs or PNGs. We shouldn&#8217;t be limited to these old techniques when there&#8217;s a new age coming. </p>
<h3>16. <a rel="nofollow" href="http://cssglobe.com/post/6089/3-easy-and-fast-css-techniques-for-faux-image" target="_blank">3 Easy and fast CSS techniques for faux images</a></h3>
<p>This article is a summary of a 3 fast and easy CSS techniques you can use to display only a portion of an image in your content. All techniques explained here actually need only couple of lines of CSS.</p>
<h3>17. <a rel="nofollow" href="http://line25.com/tutorials/create-a-letterpress-effect-with-css-text-shadow" target="_blank">Create a letterpress effect with css text shadow</a></h3>
<p>The letterpress effect is becoming hugely popular in web design, and with a couple of modern browsers now showing support for the text-shadow CSS3 property it’s now simple and easy to create the effect with pure CSS.</p>
<p><a rel="nofollow" href="http://line25.com/tutorials/create-a-letterpress-effect-with-css-text-shadow"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/css-letterpress-effect.jpg" alt="Create a letterpress effect with css text shadow" title="Create a letterpress effect with css text shadow" width="540" height="250" class="alignnone size-full wp-image-6474" /></a></p>
<h3>18. Text Embossing techniques with CSS</h3>
<p>I give you the rules around how to correctly add an embossed effect to any text depending on the colors used.</p>
<h3>19. <a rel="nofollow" href="http://cssglobe.com/lab/textgradient/" target="_blank">CSS Text Gradients</a></h3>
<p>Text Gradient is a simple css trick that allows you to improve your site&#8217;s appearance by putting gradients on system font titles using nothing but css and a png image.</p>
<h2 class=underLineTitle>WordPress Tutorials</h2>
<h3>20. <a rel="nofollow" href="http://www.maxpower.ca/wordpress-hack-creating-a-dynamic-sticky/2005/04/23/" target="_blank">WordPress hack creating a dynamic sticky</a></h3>
<p>For our blog, MaxPower, we needed to have certain articles ’stay at the top’ longer than others.</p>
<h3>21. <a rel="nofollow" href="http://weblogtoolsvideos.com/video/How-to-make-a-wordpress-plugi" target="_blank">How to make a wordpress plugin</a></h3>
<p>A short video tutorial on how to make a wordpress plugin.</p>
<h3>22. <a rel="nofollow" href="http://wpguy.com/tutorials/how-to-make-a-random-post-button/" target="_blank">How to make a random post button</a></h3>
<p>Ever wanted to have a “Random Post” link or button in your sidebar but you don’t know where to start? Well, today I’m going to show you how to do it.</p>
<h3>23. <a rel="nofollow" href="http://www.problogdesign.com/advertising/create-an-auto-stats-page-for-advertisers/" target="_blank">Create an auto stats page for advertisers</a></h3>
<p>I’m going to show you how to sell more ad spaces by adding stats to your WordPress blog’s Advertise page.</p>
<h3>24. <a rel="nofollow" href="http://www.darrenhoyt.com/2007/12/26/multiple-wordpress-page-layouts-in-one-single-template/" target="_blank">Multiple WordPress Page Layouts in one single template</a></h3>
<p>Multiple layouts can always be achieved with custom page templates, but to keep things clean and economical, it’s much better to rely on one global template (”page.php”) if you can get away with it. So how will it work?</p>
<p><a rel="nofollow" href="http://www.darrenhoyt.com/2007/12/26/multiple-wordpress-page-layouts-in-one-single-template/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/multiple-page-layout.jpg" alt="Multiple WordPress Page Layouts in One Single Template" title="Multiple WordPress Page Layouts in One Single Template" width="540" height="250" class="alignnone size-full wp-image-6477" /></a></p>
<h3>25. <a rel="nofollow" href="http://www.jtpratt.com/wordpress-hack-4-create-a-custom-error-404-page/" target="_blank">WordPress Hack: Create a custom error 404 page</a></h3>
<p>In this “Wordpress Hack” you’ll learn how to create a custom 404 Error page for your blog. It’s helps your visitors find what they need, and also helps you not lose visitors!</p>
<h3>26. <a rel="nofollow" href="http://www.jtpratt.com/wordpress-hack-9-translating-your-blog/" target="_blank">Translating your blog</a></h3>
<p>Your blog is online accessible to anyone in the world. Translating blog posts and pages increases your audience and monetization capabilities by at least ten-fold! </p>
<h3>27. <a rel="nofollow" href="http://www.darrenhoyt.com/2007/08/18/styling-your-wordpress-comments/" target="_blank">Styling WordPress Comments</a></h3>
<p>A fun part of customizing WordPress themes is designing a comments format which complements the rest of the site.</p>
<p><a rel="nofollow" href="http://www.darrenhoyt.com/2007/08/18/styling-your-wordpress-comments/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/wordpress-comments.jpg" alt="Styling WordPress Comments" title="Styling WordPress Comments" width="540" height="250" class="alignnone size-full wp-image-6478" /></a></p>
<h3>28. <a rel="nofollow" href="http://www.jtpratt.com/wordpress-hack-20-how-to-setup-a-post-series-in-wordpress/" target="_blank">WordPress Hack: How to setup a post series in wordpress</a></h3>
<p>Organize your wordpress blog by setting up a post series people can follow for specific topics.</p>
<h3>29. <a rel="nofollow" href="http://www.wprecipes.com/how-to-list-scheduled-posts" target="_blank">How to: List scheduled posts</a></h3>
<p>Here’s a good idea to make your readers visit your blog more often, or suscribe to your rss feed: What about listing the title of your scheduled posts? If you’re interested to do so, just read this recipe.</p>
<h3>30. <a rel="nofollow" href="http://www.hongkiat.com/blog/create-a-peel-away-effect-on-website-how-to/" target="_blank">Create a peel away effect on your blog or website</a></h3>
<p>If you are wondering how some webmasters or bloggers create this little peel away effect on the top right corner of their website.</p>
<p><a rel="nofollow" href="http://www.hongkiat.com/blog/create-a-peel-away-effect-on-website-how-to/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/peel-effect.jpg" alt="Create a peel away effect on your blog or website" title="Create a peel away effect on your blog or website" width="540" height="250" class="alignnone size-full wp-image-6479" /></a></p>
<h3>31. <a rel="nofollow" href="http://www.binarymoon.co.uk/2007/07/wordpress-tips-and-tricks-custom-login-page/" target="_blank">Custom Login Page</a></h3>
<p>It&#8217;s cool to have the WordPress login page customized to fit your own website branding. </p>
<h3>32. <a rel="nofollow" href="http://www.designshard.com/video-tutorials/highlight-wordpress-category-when-on-a-single-post-tutorial/" target="_blank">Highlight wordpress category when on a single post tutorial</a></h3>
<p>While making the redesign for this blog I wanted to highlight the category in the navigation when browsing the specified category as well as keeping it highlighted when on the a single post added to that category.</p>
<p><a rel="nofollow" href="http://www.designshard.com/video-tutorials/highlight-wordpress-category-when-on-a-single-post-tutorial/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/category-highlight.jpg" alt="Highlight wordpress category " title="Highlight wordpress category " width="540" height="250" class="alignnone size-full wp-image-6480" /></a></p>
<h3>33. <a rel="nofollow" href="http://www.quickonlinetips.com/archives/2008/07/how-to-add-gravatars-to-wordpress-themes/" target="_blank">How to add gravatars to wordpress themes</a></h3>
<p>Add Gravatars to your WordPress theme. Gravatars are a quick way to add a personal touch to your blog comments by displaying the avatar of the commenter alongside their comment. </p>
<h3>34. <a rel="nofollow" href="http://www.quickonlinetips.com/archives/2008/07/how-to-add-gravatars-to-wordpress-themes/" target="_blank">How to hack together a user contrributed link feed with wordpress comments</a></h3>
<p>Although WordPress has a *very* extensive plug-in collection, now and again things come up for which there are no suitable plug-ins available (yet).</p>
<h3>35. <a rel="nofollow" href="http://www.cre8d-design.com/2006/03/wordpress-tutorial-blog-posts-in-different-columns" target="_blank">Blog Posts in different columns</a></h3>
<p>Recently I had my blog posts divided into three columns with different blog posts appearing in each one. I’ve now switched back to two columns, putting my blog design/tech posts in one and my personal/life posts in the other.</p>
<h3>36. <a rel="nofollow" href="http://www.mattcutts.com/blog/highlight-author-comments-wordpress/" target="_blank">Highlight author comments in wordpress</a></h3>
<p>If a commenter knows the email address of the blog author, she could use the blog owner’s email address in her comment and get her own comment highlighted. </p>
<h3>37. <a rel="nofollow" href="http://weblogs.about.com/od/wordpresstutorialstips/ss/AdSenseBtwnPost.htm" target="_blank">How to add adsense between your blog posts</a></h3>
<p>To display Google AdSense ads (image ads or text ads) between your posts, log into your WordPress dashboard, go into your theme editor screen (see the red circle on the left in the image above to find your editor screen).</p>
<h2 class=underLineTitle>Jquery Tutorials</h2>
<h3>37. <a rel="nofollow" href="http://net.tutsplus.com/tutorials/javascript-ajax/how-to-load-in-and-animate-content-with-jquery/" target="_blank">How to load in and animate content with jquery</a></h3>
<p>In this tutorial we will be taking your average everyday website and enhancing it with jQuery. </p>
<h3>38. <a rel="nofollow" href="http://net.tutsplus.com/tutorials/javascript-ajax/create-a-cool-animated-navigation-with-css-and-jquery/" target="_blank">Create a cool animated navigation with CSS &#038; Jquery</a></h3>
<p>Animation and visual feedback are great ways to assist a user in navigating and interacting with a website. </p>
<p><a rel="nofollow" href="http://net.tutsplus.com/tutorials/javascript-ajax/create-a-cool-animated-navigation-with-css-and-jquery/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/cool-animated-navigation.jpg" alt="Create a cool animated navigation with CSS &amp; Jquery" title="Create a cool animated navigation with CSS &amp; Jquery" width="540" height="250" class="alignnone size-full wp-image-6484" /></a></p>
<h3>39. <a rel="nofollow" href="http://net.tutsplus.com/tutorials/javascript-ajax/creating-a-dynamic-poll-with-jquery-and-php/" target="_blank">Creating a dynamic poll qith jquery and php</a></h3>
<p>In this tutorial we&#8217;ll create a poll using PHP and XHTML, then make use of some jQuery Ajax effects to eliminate the need for a page refresh, and to give it a nice little bit of animation.</p>
<h3>40. Face-book style Lightbox</h3>
<p>Facebox is a jQuery-based, Facebook-style lightbox which can display images, divs, or entire remote pages.</p>
<h3>41. <a rel="nofollow" href="http://net.tutsplus.com/tutorials/javascript-ajax/creating-a-filterable-portfolio-with-jquery/" target="_blank">Creating a filterable portfolio with jquery</a></h3>
<p>In this tutorial, I will show you how to make &#8220;filtering by category&#8221; a little more interesting with just a little bit of jQuery.</p>
<p><a rel="nofollow" href="http://net.tutsplus.com/tutorials/javascript-ajax/creating-a-filterable-portfolio-with-jquery/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/portfolio-tutorial.jpg" alt="Creating a filterable portfolio with jquery" title="Creating a filterable portfolio with jquery" width="540" height="250" class="alignnone size-full wp-image-6485" /></a></p>
<h3>42. <a rel="nofollow" href="http://net.tutsplus.com/tutorials/javascript-ajax/building-a-jquery-powered-tag-cloud/" target="_blank">Building a jquery powered tag cloud</a></h3>
<p>Tag-clouds are easy to do badly; whether from a design perspective or from a code perspective. Thanks to jQuery, it’s also easy to do well.</p>
<h3>43. <a href="http://pelfusion.com/rec/photoshoptutorials" target="_blank">Jquery Hover Subtag Cloud</a></h3>
<p>Here is a new approach: Using jQuery  to reduce the size of the tag cloud that you have on your sites, so our demo will introduce &#8220;Hover Sub Tags&#8221; under each main Tag.</p>
<p><a rel="nofollow" href="http://noupe.com/examples/tagcloud/tag-cloud.html"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/jquery-clouds.jpg" alt="Jquery Hover Subtag Cloud" title="Jquery Hover Subtag Cloud" width="540" height="250" class="alignnone size-full wp-image-6486" /></a></p>
<h3>44. <a rel="nofollow" href="http://css-tricks.com/learning-jquery-fading-menu-replacing-content/" target="_blank">Fading Menu – Replacing Content</a></h3>
<p>The more I learn about jQuery, the more natural it feels. Probably because of how closely tied to CSS it is. </p>
<p><a rel="nofollow" href="http://css-tricks.com/learning-jquery-fading-menu-replacing-content/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/jquery-menu.jpg" alt="Fading Menu – Replacing Content" title="Fading Menu – Replacing Content" width="540" height="172" class="alignnone size-full wp-image-6487" /></a></p>
<h3>45. <a rel="nofollow" href="http://net.tutsplus.com/videos/screencasts/create-a-photo-admin-site-using-php-and-jquery/" target="_blank">Create a photo admin site using php &#038; jquery</a></h3>
<p>I&#8217;m pleased to present you with part one of a two part series on creating a photo site using PHP, jQuery, and AJAX. Originally, I intended to fit the entire tutorial into one screencast, but that quickly became a pipe dream as I realized that there was simply too much to cover</p>
<h3>46. <a rel="nofollow" href="http://net.tutsplus.com/tutorials/javascript-ajax/create-an-amazoncom-books-widget-with-jquery-and-xml/" target="_blank">Create an amazon.com books widget with jquery and xml</a></h3>
<p>With some custom JavaScript and jQuery magic you can create some interesting widgets. A good way to demonstrate this functionality is by building a browsable Amazon.com books widget.</p>
<h3>47. <a rel="nofollow" href="http://net.tutsplus.com/tutorials/javascript-ajax/jquery-style-switcher/" target="_blank">jQuery Style Switcher</a></h3>
<p>In this tutorial I will be showing you how to create a style switcher using jQuery and PHP. </p>
<h3>48. <a rel="nofollow" href="http://net.tutsplus.com/tutorials/javascript-ajax/build-a-top-panel-with-jquery/" target="_blank">Build a top panel login with jquery</a></h3>
<p>One struggle that still remains today in web design is displaying all of the redundant information on every page. For example, a login form. What if there was a way to easily make the content accessible on every page.</p>
<h3>49. <a rel="nofollow" href="http://net.tutsplus.com/tutorials/wordpress/adding-form-validation-to-wordpress-comments-using-jquery/" target="_blank">Adding form validation to wordpress comments using jquery</a></h3>
<p>In this tutorial I&#8217;ll show you how to use jQuery to do some instant checking on an example comment form.</p>
<h3>50. <a rel="nofollow" href="http://css-tricks.com/improved-current-field-highlighting-in-forms/" target="_blank">Improved Current Field Highlighting in forms</a></h3>
<p>As a matter of usability and aesthetics, it is a good thing to add some kind of visual feedback on web forms to indicate the currently active (or “focused“) field. </p>
<h3>51. <a rel="nofollow" href="http://snook.ca/archives/javascript/jquery_plugin/" target="_blank">Developing a Jquery Plugin</a></h3>
<p>First of all, you might ask yourself why you&#8217;d want to develop a plugin. The first and best reason is the ability to maintain chainability.</p>
<h3>52. <a rel="nofollow" href="http://net.tutsplus.com/tutorials/javascript-ajax/build-a-better-tooltip-with-jquery-awesomeness/" target="_blank">Build a better tooltip with jquery awesomeness</a></h3>
<p>In this tutorial I&#8217;m going to show you how to quickly write a jQuery plugin that will replace the typical browser tooltip with something a little flashier.</p>
<h3>53. <a rel="nofollow" href="http://buildinternet.com/2009/08/crafting-an-animated-postcard-with-jquery/" target="_blank">Crafting an animated postcard with Jquery</a></h3>
<p>In this tutorial we will learn the basics of setting up a continuous animation which can be applied pretty much anywhere.</p>
<p><a rel="nofollow" href="http://buildinternet.com/2009/08/crafting-an-animated-postcard-with-jquery/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/post-card.jpg" alt="Crafting an animated postcard with Jquery" title="Crafting an animated postcard with Jquery" width="540" height="250" class="alignnone size-full wp-image-6488" /></a></p>
<h3>54. <a rel="nofollow" href="http://www.devirtuoso.com/2009/07/how-to-build-an-animated-header-in-jquery/" target="_blank">60.	How to build an animated header in jquery</a></h3>
<p>We are going to build a header that animates it’s background.  We will also encase the header in shadow for the little extra dramatic effect.</p>
<p><strong>Related Posts:</strong></p><ol>
<li><a href='http://pelfusion.com/tutorials/25-excellent-collection-of-jquery-tutorials/' rel='bookmark' title='25 Excellent Collection Of jQuery Tutorials'>25 Excellent Collection Of jQuery Tutorials</a> <small>According to jQuery dot com, &#8220;jQuery is a fast and...</small></li>
<li><a href='http://pelfusion.com/know-how/20-tutorials-to-develop-wordpress-plugin/' rel='bookmark' title='20 Tutorials to Develop WordPress Plugin'>20 Tutorials to Develop WordPress Plugin</a> <small>WordPress has become more important application for bloggers and even...</small></li>
<li><a href='http://pelfusion.com/know-how/tutorials-and-tips-on-building-a-twitter-application/' rel='bookmark' title='Tutorials And Tips On Building A Twitter Application'>Tutorials And Tips On Building A Twitter Application</a> <small>Almost every user on internet knows about twitter. It&#8217;s getting...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://pelfusion.com/tutorials/54-awesome-tutorials-to-satisfy-the-appetite-of-any-web-developer/feed/</wfw:commentRss>
		<slash:comments>18</slash:comments>
		</item>
		<item>
		<title>19 Popular CSS Tools For Web Developers and Designers</title>
		<link>http://pelfusion.com/tools/19-popular-css-tools-for-web-developers-and-designers/</link>
		<comments>http://pelfusion.com/tools/19-popular-css-tools-for-web-developers-and-designers/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 15:03:24 +0000</pubDate>
		<dc:creator>Ferman Aziz</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[development]]></category>

		<guid isPermaLink="false">http://pelfusion.com/?p=6415</guid>
		<description><![CDATA[<p><a href="http://pelfusion.com/tools/19-popular-css-tools-for-web-developers-and-designers/">19 Popular CSS Tools For Web Developers and Designers</a> is a post from <a href="http://pelfusion.com">PelFusion</a></p><p>Even if you know CSS very well some tasks take lot of time to complete and for this there are lots of tools available using which you can complete your projects quicker. These tools can help you in creating forms, buttons, curve boxes, pages and lots of different CSS generated stuff. Today we have collected [...]</p>
<strong>Related Posts:</strong><ol>
<li><a href='http://pelfusion.com/tools/20-helpful-color-tools-for-designers/' rel='bookmark' title='20+ Helpful Color Tools For Designers'>20+ Helpful Color Tools For Designers</a> <small>Tools are always very handy for designers. To get their...</small></li>
<li><a href='http://pelfusion.com/tools/26-worth-knowing-php-tools-resources-for-web-developers/' rel='bookmark' title='26 Worth Knowing PHP Tools &amp; Resources For Web Developers'>26 Worth Knowing PHP Tools &#038; Resources For Web Developers</a> <small>Web development is not that much difficult now a days....</small></li>
<li><a href='http://pelfusion.com/tools/20-web-applications-and-tools-for-designers/' rel='bookmark' title='20+ Web Applications and Tools for Designers'>20+ Web Applications and Tools for Designers</a> <small>There are lots of helpful tools and web applications to...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://pelfusion.com/tools/19-popular-css-tools-for-web-developers-and-designers/">19 Popular CSS Tools For Web Developers and Designers</a> is a post from <a href="http://pelfusion.com">PelFusion</a></p><p>Even if you know CSS very well some tasks take lot of time to complete and for this there are <a href="http://pelfusion.com/tools/25-must-have-iphone-apps-for-graphic-designers/">lots of tools</a> available using which you can complete your projects quicker. These tools can help you in creating forms, buttons, curve boxes, pages and lots of different CSS generated stuff.</p>
<p>Today we have collected <strong>19 popular CSS tools</strong>, which will make your life easier. Don&#8217;t forget we are here to help our design community, if i missed any good tool don&#8217;t hesitate to tell us.</p>
<h3>1. <a rel="nofollow" href="http://csstypeset.com/" target="_blank">CSS Type Generator</a></h3>
<p>CSS Type Set is a hands-on typography tool allowing designers and developers to interactively test and learn how to style their web content.</p>
<p><a rel="nofollow" href="http://csstypeset.com/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/csstypeset.jpg" alt="CSS Type Generator" title="CSS Type Generator" width="540" height="274" class="alignnone size-full wp-image-6417 whiteBrdr" /></a></p>
<h3>2. <a rel="nofollow" href="http://drawter.com/" target="_blank">Drawter</a></h3>
<p>This tool gives you the possibility to draw your website’s code. </p>
<p><a rel="nofollow" href="http://drawter.com/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/Drawter.jpg" alt="Drawter CSS Tool" title="Drawter CSS Tool" width="540" height="202" class="alignnone size-full wp-image-6420 whiteBrdr" /></a></p>
<h3>3. <a rel="nofollow" href="http://csssprites.com/" target="_blank">CSS Sprite Generator</a></h3>
<p>Very helpful tool to generate sprites for your web projects.</p>
<p><a rel="nofollow" href="http://csssprites.com/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/css-sprie-generator.jpg" alt="CSS Sprite Generator" title="CSS Sprite Generator" width="540" height="240" class="alignnone size-full wp-image-6421 whiteBrdr" /></a></p>
<h3>4. <a rel="nofollow" href="http://seaneill.com/deploy/" target="_blank">Deploy</a></h3>
<p>&#8220;Whenever starting a web project, I used to always begin with the tedious process of creating the basic framework structure for the site. This included creating folders for CSS and images, downloading and including jQuery, and adding a CSS reset, among other things.&#8221;</p>
<p><a rel="nofollow" href="http://seaneill.com/deploy/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/deploy.jpg" alt="Deploy CSS Tool" title="Deploy CSS Tool" width="540" height="257" class="alignnone size-full wp-image-6427 whiteBrdr" /></a></p>
<h3>5. <a rel="nofollow" href="http://www.cssdrive.com/index.php/main/csscompressor/" target="_blank">CSS Compressor</a></h3>
<p>Use this utility to compress your CSS to increase loading speed and save on bandwidth as well. You can choose from three levels of compression, depending on how legible you want the compressed CSS to be versus degree of compression.</p>
<p><a rel="nofollow" href="http://www.cssdrive.com/index.php/main/csscompressor/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/css-composer.jpg" alt="CSS Compressor" title="CSS Compressor" width="540" height="274" class="alignnone size-full wp-image-6428 whiteBrdr" /></a></p>
<h3>6. <a rel="nofollow" href="http://bgg.kematzy.com/" target="_blank">Blueprint Grid CSS Generator</a></h3>
<p>This tool will help you generate more flexible versions of Blueprint&#8217;s grid.css and compressed.css and grid.png files. Whether you prefer 8, 10,16 or 24 columns in your design, this generator now enables you that flexibility with Blueprint.</p>
<p><a rel="nofollow" href="http://bgg.kematzy.com/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/blueprint-css-grid-generator.jpg" alt="Blueprint Grid CSS Generator" title="Blueprint Grid CSS Generator" width="540" height="274" class="alignnone size-full wp-image-6429 whiteBrdr" /></a></p>
<h3>7. <a rel="nofollow" href="http://tools.dynamicdrive.com/button/" target="_blank">Button Maker Online</a></h3>
<p>Use this online tool to easily and visually create those popular &#8220;XHTML valid&#8221; micro buttons (80&#215;15). You can also opt for the larger 88&#215;31 button instead.</p>
<p><a rel="nofollow" href="http://tools.dynamicdrive.com/button/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/css-button-maker.jpg" alt="Button Maker Online" title="Button Maker Online" width="540" height="274" class="alignnone size-full wp-image-6431 whiteBrdr" /></a></p>
<h3>8. <a rel="nofollow" href="http://csscreator.com/version2/pagelayout.php" target="_blank">CSS Layout Generator</a></h3>
<p>This generator will create a fluid or fixed width floated column layout, with up to 3 columns and with header and footer. Values can be specified in either pixels, ems or percentages. </p>
<p><a rel="nofollow" href="http://csscreator.com/version2/pagelayout.php"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/css-creator.jpg" alt="CSS Layout Generator" title="CSS Layout Generator" width="540" height="274" class="alignnone size-full wp-image-6432 whiteBrdr" /></a></p>
<h3>9. <a rel="nofollow" href="http://www.cssfly.net/" target="_blank">CSSFly</a></h3>
<p>CSSFly is a web 2.0 tool for easy editing websites direct and in real-time in your browser. Simply edit the (X)HTML-code and the external Style-Sheet files.</p>
<p><a rel="nofollow" href="http://www.cssfly.net/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/cssfly.jpg" alt="CSSFly CSS Tool" title="CSSFly CSS Tool" width="540" height="274" class="alignnone size-full wp-image-6433 whiteBrdr" /></a></p>
<h3>10. <a rel="nofollow" href="http://www.devdude.com/tools/css/button_text/" target="_blank">CSS Button &#038; Text Field Generator</a></h3>
<p>Very helpful tool to create buttons and text fields.</p>
<p><a rel="nofollow" href="http://www.devdude.com/tools/css/button_text/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/css-buttons-forms.jpg" alt="CSS Button &amp; Text Field Generator" title="CSS Button &amp; Text Field Generator" width="540" height="274" class="alignnone size-full wp-image-6434 whiteBrdr" /></a></p>
<h3>11. <a rel="nofollow" href="http://www.cssdrive.com/imagepalette/" target="_blank">CSS Colors Palette Generator</a></h3>
<p>Upload an image to generate a color palette based on the image&#8217;s primary colors. Useful for quickly grabbing a particular color within an image for inspiration.</p>
<p><a rel="nofollow" href="http://www.cssdrive.com/imagepalette/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/CSS-colors-palette.jpg" alt="CSS Colors Palette Generator" title="CSS Colors Palette Generator" width="540" height="241" class="alignnone size-full wp-image-6435 whiteBrdr" /></a></p>
<h3>12. <a rel="nofollow" href="http://tools.sitepoint.com/spanky/index.php" target="_blank">Spanky Corners</a></h3>
<p>&#8216;Spanky Corners&#8217; is an experimental technique for using only CSS to produce &#8217;round-cornered content boxes&#8217; with semantically pure markup. It does not require JavaScript to work</p>
<p><a rel="nofollow" href="http://tools.sitepoint.com/spanky/index.php"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/spanky-corner.jpg" alt="Spanky Corners" title="Spanky Corners" width="540" height="274" class="alignnone size-full wp-image-6436 whiteBrdr" /></a></p>
<h3>13. <a rel="nofollow" href="http://css-color-replace.orca-multimedia.de/" target="_blank">Replace CSS Colors Editor</a></h3>
<p>Change the entire color scheme of your site with this CSS Color Editor.</p>
<p><a rel="nofollow" href="http://css-color-replace.orca-multimedia.de/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/css-color-editor.jpg" alt="Replace CSS Colors Editor" title="Replace CSS Colors Editor" width="540" height="274" class="alignnone size-full wp-image-6437 whiteBrdr" /></a></p>
<h3>14. <a rel="nofollow" href="http://www.theboxoffice.be/" target="_blank">The Box Office</a></h3>
<p>The Box Office lets you wrap/float/contour text around freeform images using CSS for usage in (X)HTML pages.</p>
<p><a rel="nofollow" href="http://www.theboxoffice.be/index.php?op=theboxoffice"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/the-box-office.jpg" alt="The Box Office CSS Tool" title="The Box Office CSS Tool" width="540" height="274" class="alignnone size-full wp-image-6438 whiteBrdr" /></a></p>
<h3>15. <a rel="nofollow" href="http://riddle.pl/emcalc/" target="_blank">EM Calculator</a></h3>
<p>Em Calculator is a small JavaScript tool which helps making scalable and accessible CSS design.</p>
<p><a rel="nofollow" href="http://riddle.pl/emcalc/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/em-calculator.jpg" alt="EM Calculator" title="EM Calculator" width="540" height="196" class="alignnone size-full wp-image-6439 whiteBrdr" /></a></p>
<h3>16. <a rel="nofollow" href="http://www.positioniseverything.net/articles/pie-maker/pagemaker_form.php" target="_blank">Page Maker – The Generator Form</a></h3>
<p>CSS Source Ordered Variable Border 1-3 Columned Page Maker.</p>
<p><a rel="nofollow" href="http://www.positioniseverything.net/articles/pie-maker/pagemaker_form.php"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/css-page-maker.jpg" alt="Page Maker – The Generator Form" title="Page Maker – The Generator Form" width="540" height="274" class="alignnone size-full wp-image-6440 whiteBrdr" /></a></p>
<h3>17. <a rel="nofollow" href="http://www.cleancss.com/" target="_blank">Clean CSS</a></h3>
<p>A tool to optimize and format your CSS.</p>
<p><a rel="nofollow" href="http://www.cleancss.com/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/css-clean.jpg" alt="Clean CSS" title="Clean CSS" width="540" height="274" class="alignnone size-full wp-image-6441 whiteBrdr" /></a></p>
<h3>18. <a rel="nofollow" href="http://jigsaw.w3.org/css-validator/" target="_blank">W3C CSS Validation</a></h3>
<p>Check Cascading Style Sheets (CSS) and (X)HTML documents with style sheets </p>
<p><a rel="nofollow" href="http://jigsaw.w3.org/css-validator/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/css-validation.jpg" alt="W3C CSS Validation" title="W3C CSS Validation" width="540" height="274" class="alignnone size-full wp-image-6442 whiteBrdr" /></a></p>
<h3>19. <a rel="nofollow" href="http://www.accessify.com/tools-and-wizards/developer-tools/markup-maker/" target="_blank">Markup Maker</a></h3>
<p>Markup Maker takes a simple list of page ids that you enter and converts it to a valid XHTML/HTML document (scaffolding, if you like). Now includes HTML5 support</p>
<p><a rel="nofollow" href="http://www.accessify.com/tools-and-wizards/developer-tools/markup-maker/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2010/02/markupmaker.jpg" alt="Markup Maker" title="Markup Maker" width="540" height="274" class="alignnone size-full wp-image-6443 whiteBrdr" /></a></p>
<p><strong>Related Posts:</strong></p><ol>
<li><a href='http://pelfusion.com/tools/20-helpful-color-tools-for-designers/' rel='bookmark' title='20+ Helpful Color Tools For Designers'>20+ Helpful Color Tools For Designers</a> <small>Tools are always very handy for designers. To get their...</small></li>
<li><a href='http://pelfusion.com/tools/26-worth-knowing-php-tools-resources-for-web-developers/' rel='bookmark' title='26 Worth Knowing PHP Tools &amp; Resources For Web Developers'>26 Worth Knowing PHP Tools &#038; Resources For Web Developers</a> <small>Web development is not that much difficult now a days....</small></li>
<li><a href='http://pelfusion.com/tools/20-web-applications-and-tools-for-designers/' rel='bookmark' title='20+ Web Applications and Tools for Designers'>20+ Web Applications and Tools for Designers</a> <small>There are lots of helpful tools and web applications to...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://pelfusion.com/tools/19-popular-css-tools-for-web-developers-and-designers/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Tutorials And Tips On Building A Twitter Application</title>
		<link>http://pelfusion.com/know-how/tutorials-and-tips-on-building-a-twitter-application/</link>
		<comments>http://pelfusion.com/know-how/tutorials-and-tips-on-building-a-twitter-application/#comments</comments>
		<pubDate>Thu, 16 Jul 2009 20:15:48 +0000</pubDate>
		<dc:creator>Ferman Aziz</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://pelfusion.com/?p=2754</guid>
		<description><![CDATA[<p><a href="http://pelfusion.com/know-how/tutorials-and-tips-on-building-a-twitter-application/">Tutorials And Tips On Building A Twitter Application</a> is a post from <a href="http://pelfusion.com">PelFusion</a></p><p>Almost every user on internet knows about twitter. It&#8217;s getting popular day by day, many companies and developers are also producing twitter applications using twitter API. In my early post i have mentioned popular twitter applications which you can visit here. In this post i have collected some tutorials and resources for developers on building [...]</p>
<strong>Related Posts:</strong><ol>
<li><a href='http://pelfusion.com/tools/30-twitter-tools-for-managing-followers/' rel='bookmark' title='30 Twitter Tools For Managing Followers'>30 Twitter Tools For Managing Followers</a> <small>To manage your followers or friends on twitter is not...</small></li>
<li><a href='http://pelfusion.com/know-how/20-tutorials-to-develop-wordpress-plugin/' rel='bookmark' title='20 Tutorials to Develop WordPress Plugin'>20 Tutorials to Develop WordPress Plugin</a> <small>WordPress has become more important application for bloggers and even...</small></li>
<li><a href='http://pelfusion.com/tutorials/30-excellent-brochure-designing-tutorials-plus-tips/' rel='bookmark' title='30 Excellent Brochure Designing Tutorials Plus Tips'>30 Excellent Brochure Designing Tutorials Plus Tips</a> <small>Wikipedia says &#8220;A brochure or pamphlet is a leaflet advertisement....</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://pelfusion.com/know-how/tutorials-and-tips-on-building-a-twitter-application/">Tutorials And Tips On Building A Twitter Application</a> is a post from <a href="http://pelfusion.com">PelFusion</a></p><p>Almost every user on internet knows about twitter. It&#8217;s getting popular day by day, many companies and developers are also producing twitter applications using twitter API. In my early post i have mentioned popular twitter applications which you can visit <a href="http://pelfusion.com/showcases/50-web-20-twitter-applications-sites/">here</a>.</p>
<p>In this post i have collected some <strong>tutorials and resources for developers on building a twitter application</strong>.</p>
<h3>Building a Twitter Application</h3>
<h6 class="title"><a rel="nofollow" href="http://www.netbeans.org/kb/docs/websvc/twitter-swing.html" target="_blank">Creating a Graphical Client for Twitter</a></h6>
<p>In this tutorial, you use the NetBeans IDE to create a simple, graphical, REST-based client that displays Twitter public timeline messages and lets you view and update your Twitter status. The application uses Swing and NetBeans IDE&#8217;s support for Twitter&#8217;s SaaS operations.</p>
<div id="attachment_2757" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://www.netbeans.org/kb/docs/websvc/twitter-swing.html"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/07/netbeans.jpg" alt="NetBeans IDE to Create Application" title="NetBeans IDE to Create Application" width="480" height="150" class="size-full wp-image-2757" /></a><p class="wp-caption-text">NetBeans IDE to Create Application</p></div>
<h6 class="title"><a rel="nofollow" href="http://aralbalkan.com/999" target="_blank">How to Build Your First Flash Twitter Mashup</a></h6>
<p>You can try out the SWX Twitter API methods online right this moment by using the SWX Service Explorer.</p>
<div id="attachment_2760" class="wp-caption alignnone" style="width: 490px"><a href="http://cdn.pelfusion.com/wp-content/uploads/2009/07/twitter-mashup.jpg"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/07/twitter-mashup.jpg" alt="Flash Twitter mashup in four lines of code!" title="Flash Twitter mashup in four lines of code!" width="480" height="150" class="size-full wp-image-2760" /></a><p class="wp-caption-text">Flash Twitter mashup in four lines of code!</p></div>
<h6 class="title"><a rel="nofollow" href="http://www.dreamincode.net/forums/showtopic108559.htm" target="_blank">Building a Twitter Bot</a></h6>
<p>Developer says, &#8220;&#8230;So, to build a Twitter bot, isn&#8217;t hard, &#038; by the end of this tutorial, hopefully I will have successfully conveyed to you how to get your own automated Twitter service up &#038; running.&#8221;</p>
<div id="attachment_2763" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://www.dreamincode.net/forums/showtopic108559.htm"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/07/twitter-bot.jpg" alt="Twitter Bot with Twitters API functionality" title="Twitter Bot with Twitters API functionality" width="480" height="150" class="size-full wp-image-2763" /></a><p class="wp-caption-text">Twitter Bot with Twitters API functionality</p></div>
<h6 class="title"><a rel="nofollow" href="http://davanum.wordpress.com/2007/11/21/twitter-client-for-android-how-to-make-xml-over-http-calls/" target="_blank">Twitter Client for Android</a></h6>
<p>Twitter Client for Android (How to make XML over HTTP calls).</p>
<div id="attachment_2764" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://davanum.wordpress.com/2007/11/21/twitter-client-for-android-how-to-make-xml-over-http-calls/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/07/android.jpg" alt="Create a Twitter client for Android" title="Create a Twitter client for Android" width="480" height="150" class="size-full wp-image-2764" /></a><p class="wp-caption-text">Create a Twitter client for Android</p></div>
<h6 class="title"><a rel="nofollow" href="http://www.switchonthecode.com/tutorials/building-a-twitter-extension-for-google-chrome" target="_blank">Building a Twitter Extension for Google Chrome</a></h6>
<p>Below is a screenshot of what developer will show to build. It&#8217;s simply a button that lives in Chrome&#8217;s toolbar. </p>
<div id="attachment_2766" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://www.switchonthecode.com/tutorials/building-a-twitter-extension-for-google-chrome"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/07/chrome-extension.jpg" alt="Twitter Extension for Google Chrome" title="Twitter Extension for Google Chrome" width="480" height="150" class="size-full wp-image-2766" /></a><p class="wp-caption-text">Twitter Extension for Google Chrome</p></div>
<h6 class="title"><a rel="nofollow" href="http://www.peterkrantz.com/2008/twitter-client-with-fluid-and-jquery/" target="_blank">Building your Own Twitter Client With Fluid and jQuery</a></h6>
<p>Developer says, &#8220;I wanted to try out Fluid, the Prism-like app to contain web apps in their own process/window, to see if it is possible to build a complete open source ad-free twitter client in a single web page only using javascript and HTML.&#8221;</p>
<div id="attachment_2768" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://www.peterkrantz.com/2008/twitter-client-with-fluid-and-jquery/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/07/twitter-client.jpg" alt="Twitter client with Fluid and jQuery" title="Twitter client with Fluid and jQuery" width="480" height="150" class="size-full wp-image-2768" /></a><p class="wp-caption-text">Twitter client with Fluid and jQuery</p></div>
<h6 class="title"><a rel="nofollow" href="http://www.devx.com/webdev/Article/40511?trk=DXRSS_LATEST" target="_blank">Building An Application With the Twitter API</a></h6>
<p>Twitter is a new kind of publishing platform, and the simple, straightforward API for this platform is easy to use with a variety of tools and programming languages.</p>
<div id="attachment_2771" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://www.devx.com/webdev/Article/40511?trk=DXRSS_LATEST"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/07/twitter-api.jpg" alt="Application with the Twitter API" title="Application with the Twitter API" width="480" height="150" class="size-full wp-image-2771" /></a><p class="wp-caption-text">Application with the Twitter API</p></div>
<h6 class="title">How to Build a Twitter Agent</h6>
<p>In this tutorial you will build an actual useful Twitter Service that will allow you to track the Blogosphere. In the process you will get hands on programming experience with Ruby, DRb, Twitter and Jabber.</p>
<div id="attachment_2774" class="wp-caption alignnone" style="width: 490px"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/07/twitter-agent.jpg" alt="Build a Twitter Agent" title="Build a Twitter Agent" width="480" height="150" class="size-full wp-image-2774" /><p class="wp-caption-text">Build a Twitter Agent</p></div>
<h6 class="title"><a rel="nofollow" href="http://www.codingthewheel.com/archives/codingthetweet" target="_blank">Building a Custom Branded Twitter Application</a></h6>
<p>One of the clever but often-overlooked features of Twitter is that it upgrades these custom applications to first-class citizens within the Twitterverse by tagging each tweet with the hyperlinked name of the tool.</p>
<div id="attachment_2777" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://www.codingthewheel.com/archives/codingthetweet"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/07/coding-tweet.jpg" alt="Coding the Tweet" title="Coding the Tweet" width="480" height="150" class="size-full wp-image-2777" /></a><p class="wp-caption-text">Coding the Tweet</p></div>
<h6 class="title"><a rel="nofollow" href="http://www.dotnetcurry.com/ShowArticle.aspx?ID=289&#038;AspxAutoDetectCookieSupport=1" target="_blank">Build a Simple Twitter client using Silverlight 2</a></h6>
<p>In this tutorial developer will show you how to build a simple Twitter client in Silverlight. You will also learn the shortcomings of WebClient Class in Silverlight. </p>
<div id="attachment_2781" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://www.dotnetcurry.com/ShowArticle.aspx?ID=289&#038;AspxAutoDetectCookieSupport=1"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/07/twitter-silverlight.jpg" alt="Twitter client using Silverlight 2" title="Twitter client using Silverlight 2" width="480" height="150" class="size-full wp-image-2781" /></a><p class="wp-caption-text">Twitter client using Silverlight 2</p></div>
<p><br/></p>
<h3>Twitter Development Links &#038; Resources</h3>
<h6 class="title"><a rel="nofollow" href="http://apiwiki.twitter.com/" target="_blank">Twitter API Wiki</a></h6>
<div id="attachment_2782" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://apiwiki.twitter.com/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/07/twitter-wiki.jpg" alt="Twitter API Wiki" title="Twitter API Wiki" width="480" height="150" class="size-full wp-image-2782" /></a><p class="wp-caption-text">Twitter API Wiki</p></div>
<h6 class="title"><a rel="nofollow" href="http://www.newwebplatform.com/tips-and-tutorials/Twitter/" target="_blank">Twitter Api &#8211; Tips &#038; Tutorials</a></h6>
<div id="attachment_2783" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://www.newwebplatform.com/tips-and-tutorials/Twitter"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/07/twitter-api-tutorials.jpg" alt="Twitter api " title="Twitter api " width="480" height="150" class="size-full wp-image-2783" /></a><p class="wp-caption-text">Twitter api </p></div>
<h6 class="title"><a rel="nofollow" href="http://www.smashingmagazine.com/2009/03/02/twitter-web-designer-and-developer-toolbox-api-and-tutorials/" target="_blank">50 Twitter Tools and Tutorials For Designers and Developers</a></h6>
<div id="attachment_2786" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://www.smashingmagazine.com/2009/03/02/twitter-web-designer-and-developer-toolbox-api-and-tutorials/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/07/twitter-dev-links.jpg" alt="Tools and Tutorials for Designers and Developers" title="Tools and Tutorials for Designers and Developers" width="480" height="150" class="size-full wp-image-2786" /></a><p class="wp-caption-text">Tools and Tutorials for Designers and Developers</p></div>
<p><strong>Related Posts:</strong></p><ol>
<li><a href='http://pelfusion.com/tools/30-twitter-tools-for-managing-followers/' rel='bookmark' title='30 Twitter Tools For Managing Followers'>30 Twitter Tools For Managing Followers</a> <small>To manage your followers or friends on twitter is not...</small></li>
<li><a href='http://pelfusion.com/know-how/20-tutorials-to-develop-wordpress-plugin/' rel='bookmark' title='20 Tutorials to Develop WordPress Plugin'>20 Tutorials to Develop WordPress Plugin</a> <small>WordPress has become more important application for bloggers and even...</small></li>
<li><a href='http://pelfusion.com/tutorials/30-excellent-brochure-designing-tutorials-plus-tips/' rel='bookmark' title='30 Excellent Brochure Designing Tutorials Plus Tips'>30 Excellent Brochure Designing Tutorials Plus Tips</a> <small>Wikipedia says &#8220;A brochure or pamphlet is a leaflet advertisement....</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://pelfusion.com/know-how/tutorials-and-tips-on-building-a-twitter-application/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>26 Worth Knowing PHP Tools &amp; Resources For Web Developers</title>
		<link>http://pelfusion.com/tools/26-worth-knowing-php-tools-resources-for-web-developers/</link>
		<comments>http://pelfusion.com/tools/26-worth-knowing-php-tools-resources-for-web-developers/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 22:19:20 +0000</pubDate>
		<dc:creator>Ferman Aziz</dc:creator>
				<category><![CDATA[Tools]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[resources]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://pelfusion.com/?p=2560</guid>
		<description><![CDATA[<p><a href="http://pelfusion.com/tools/26-worth-knowing-php-tools-resources-for-web-developers/">26 Worth Knowing PHP Tools &#038; Resources For Web Developers</a> is a post from <a href="http://pelfusion.com">PelFusion</a></p><p>Web development is not that much difficult now a days. The important is how you do it and how much time you take to complete the task. Web developers do not have to start over from scratch all the time when there are lots of free tools making advanced Web Development a easier. In this [...]</p>
<strong>Related Posts:</strong><ol>
<li><a href='http://pelfusion.com/tools/20-helpful-color-tools-for-designers/' rel='bookmark' title='20+ Helpful Color Tools For Designers'>20+ Helpful Color Tools For Designers</a> <small>Tools are always very handy for designers. To get their...</small></li>
<li><a href='http://pelfusion.com/tools/25-important-web-design-tools/' rel='bookmark' title='25 Important Web Design Tools'>25 Important Web Design Tools</a> <small>There are lots of web design tools available on internet,...</small></li>
<li><a href='http://pelfusion.com/tools/30-twitter-tools-for-managing-followers/' rel='bookmark' title='30 Twitter Tools For Managing Followers'>30 Twitter Tools For Managing Followers</a> <small>To manage your followers or friends on twitter is not...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://pelfusion.com/tools/26-worth-knowing-php-tools-resources-for-web-developers/">26 Worth Knowing PHP Tools &#038; Resources For Web Developers</a> is a post from <a href="http://pelfusion.com">PelFusion</a></p><p>Web development is not that much difficult now a days. The important is how you do it and how much time you take to complete the task. Web developers do not have to start over from scratch all the time when there are lots of free tools making advanced Web Development a easier. </p>
<p>In this post i have compiled tools and resources for php developers which will make their life easier.</p>
<h6 class="title">1. <a rel="nofollow" href="http://www.symfony-project.org" target="_blank">Symfony</a></h6>
<p>Symfony is a full-stack framework, a library of cohesive classes written in PHP.</p>
<div id="attachment_2567" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://www.symfony-project.org"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/07/symfony.jpg" alt="Symfony Project" title="Symfony Project" width="480" height="150" class="size-full wp-image-2567" /></a><p class="wp-caption-text">Symfony Project</p></div>
<h6 class="title">2. <a rel="nofollow" href="http://www.modxcms.com/" target="_blank">MODx</a></h6>
<p>MODx helps you take control of your online content. An Open Source PHP application framework, it frees you to build sites exactly how you want and make them 100% yours.</p>
<div id="attachment_2570" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://modxcms.com/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/07/modx.jpg" alt="Modx CMS" title="Modx CMS" width="480" height="150" class="size-full wp-image-2570" /></a><p class="wp-caption-text">Modx CMS</p></div>
<h6 class="title">3. <a rel="nofollow" href="http://www.phpobjectgenerator.com/" target="_blank">PHP Object Generator</a></h6>
<p>PHP Object Generator, (POG) is an open source which automatically generates clean &#038; tested Object Oriented code for your PHP4/PHP5 application.</p>
<div id="attachment_2571" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://www.phpobjectgenerator.com/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/07/pog.jpg" alt="PHP Object Generator" title="PHP Object Generator" width="480" height="150" class="size-full wp-image-2571" /></a><p class="wp-caption-text">PHP Object Generator</p></div>
<h6 class="title">4. <a rel="nofollow" href="http://www.zend.com/en/products/studio/" target="_blank">Zend Studio</a></h6>
<p>Zend Studio for Eclipse combines proven capabilities to create the world’s most powerful IDE for Rich Internet Applications (RIAs).</p>
<div id="attachment_2572" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://www.zend.com/en/products/studio/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/07/zendstudio.jpg" alt="Zend Studio" title="Zend Studio" width="480" height="150" class="size-full wp-image-2572" /></a><p class="wp-caption-text">Zend Studio</p></div>
<h6 class="title">5. <a rel="nofollow" href="http://cakephp.org/" target="_blank">CakePHP</a></h6>
<p>CakePHP is a rapid development framework for PHP that provides an extensible architecture for developing, maintaining, and deploying applications.</p>
<div id="attachment_2573" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://cakephp.org/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/07/cakephp.jpg" alt="Cake PHP" title="Cake PHP" width="480" height="150" class="size-full wp-image-2573" /></a><p class="wp-caption-text">Cake PHP</p></div>
<h6 class="title">6. <a rel="nofollow" href="http://www.php-debugger.com/dbg/" target="_blank">DBG | PHP Debugger and Profiler</a></h6>
<p>DBG is a a full-featured php debugger, an interactive tool that helps you debugging php scripts.</p>
<div id="attachment_2574" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://www.php-debugger.com/dbg/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/07/php-debugger.jpg" alt="PHP Debugger" title="PHP Debugger" width="480" height="150" class="size-full wp-image-2574" /></a><p class="wp-caption-text">PHP Debugger</p></div>
<h6 class="title">7. <a rel="nofollow" href="http://www.firephp.org/" target="_blank">FirePHP</a></h6>
<p>FirePHP enables you to log to your Firebug Console using a simple PHP method call. </p>
<div id="attachment_2575" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://www.firephp.org/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/07/firephp.jpg" alt="Fire PHP Firefox Extension" title="Fire PHP Firefox Extension" width="480" height="150" class="size-full wp-image-2575" /></a><p class="wp-caption-text">Fire PHP Firefox Extension</p></div>
<h6 class="title">8. Aukyla</h6>
<p>Aukyla Software is an offspring of Auton Rijnsburg, specialized in software development and web services.</p>
<h6 class="title">9. BlueShoes</h6>
<p>BlueShoes is a comprehensive application framework and content management system. It is written in the widely used web-scripting language PHP. </p>
<div id="attachment_2576" class="wp-caption alignnone" style="width: 490px"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/07/blueshoes.jpg" alt="Blue Shoes - PHP Framework" title="Blue Shoes - PHP Framework" width="480" height="150" class="size-full wp-image-2576" /><p class="wp-caption-text">Blue Shoes - PHP Framework</p></div>
<h6 class="title">10. <a rel="nofollow" href="http://www.horde.org/horde/" target="_blank">Horde Application Framework</a></h6>
<p>The Horde Application Framework is a general-purpose web application framework in PHP, providing classes for dealing with preferences, compression, browser detection, connection tracking, MIME handling, and more.</p>
<h6 class="title">11. <a rel="nofollow" href="http://codeigniter.com/" target="_blank">CodeIgniter</a></h6>
<p>CodeIgniter is a powerful PHP framework with a very small footprint, built for PHP coders who need a simple and elegant toolkit to create full-featured web applications</p>
<div id="attachment_2577" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://codeigniter.com/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/07/codeigniter.jpg" alt="CodeIgniter - PHP framework" title="CodeIgniter - PHP framework" width="480" height="150" class="size-full wp-image-2577" /></a><p class="wp-caption-text">CodeIgniter - PHP framework</p></div>
<h6 class="title">12. <a rel="nofollow" href="http://www.phpopenbiz.org/jim/" target="_blank">PhpOpenbiz</a></h6>
<p>Want to build a data centric business application without dirty code &#8211; PhpOpenbiz (Openbiz) is the solution!</p>
<h6 class="title">13. <a rel="nofollow" href="http://www.qcodo.com/" target="_blank">Qcodo</a></h6>
<p>The Qcodo Development Framework is an open-source PHP 5 framework that focuses on freeing developers from unnecessary tedious, mundane coding. </p>
<h6 class="title">14. <a rel="nofollow" href="http://seagullproject.org/" target="_blank">Seagull PHP Framework</a></h6>
<p>Seagull is a mature OOP framework for building web, command line and GUI applications. Licensed under BSD, the project allows PHP developers to easily integrate and manage code resources, and build complex applications quickly. </p>
<h6 class="title">15. <a rel="nofollow" href="http://seagullproject.org/" target="_blank">Zoop</a></h6>
<p>PHP coding in an object oriented framework that’s ajax friendly.</p>
<div id="attachment_2580" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://www.zoopframework.com/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/07/zoop.jpg" alt="Zoop Framework" title="Zoop Framework" width="480" height="150" class="size-full wp-image-2580" /></a><p class="wp-caption-text">Zoop Framework</p></div>
<h6 class="title">16. <a rel="nofollow" href="http://www.xaraya.com/" target="_blank" class="broken_link">Xaraya</a></h6>
<p>Xaraya is a cutting edge open source framework (written in PHP) on which developers can create sophisticated web applications and designers enjoy considerable flexibility.</p>
<div id="attachment_2581" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://www.xaraya.com/" class="broken_link"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/07/xaraya.jpg" alt="Xaraya Open Source Framework" title="Xaraya Open Source Framework" width="480" height="150" class="size-full wp-image-2581" /></a><p class="wp-caption-text">Xaraya Open Source Framework</p></div>
<h6 class="title">17. SimpleTest</h6>
<p>It is a PHP unit test and web test framework. </p>
<div id="attachment_2582" class="wp-caption alignnone" style="width: 490px"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/07/simple-test.jpg" alt="Simple Test - PHP Unit Testing" title="Simple Test - PHP Unit Testing" width="480" height="150" class="size-full wp-image-2582" /><p class="wp-caption-text">Simple Test - PHP Unit Testing</p></div>
<h6 class="title">18. <a rel="nofollow" href="http://phpdoc.org/" target="_blank">phpDocumentor</a></h6>
<p>The complete documentation solution for PHP.</p>
<h6 class="title">19. <a rel="nofollow" href="http://www.phpcaptcha.org/" target="_blank">Securimage</a></h6>
<p>Securimage is an open-source free PHP CAPTCHA script for generating complex images and CAPTCHA codes to protect forms from spam and abuse.</p>
<h6 class="title">20. <a rel="nofollow" href="http://blog.evaria.com/2007/pixy-the-php-security-scanner/" target="_blank">PIXY</a></h6>
<p>Pixy is a Java program that performs automatic scans of PHP 4 source code.</p>
<h6 class="title">21. <a rel="nofollow" href="http://www.maani.us/charts4/" target="_blank">PHP/SWF Charts</a></h6>
<p>PHP/SWF Charts is a simple, yet powerful PHP tool to create attractive web charts and graphs from dynamic data.</p>
<h6 class="title">22. <a rel="nofollow" href="http://wideimage.sourceforge.net/wiki/MainPage" target="_blank">WideImage</a></h6>
<p>WideImage is an object-oriented library for image manipulation, written in/for PHP 5?</p>
<h6 class="title">22. <a rel="nofollow" href="http://pear.php.net/package/PHP_Beautifier" target="_blank">PHP_Beautifier</a></h6>
<p>This program reformat and beautify PHP 4 and PHP 5 source code files automatically. The program is Open Source and distributed under the terms of PHP Licence. It is written in PHP 5 and has a command line tool.</p>
<h6 class="title">23. <a rel="nofollow" href="http://phing.info/" target="_blank">Phing</a></h6>
<p>It&#8217;s a project build system based on Apache Ant. You can do anything with it that you could do with a traditional build system like GNU make, and its use of simple XML build files and extensible PHP &#8220;task&#8221; classes make it an easy-to-use and highly flexible build framework.</p>
<h6 class="title">24. <a rel="nofollow" href="http://htmlpurifier.org/" target="_blank">HTML Purifier</a></h6>
<p>HTML Purifier is a standards-compliant HTML filter library written in PHP. </p>
<div id="attachment_2583" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://htmlpurifier.org/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/07/html-purifier.jpg" alt="HTML Purifier" title="HTML Purifier" width="480" height="150" class="size-full wp-image-2583" /></a><p class="wp-caption-text">HTML Purifier</p></div>
<h6 class="title">25. <a rel="nofollow" href="http://simplepie.org/" target="_blank">SimplePie</a></h6>
<p>SimplePie is a very fast and easy-to-use class, written in PHP, that puts the &#8216;simple&#8217; back into &#8216;really simple syndication&#8217;. </p>
<div id="attachment_2584" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://simplepie.org/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/07/simple-pie.jpg" alt="Simple PIE" title="Simple PIE" width="480" height="150" class="size-full wp-image-2584" /></a><p class="wp-caption-text">Simple PIE</p></div>
<h6 class="title">26. <a rel="nofollow" href="http://www.koders.com/" target="_blank">Koders</a></h6>
<p>Koders.com, the leading search engine for open source and other downloadable code now contains over 2 billion lines of code within its repository.</p>
<p><div id="attachment_2585" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://www.koders.com/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/07/koders.jpg" alt="Koders - Search Engine" title="Koders - Search Engine" width="480" height="150" class="size-full wp-image-2585" /></a><p class="wp-caption-text">Koders - Search Engine</p></div><br />
<br/></p>
<p><strong>Related Posts:</strong></p><ol>
<li><a href='http://pelfusion.com/tools/20-helpful-color-tools-for-designers/' rel='bookmark' title='20+ Helpful Color Tools For Designers'>20+ Helpful Color Tools For Designers</a> <small>Tools are always very handy for designers. To get their...</small></li>
<li><a href='http://pelfusion.com/tools/25-important-web-design-tools/' rel='bookmark' title='25 Important Web Design Tools'>25 Important Web Design Tools</a> <small>There are lots of web design tools available on internet,...</small></li>
<li><a href='http://pelfusion.com/tools/30-twitter-tools-for-managing-followers/' rel='bookmark' title='30 Twitter Tools For Managing Followers'>30 Twitter Tools For Managing Followers</a> <small>To manage your followers or friends on twitter is not...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://pelfusion.com/tools/26-worth-knowing-php-tools-resources-for-web-developers/feed/</wfw:commentRss>
		<slash:comments>40</slash:comments>
		</item>
		<item>
		<title>20 Tutorials to Develop WordPress Plugin</title>
		<link>http://pelfusion.com/know-how/20-tutorials-to-develop-wordpress-plugin/</link>
		<comments>http://pelfusion.com/know-how/20-tutorials-to-develop-wordpress-plugin/#comments</comments>
		<pubDate>Mon, 04 May 2009 13:37:36 +0000</pubDate>
		<dc:creator>Ferman Aziz</dc:creator>
				<category><![CDATA[How-To]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[wordpress plugins]]></category>

		<guid isPermaLink="false">http://pelfusion.com/?p=1240</guid>
		<description><![CDATA[<p><a href="http://pelfusion.com/know-how/20-tutorials-to-develop-wordpress-plugin/">20 Tutorials to Develop WordPress Plugin</a> is a post from <a href="http://pelfusion.com">PelFusion</a></p><p>WordPress has become more important application for bloggers and even for those who need small web site. To extend its functionality beyond the basic features there are too many plugins. You can do almost anything with wordpress using different plugins. If you are a developer you can develop your own plugin or use plugins developed [...]</p>
<strong>Related Posts:</strong><ol>
<li><a href='http://pelfusion.com/know-how/install-wordpress-using-fantastico-in-cpanel/' rel='bookmark' title='Install WordPress using Fantastico in cPanel'>Install WordPress using Fantastico in cPanel</a> <small>Well i wanted to start my first post on blog...</small></li>
<li><a href='http://pelfusion.com/tools/top-35-plugins-of-wordpress-to-share-your-blog-post/' rel='bookmark' title='Top 35 Plugins of WordPress to Share Your Blog Post'>Top 35 Plugins of WordPress to Share Your Blog Post</a> <small>When ever you write something on your blog you always...</small></li>
<li><a href='http://pelfusion.com/tutorials/35-flash-game-development-tutorials-fla-files/' rel='bookmark' title='35+ Flash Game Development Tutorials &amp; FLA Files'>35+ Flash Game Development Tutorials &#038; FLA Files</a> <small>I always wanted to learn game development in Flash but...</small></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://pelfusion.com/know-how/20-tutorials-to-develop-wordpress-plugin/">20 Tutorials to Develop WordPress Plugin</a> is a post from <a href="http://pelfusion.com">PelFusion</a></p><p>WordPress has become more important application for bloggers and even for those who need small web site. To extend its functionality beyond the basic features there are too many plugins. You can do almost anything with wordpress using different plugins. If you are a developer you can develop your own plugin or use plugins developed by others.</p>
<p>I have compiled <strong>20 tutorials for developers</strong> to know how <strong>to develop wordpress plugin</strong>.</p>
<h6 class="title">1. <a rel="nofollow" href="http://markjaquith.wordpress.com/2006/03/04/wp-tutorial-your-first-wp-plugin/" target="_blank">WP Tutorial: Your First WP Plugin</a></h6>
<p>Here it is, a video guide to creating your first WordPress plugin (in under 5 minutes!).</p>
<div id="attachment_1244" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://markjaquith.wordpress.com/2006/03/04/wp-tutorial-your-first-wp-plugin/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/05/wordpress-plugin.jpg" alt="WP Tutorial: Your First WP Plugin" title="WP Tutorial: Your First WP Plugin" width="480" height="200" class="size-full wp-image-1244" /></a><p class="wp-caption-text">WP Tutorial: Your First WP Plugin</p></div>
<h6 class="title">2. <a rel="nofollow" href="http://codex.wordpress.org/Writing_a_Plugin" target="_blank">Writing a Plugin</a></h6>
<p>WordPress Plugins allow easy modification, customization, and enhancement to a WordPress blog. Instead of changing the core programming of WordPress, you can add functionality with WordPress Plugins.</p>
<div id="attachment_1246" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://codex.wordpress.org/Writing_a_Plugin"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/05/wordpress-codex-plugin.jpg" alt="Writing a Plugin" title="Writing a Plugin" width="480" height="200" class="size-full wp-image-1246" /></a><p class="wp-caption-text">Writing a Plugin</p></div>
<h6 class="title">3. <a rel="nofollow" href="http://www.devlounge.net/articles/how-to-write-a-wordpress-plugin-introduction" target="_blank">How to Write a WordPress Plugin &#8211; Introduction</a></h6>
<p>For any WordPress user, plugins are essential. WordPress Plugins allow those with little to no programming skills to extend the functionality of their blog.</p>
<div id="attachment_1247" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://www.devlounge.net/articles/how-to-write-a-wordpress-plugin-introduction"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/05/write-plugin.jpg" alt="How to Write a WordPress Plugin - Introduction" title="How to Write a WordPress Plugin - Introduction" width="480" height="200" class="size-full wp-image-1247" /></a><p class="wp-caption-text">How to Write a WordPress Plugin - Introduction</p></div>
<h6 class="title">4. <a rel="nofollow" href="http://net.tutsplus.com/tutorials/wordpress/creating-a-custom-wordpress-plugin-from-scratch/" target="_blank">Create a Custom WordPress Plugin From Scratch</a></h6>
<p>This tutorial will describe the implementation of a WordPress plugin starting from scratch. The plugin will connect to an external OSCommerce database and display random products on your WordPress site. </p>
<div id="attachment_1249" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://net.tutsplus.com/tutorials/wordpress/creating-a-custom-wordpress-plugin-from-scratch/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/05/custom-plugin.jpg" alt="Create a Custom WordPress Plugin From Scratch" title="Create a Custom WordPress Plugin From Scratch" width="480" height="200" class="size-full wp-image-1249" /></a><p class="wp-caption-text">Create a Custom WordPress Plugin From Scratch</p></div>
<h6 class="title">5. <a rel="nofollow" href="http://net.tutsplus.com/tutorials/wordpress/anatomy-of-a-wordpress-plugin/" target="_blank">Anatomy of a WordPress Plugin</a></h6>
<p>This tutorial will guide you through every step of building a simple, widgetized WordPress plugin with settings. </p>
<div id="attachment_1253" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://net.tutsplus.com/tutorials/wordpress/anatomy-of-a-wordpress-plugin/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/05/plugin-anatomy.jpg" alt="Anatomy of a WordPress Plugin" title="Anatomy of a WordPress Plugin" width="480" height="200" class="size-full wp-image-1253" /></a><p class="wp-caption-text">Anatomy of a WordPress Plugin</p></div>
<h6 class="title">6. <a rel="nofollow" href="http://net.tutsplus.com/videos/screencasts/a-crash-course-in-wordpress-plugin-development/" target="_blank">A Crash-Course in WordPress Plugin Development</a></h6>
<p>Despite an extensive codex, many WordPress users remain unfamiliar with how to create their own custom plugins. In today&#8217;s screencast, we&#8217;ll start from scratch and build our first usable plugin.</p>
<div id="attachment_1267" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://net.tutsplus.com/videos/screencasts/a-crash-course-in-wordpress-plugin-development/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/05/plugin-crash-course1.jpg" alt="Plugin Crash Course" title="Plugin Crash Course" width="480" height="200" class="size-full wp-image-1267" /></a><p class="wp-caption-text">Plugin Crash Course</p></div>
<h6 class="title">7. <a rel="nofollow" href="http://www.slideshare.net/chzigkol/wordpress-plugin-development-short-tutorial-presentation" target="_blank">WordPress Plugin Development Short Tutorial</a></h6>
<p>A short video tutorial on wordpress plugin development.</p>
<div id="attachment_1259" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://www.slideshare.net/chzigkol/wordpress-plugin-development-short-tutorial-presentation"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/05/video-plugin-tut.jpg" alt="Wordpress Plugin Development Short Tutorial" title="Wordpress Plugin Development Short Tutorial" width="480" height="200" class="size-full wp-image-1259" /></a><p class="wp-caption-text">Wordpress Plugin Development Short Tutorial</p></div>
<h6 class="title">8. <a rel="nofollow" href="http://blog.bluefur.com/2008/05/15/wordpress-plugin-tutorial-hello-world/" target="_blank">WordPress Plugin Tutorial &#8211; Hello World</a></h6>
<p>Learning to develop a WordPress plugin can be both fun and rewarding. In this Tutorial we will go over how to make a simple Hello World plugin that you can create.</p>
<h6 class="title">9. <a rel="nofollow" href="http://nettuts.com/articles/the-ultimate-guide-to-building-a-wordpress-plugin/" target="_blank">The Ultimate Guide to Building a WordPress Plugin</a></h6>
<p>There are often plugins created for basic extended functionality, but what happens when you can&#8217;t find the perfect plugin for your needs? It might be easier to just create the plugin yourself.</p>
<h6 class="title">10. How to Make a Social Bookmarking WordPress Plugin</h6>
<p>In this article by Vladimir Prelovac, you will learn to create your first functional WordPress plugin and learn how to interact with the WordPress API (this is the WordPress interface to PHP) on the way.</p>
<h6 class="title">11. <a rel="nofollow" href="http://www.bestechvideos.com/2008/09/12/worpress-plugin-development-with-php" target="_blank">WorPress Plugin Development with PHP</a></h6>
<p>Nice video tutorial on plugin development.</p>
<div id="attachment_1262" class="wp-caption alignnone" style="width: 490px"><a rel="nofollow" href="http://www.viddler.com/explore/sgphpug/videos/5/"><img src="http://cdn.pelfusion.com/wp-content/uploads/2009/05/wordpress-plugin-video.jpg" alt="WorPress Plugin Development with PHP" title="WorPress Plugin Development with PHP" width="480" height="200" class="size-full wp-image-1262" /></a><p class="wp-caption-text">WorPress Plugin Development with PHP</p></div>
<h6 class="title">12. <a rel="nofollow" href="http://www.askapache.com/wordpress/writing-wordpress-plugins.html" target="_blank">Tips to Speed Up WordPress Plugin Development</a></h6>
<p>Anyone can create useful WordPress plugins without being a hacker.</p>
<h6 class="title">13. <a rel="nofollow" href="http://www.devlounge.net/articles/seven-reasons-to-write-a-wordpress-plugin" target="_blank">Seven Reasons to Write a WordPress Plugin</a></h6>
<p>Listed below are seven reasons why a WordPress user should consider writing a WordPress plugin.</p>
<h6 class="title">14. <a rel="nofollow" href="http://www.devlounge.net/articles/wordpress-plugin-actions" target="_blank">WordPress Plugin Actions</a></h6>
<p>An example of an action would be that you want a execute some code after a user has published a post or left a comment. </p>
<h6 class="title">15. <a rel="nofollow" href="http://www.devlounge.net/articles/wordpress-plugin-filters" target="_blank">WordPress Plugin Filters</a></h6>
<p>WordPress filters allow to you modify virtually any kind of text displayed and are extremely powerful. </p>
<h6 class="title">16. <a rel="nofollow" href="http://www.devlounge.net/articles/constructing-an-wordpress-plugin-admin-panel" target="_blank">Constructing a WordPress Plugin Admin Panel</a></h6>
<p>This tutorial will go into what it takes to successfully create an admin panel for your plugin.</p>
<h6 class="title">17. <a rel="nofollow" href="http://www.devlounge.net/articles/constructing-a-wordpress-plugin-users-panel" target="_blank">Constructing a WordPress Plugin User’s Panel</a></h6>
<p>This tutorial will go over the steps to add in your own User&#8217;s Administration Panel.</p>
<h6 class="title">18. <a rel="nofollow" href="http://www.devlounge.net/articles/using-javascript-and-css-with-your-wordpress-plugin" target="_blank">Using JavaScript and CSS with your WordPress Plugin</a></h6>
<p>This portion of the series will cover how to load JavaScript and CSS files for your plugin.</p>
<h6 class="title">19. <a rel="nofollow" href="http://www.devlounge.net/articles/using-ajax-with-your-wordpress-plugin" target="_blank">Using AJAX with your WordPress Plugin</a></h6>
<p>This post will show you how to use AJAX with your WordPress plugin. </p>
<h6 class="title">20. <a rel="nofollow" href="http://www.devlounge.net/articles/releasing-and-promoting-your-wordpress-plugin" target="_blank">Releasing and Promoting Your WordPress Plugin</a></h6>
<p>After you have finished writing your awesome WordPress plugin, there are a few things to consider before releasing and promoting your WordPress plugin.</p>
<p><strong>Related Posts:</strong></p><ol>
<li><a href='http://pelfusion.com/know-how/install-wordpress-using-fantastico-in-cpanel/' rel='bookmark' title='Install WordPress using Fantastico in cPanel'>Install WordPress using Fantastico in cPanel</a> <small>Well i wanted to start my first post on blog...</small></li>
<li><a href='http://pelfusion.com/tools/top-35-plugins-of-wordpress-to-share-your-blog-post/' rel='bookmark' title='Top 35 Plugins of WordPress to Share Your Blog Post'>Top 35 Plugins of WordPress to Share Your Blog Post</a> <small>When ever you write something on your blog you always...</small></li>
<li><a href='http://pelfusion.com/tutorials/35-flash-game-development-tutorials-fla-files/' rel='bookmark' title='35+ Flash Game Development Tutorials &amp; FLA Files'>35+ Flash Game Development Tutorials &#038; FLA Files</a> <small>I always wanted to learn game development in Flash but...</small></li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://pelfusion.com/know-how/20-tutorials-to-develop-wordpress-plugin/feed/</wfw:commentRss>
		<slash:comments>35</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced
Object Caching 5025/5123 objects using disk: basic
Content Delivery Network via cdn.pelfusion.com

Served from: pelfusion.com @ 2012-05-21 14:36:51 -->
