<?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>Webmaster-Source &#187; Tutorials</title>
	<atom:link href="https://www.webmaster-source.com/tag/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.webmaster-source.com</link>
	<description>Useful Resources For Webmasters</description>
	<lastBuildDate>Thu, 24 Aug 2017 02:01:18 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.42</generator>
	<item>
		<title>Building an iPhone App to Parse the Twitter API with NSXMLParser</title>
		<link>https://www.webmaster-source.com/2011/10/24/building-an-iphone-app-to-parse-the-twitter-api-with-nsxmlparser/</link>
		<comments>https://www.webmaster-source.com/2011/10/24/building-an-iphone-app-to-parse-the-twitter-api-with-nsxmlparser/#comments</comments>
		<pubDate>Mon, 24 Oct 2011 11:20:58 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[api]]></category>
		<category><![CDATA[Cocoa]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[iOS]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[Xcode]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=4362</guid>
		<description><![CDATA[iOS has a simple event-based XML parser built in, which makes it fairly easy to do less involved parsing operations without having to load up a third-party framework. This tutorial will show you how to build a simple iPhone application that will download an XML feed from Twitter containing a user&#8217;s tweets, and then display [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>iOS has a simple event-based XML parser built in, which makes it fairly easy to do less involved parsing operations without having to load up a third-party framework. This tutorial will show you how to build a simple iPhone application that will download an XML feed from Twitter containing a user&#8217;s tweets, and then display them with a pretty UI. (You could easily adapt this to parse other XML documents, such as RSS feeds.)</p>
<p style="text-align: center;"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-4364 imgborder" title="Displaying data from a Twitter XML feed in iOS" src="//www.webmaster-source.com/wp-content/uploads/nsxmlparser-example-fantasyfolder.jpg" alt="" width="600" height="306" /></p>
<h3><span id="more-4362"></span>Getting Started</h3>
<p>First, create a new View-based application. Give it a memorable name like &#8220;TwitterXML.&#8221;</p>
<p style="text-align: center;"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-4365 imgborder" title="Creating a view-based application in Xcode" src="//www.webmaster-source.com/wp-content/uploads/nsxmlparser-view-based-application.png" alt="" width="600" height="471" /></p>
<p>Now that you have a clean slate to work off, let&#8217;s rename some classes. I find Xcode&#8217;s default naming scheme a bit silly, with the way it prepends the project name to each file. I think the Application Delegate should be called, simply, <em>AppDelegate.m</em> instead of the needlessly long <em>TwitterXMLAppDelegate.m.</em> However, you can&#8217;t just rename the file to whatever your preference is, as that would break things.</p>
<p>You can rename a class project-wide, file and all, by using the Refactoring tool. You can call it up by right-clicking on the class name in the implementation file and choosing &#8220;Refactoring&#8221; from the resulting menu.</p>
<p><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-4366" title="Renaming classes with the Refactor tool" src="//www.webmaster-source.com/wp-content/uploads/nsxmlparser-renaming-classes-with-refactor-tool.png" alt="" width="600" height="352" /></p>
<p>This renaming business is entirely optional as far as this tutorial goes, but it&#8217;s worth know how to do. Imagine if you made a typo in a class name and didn&#8217;t realize it until after you had already referenced it in a few places. It&#8217;s nice to have an automated fix.</p>
<h3>Setting Up the Header File</h3>
<p>Most of our code is going to go in the View controller, named <em>TweetViewController</em> in my case. Switch to the corresponding .h file and we can start setting up properties and whatnot.</p>
<p>First, we need to implement the NSXMLParserDelegate protocol so our class can respond to NSXMLParser delegate methods. This is easily done by adding <em>NSXMLParserDelegate</em> to the <em>@interface</em> line, like so:</p>
<pre class="brush: cpp; title: ; notranslate">
@interface TweetViewController : UIViewController &lt;NSXMLParserDelegate&gt; {
</pre>
<p>Now we need to declare some variables and other objects in the interface block. We need a string to hold the name of the Twitter user whose profile we will be accessing, a mutable array to hold the statuses we&#8217;ve pulled from the parser and a few that are used to hold data temporarily during the parsing process. Also, we need a few IBOutlets so we can update the View once we finish reading the XML data.</p>
<pre class="brush: cpp; title: ; notranslate">
@interface TweetViewController : UIViewController &lt;NSXMLParserDelegate&gt; {
NSString *twitterUser;
NSMutableArray *statuses;
NSString *currentElement;
NSMutableDictionary *currentElementData;
NSMutableString *currentElementString;
IBOutlet UIImageView *backgroundImage;
IBOutlet UILabel *tweetLabel;
IBOutlet UIImageView *avatar;
}
</pre>
<p>Of course, we need to make these objects into properties. This means adding a few property declarations after the interface block ends.</p>
<pre class="brush: cpp; title: ; notranslate">
@property (nonatomic, retain) NSString *twitterUser;
@property (nonatomic, retain) NSMutableArray *statuses;
@property (nonatomic, retain) NSString *currentElement;
@property (nonatomic, retain) NSMutableDictionary *currentElementData;
@property (nonatomic, retain) NSMutableString *currentElementString;
@property (nonatomic, retain) UIImageView *backgroundImage;
@property (nonatomic, retain) UILabel *tweetLabel;
@property (nonatomic, retain) UIImageView *avatar;
</pre>
<p>And then you need to synthesize them in the .m file by adding the following line right after the @implementation line:</p>
<pre class="brush: cpp; title: ; notranslate">
@synthesize twitterUser, statuses, currentElement, currentElementData, currentElementString, backgroundImage, tweetLabel, avatar;
</pre>
<p>Now that that&#8217;s out of the way, we can get to the interesting part.</p>
<h3>Setting Up the Parser</h3>
<p>The first method in the View controller is &lt;em&gt;viewDidLoad&lt;/em&gt;, which fires as soon as the View as loaded. (Subtle, isn&#8217;t it?) We will be putting our initialization stuff in there. Basically, we just need to ready our properties, set the Twitter username and start the parser.</p>
<pre class="brush: cpp; title: ; notranslate">
- (void)viewDidLoad {
[super viewDidLoad];
statuses = [[NSMutableArray alloc] init];
currentElement = [[NSString alloc] init];
currentElementData = [[NSMutableDictionary alloc] init];
currentElementString = [[NSMutableString alloc] init];
twitterUser = [NSString stringWithString:@&quot;collis&quot;];
[self parseXMLForUser:twitterUser];
}
</pre>
<p>After the first arrays and dictionaries are initialized, the <em>twitterUser</em> string is set to the username of the Twitter account we want the app to pull the latest statuses from. I&#8217;m using <a href="http://twitter.com/#!/collis">Collis</a>, one of the co-founders of <a href="http://envato.com/">Envato</a>, as an example. You could put any user you want there, so long as they have a cool-looking background on their profile!</p>
<p>The last line calls the <em>parseXMLForUser:</em> method and passes the <em>twitterUser</em> string along with it. We will work on that part next.</p>
<p>The <em>parseXMLForUser:</em> method is responsible for setting up the parser, as well as building the Twitter API URL.</p>
<pre class="brush: cpp; title: ; notranslate">
- (void)parseXMLForUser:(NSString *)user {

//Build the Twitter API URL by combining the user with the rest of the URL
NSString *urlString = [NSString stringWithFormat:@&quot;http://twitter.com/statuses/user_timeline/%@.xml?count=3&quot;, user];
NSURL *url = [NSURL URLWithString:urlString];

//Create an instance of NSXMLParser and download the XML data from the URL
NSXMLParser *parser = [[NSXMLParser alloc] initWithContentsOfURL:url];

//Set this class as its own delegate so we can process NSXMLParser callbacks
[parser setDelegate:self];

//Disable namespace support and other things we don't really need
[parser setShouldProcessNamespaces:NO];
[parser setShouldReportNamespacePrefixes:NO];
[parser setShouldResolveExternalEntities:NO];

[parser parse]; //Go go gadget XML parser...

[parser release];

}
</pre>
<p>The first part of the method should look familiar to anyone who has worked with C or Java before. It takes our <em>user</em> argument (which contains the text of <em>twitterUser</em>) and splices it into the URL string, just before the <em>.xml</em> part. Cocoa expects URLs to be of the NSURL object type, we create a new one of those and pass it <em>urlString</em>.</p>
<p>After that is done, we create a new instance of the NSXMLParser class and nickname it &#8220;parser.&#8221; We also pass it the new URL object, which it will use to download the contents it finds there at runtime. Next we set the parser&#8217;s delegate to <em>self</em>, or the current class. The next three lines turn off some features we don&#8217;t really need. Finally, we kick the parser into action and leave a <em>[parser release]</em> command to clean up after it&#8217;s done.</p>
<p>That was simple, wasn&#8217;t it? Sadly, that was only the beginning. In order for the parser to, well, <em>parse</em> we still need to implement the delegate methods for NSXMLParser. And we need to make a spiffy UI.</p>
<h3>Building the Parser</h3>
<p>NSXMLParser is what is called an event-based parser. This means it loops around, searching a document for anything that looks like an XML tag. When it finds one, it raises an event. Basically it says &#8220;I found an opening tag named &#8216;something'&#8221; and leaves you to deal with it. The parser does the same thing with ending tags and the text between them. We have to implement delegate methods to handle these events and save the data they find.</p>
<p>Let&#8217;s start with a couple of simple ones.</p>
<pre class="brush: cpp; title: ; notranslate">
- (void)parserDidStartDocument:(NSXMLParser *)parser {
NSLog(@&quot;The XML document is now being parsed.&quot;);
}

- (void)parser:(NSXMLParser *)parser parseErrorOccurred:(NSError *)parseError {
NSLog(@&quot;Parse error: %d&quot;, [parseError code]);
}
</pre>
<p>The first method fires when NSXMLParser starts to parse the document. For this application, there isn&#8217;t really anything that we need to do at that point. Putting an NSLog there is great for debugging, though. (If your app is crashing, it&#8217;s helpful to know whether it&#8217;s getting to that step or not.) I&#8217;m sure you can guess what the <em>parseErrorOccurred</em> method does. (It logs an error code if the XML document is malformed or if, for some other reason, the parser could not process it.)</p>
<p>Moving on, we have a method that is called when the parser finds an opening XML tag.</p>
<pre class="brush: cpp; title: ; notranslate">
- (void)parser:(NSXMLParser *)parser didStartElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName attributes:(NSDictionary *)attributeDict {

//Store the name of the element currently being parsed.
currentElement = [elementName copy];

//Create an empty mutable string to hold the contents of elements
currentElementString = [NSMutableString stringWithString:@&quot;&quot;];

//Empty the dictionary if we're parsing a new status element
if ([elementName isEqualToString:@&quot;status&quot;]) {
[currentElementData removeAllObjects];
}

}
</pre>
<p>This one is a bit more complicated. When it&#8217;s called, its arguments are populated with information that the parser found out about the element currently being parsed. It&#8217;s name is what we care about, primarily. Using the properties we created earlier, the method keeps track of the element currently being parsed (we need to know its name in other methods) and whatever is <em>inside</em> the element (between the opening and closing tag). The conditional statement at the end empties our dictionary every time the parser moves on to a new &lt;status&gt; element, as we will have already copied its contents to the statuses array.</p>
<p>The next delegate method takes any characters found inside an XML element and stores it in the <em>currentElementString</em> property for later.</p>
<pre class="brush: cpp; title: ; notranslate">
- (void)parser:(NSXMLParser *)parser foundCharacters:(NSString *)string {
//Take the string inside an element (e.g. &lt;tag&gt;string&lt;/tag&gt;) and save it in a property
[currentElementString appendString:string];
}
</pre>
<p>And finally, the penultimate method. This one contains the real meat of the parser. It is called whenever NSXMLParser comes across a closing XML tag. And so, it serves as a good place to put most of the data-saving logic.</p>
<pre class="brush: cpp; title: ; notranslate">
- (void)parser:(NSXMLParser *)parser didEndElement:(NSString *)elementName namespaceURI:(NSString *)namespaceURI qualifiedName:(NSString *)qName {

//If we've hit the &lt;/status&gt; tag, store the data in the statuses array
if ([elementName isEqualToString:@&quot;status&quot;]) {
[statuses addObject:[currentElementData copy]];
}

//Trim any extra spaces and newline characters from around currentElementString
NSString *string = [currentElementString stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];

//Store the status data in the currentElementData dictionary
if ([currentElement isEqualToString:@&quot;created_at&quot;]) {
[currentElementData setObject:string forKey:@&quot;created_at&quot;];
} else if ([currentElement isEqualToString:@&quot;text&quot;]) {
[currentElementData setObject:string forKey:@&quot;text&quot;];
} else if ([currentElement isEqualToString:@&quot;retweeted&quot;]) {
[currentElementData setObject:string forKey:@&quot;retweeted&quot;];
} else if ([currentElement isEqualToString:@&quot;id&quot;]) {
[currentElementData setObject:string forKey:@&quot;id&quot;];
} else if ([currentElement isEqualToString:@&quot;profile_image_url&quot;]) {
[currentElementData setObject:string forKey:@&quot;profile_image_url&quot;];
} else if ([currentElement isEqualToString:@&quot;profile_background_image_url&quot;]) {
[currentElementData setObject:string forKey:@&quot;profile_background_image_url&quot;];
} else if ([currentElement isEqualToString:@&quot;profile_link_color&quot;]) {
[currentElementData setObject:string forKey:@&quot;profile_link_color&quot;];
}

}
</pre>
<p>The first code chunk saves the contents of the <em>currentElementData</em> dictionary to the <em>statuses</em> array if, and only if, the ending tag being processed currently is &lt;/status&gt;. If you remember from before, <em>currentElementData</em> will be emptied the next time the <em>didStartElement</em> method is called. Otherwise, the block will be skipped and the application will handle the tasks it needs to run for child elements of &lt;status&gt;.</p>
<p>After stripping out extraneous spaces and newline characters from either side of <em>currentElementString</em>, so we don&#8217;t end up with weird output, we have a rather long if/else if block. This checks whether the element being parsed is one we want to save (e.g. &#8220;text&#8221; or &#8220;profile_image_url&#8221;) and if it is, it adds it to the element data dictionary.</p>
<p>The code may seem a bit strange at first, but it should make more sense after you become more familiar with it.</p>
<p>And now, for the last delegate method. This one fires when the document has finished parsing. This is the place to launch any operations we want to be started after we have our data. As you can see below, logging the <em>statuses</em> array to the console and then calling a method to display that data is what we will be doing here.</p>
<pre class="brush: cpp; title: ; notranslate">
- (void)parserDidEndDocument:(NSXMLParser *)parser {
//Document has been parsed. It's time to fire some new methods off!
NSLog(@&quot;%@&quot;, statuses);
[self updateView];
}
</pre>
<h3>The View</h3>
<p>After all that code, let&#8217;s work on the interface. Double-click the <em>TweetViewController.xib</em> file (or whatever your View XIB is called) in the Xcode sidebar to open it in Interface Builder. Now that your screen is sufficiently cluttered with windows, you want to drag a UIImageView from the Library window into your View canvas. Make sure that it is sized to fit the whole available area.</p>
<p>Of course, the Image View won&#8217;t be much use to us unless we link it with the controller. Right-click on the File&#8217;s Owner icon and drag the little rubberband/wire thing from the <em>backgroundImage</em> Outlet over to the UIImageView and drop it. The File&#8217;s Owner overlay window should update to show the Image View as being connected to <em>backgroundImage</em>.</p>
<p style="text-align: center;"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-4367 imgborder" title="Adding a UIImageView in Interface Builder" src="//www.webmaster-source.com/wp-content/uploads/nsxmlparser-ib-adding-uiimageview.png" alt="" width="600" height="440" /></p>
<p>I think this app would be better if it used a horizontal orientation, don&#8217;t you? Click the little arrow icon in the upper right corner of the View canvas. Interface Builder should automagically resize the Image View inside it to still fill the View. Save the XIB file out and switch back to Xcode. Now we have to configure the application to use a landscape orientation instead of the default portrait one.</p>
<p>Inside your controller class there should be a method called <em>shouldAutorotateToInterfaceOrientation</em>. It&#8217;s commented out by default. Uncomment it and change the interfaceOrientation to <em>UIInterfaceOrientationLandscapeLeft</em>. It should look like this:</p>
<pre class="brush: cpp; title: ; notranslate">
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return (interfaceOrientation == UIInterfaceOrientationLandscapeLeft);
}
</pre>
<p>Back in Interface Builder, drop in a new UIImageView. We won&#8217;t be hooking this one up to an IBOutlet. Instead, we will set the image to the word bubble image I made (it&#8217;s in the project file), resize the view to be the same point-width as the image (375&#215;208) and position it neatly over the background image view. I also lowered the opacity a bit, just because I liked the effect.</p>
<p>Now we need a way to display the contents of the latest tweet. So drag a UILabel onto the View canvas and resize it to fit nicely over the word bubble graphic. Turn the &#8220;# Lines&#8221; setting up to five or so, set the font size to something that looks legible and change the &#8220;Line Breaks&#8221; option to &#8220;Word Wrap. Then wire it up to the <em>tweetLabel</em> IBOutlet, like you did with the UIImageView.</p>
<p><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-4368" title="Adding the Label" src="//www.webmaster-source.com/wp-content/uploads/nsxmlparser-adding-the-label.png" alt="" width="600" height="421" /></p>
<p>Ready to tie everything together? Switch back to Xcode and add one last method to the controller class.</p>
<pre class="brush: cpp; title: ; notranslate">
- (void)updateView {

//Select the latest tweet
NSDictionary *latestTweet = [statuses objectAtIndex:0];

//Set the tweet label
[tweetLabel setText:[latestTweet objectForKey:@&quot;text&quot;]];

//Set the background image after downloading it.
NSString *urlString = [latestTweet objectForKey:@&quot;profile_background_image_url&quot;];
NSURL *url = [NSURL URLWithString:urlString];
NSData *data = [NSData dataWithContentsOfURL:url];
UIImage *background = [[UIImage alloc] initWithData:data];
[backgroundImage setImage:background];
backgroundImage.contentMode = UIViewContentModeScaleAspectFill;

}
</pre>
<p>While it looks nearly as intimidating as the NSXMLParser <em>didEndElement</em> delegate method, it&#8217;s actually quite a bit simpler. The first line gets the newest tweet from the <em>statuses</em> array, the =<em>[tweetLabel setText:&#8230;]</em>= line updates the UILabel with the text of the message, and the last part changes the background image behind the word bubble to be the same as the Twitter user&#8217;s profile background.</p>
<p>That last part needs the most explanation. Before we can display the image (which is what the <em>setImage</em> line does) we have to download it first. Taking the <em>urlString</em>, which of course is a string containing the web address where the image can be found, we convert it to a NSURL object, which is named <em>url</em>. We create a new NSData object and use it&#8217;s <em>dataWithContentsOfURL</em> method to download the image. (Cocoa requires that URLs used with it&#8217;s objects be of the NSURL class.) Next we initialize a UIImage object with the NSData object and set it as the image in the UIImageView named backgroundImage. Oh, and we set the content mode to <em>UIViewContentModeScaleAspectFill</em> so it&#8217;s not squished funny.</p>
<p>Now if you build and run the app, you should get something like this:</p>
<p style="text-align: center;"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-4369 imgborder" title="A styled tweet in the iOS app" src="//www.webmaster-source.com/wp-content/uploads/nsxmlparser-first-demo-tweet-on-bg.png" alt="" width="600" height="394" /></p>
<p>Before we free up our allocated memory and finish the app up, let&#8217;s add one more thing: an avatar field! Switch back to Interface Builder and add a new UIImageView. Resize it to 52&#215;52 or so and wire it up to the &#8220;avatar&#8221; IBOutlet. Re-using the code from the background image bit, we can quickly modify it for the avatar.</p>
<pre class="brush: cpp; title: ; notranslate">
//Set the avatar image after downloading it.
NSString *avatarUrlString = [latestTweet objectForKey:@&quot;profile_image_url&quot;];
NSURL *avatarUrl = [NSURL URLWithString:avatarUrlString];
NSData *avatarData = [NSData dataWithContentsOfURL:avatarUrl];
UIImage *avatarImage = [[UIImage alloc] initWithData:avatarData];
[avatar setImage:avatarImage];
avatar.contentMode = UIViewContentModeScaleAspectFill;
</pre>
<p>That goes in the <em>updateView</em> method, after everything else.</p>
<p>Now, before we can say the application is finished, there is one thing that needs to be done. Any memory we specifically allocated should be released. It&#8217;s not a huge deal in a single-view app, as it will be forcefully freed up on exit, but it&#8217;s a good habit to get into. (In more complicated applications, you can expect to see frequent crashes if you don&#8217;t release objects when you&#8217;re done with them.) It&#8217;s easy to do. For every object we explicitely <em>alloc</em> or <em>retain</em>, we have to <em>release</em> somewhere. The <em>dealloc</em> method is called when the application quits in this case, so we put most of our <em>release</em> statements there.</p>
<p>You can learn more about iOS memory management in <a href="http://mobile.tutsplus.com/freebies/qa-sessions/qa-session-3-ios-memory-management-and-best-practices/">this screencast</a>.</p>
<pre class="brush: cpp; title: ; notranslate">
- (void)dealloc {
[twitterUser release];
[statuses release];
[currentElement release];
[currentElementData release];
[currentElementString release];
[backgroundImage release];
[tweetLabel release];
[avatar release];
[super dealloc];
}
</pre>
<p>And we&#8217;re done!</p>
<p style="text-align: center;"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-4370 imgborder" title="And we're done!" src="//www.webmaster-source.com/wp-content/uploads/nsxmlparser-final.png" alt="" width="505" height="342" /></p>
<h3>Additional Challenge</h3>
<p>Want to add to this sample application? Try making the following change: Use an <a href="http://developer.apple.com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSTimer_Class/Reference/NSTimer.html">NSTimer</a> to cycle through the items in the <em>statuses</em> array and update the View accordingly. Most of the groundwork has been laid for you already.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2011/10/24/building-an-iphone-app-to-parse-the-twitter-api-with-nsxmlparser/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Envato Launches the Tuts+ Marketplace</title>
		<link>https://www.webmaster-source.com/2010/09/01/envato-launches-the-tuts-marketplace/</link>
		<comments>https://www.webmaster-source.com/2010/09/01/envato-launches-the-tuts-marketplace/#comments</comments>
		<pubDate>Wed, 01 Sep 2010 10:58:08 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Envato]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=3547</guid>
		<description><![CDATA[Envato, the company behind the Tuts+ blogs, has launched a new marketplace for buying and selling premium tutorials. Running from $3 to $7 apiece, the tutorials include the ones available under the Tuts+ subscription as well as user-submitted ones unavailable elsewhere. It&#8217;s certainly an interesting idea, though I wonder if it might take away from [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Envato, the company behind the Tuts+ blogs, has <a href="http://net.tutsplus.com/articles/news/introducing-the-tuts-marketplace-making-premium-accessible-to-everyone/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+nettuts+%28NETTUTS%29">launched a new marketplace for buying and selling premium tutorials</a>. Running from $3 to $7 apiece, the tutorials include the ones available under the Tuts+ subscription as well as user-submitted ones unavailable elsewhere.</p>
<p style="text-align: center;"><a href="http://marketplace.tutsplus.com/"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter size-full wp-image-3548 imgborder" title="Tuts+ Marketplace" src="//www.webmaster-source.com/wp-content/uploads/tutsplus-marketplace.jpg" alt="" width="600" height="277" /></a></p>
<p>It&#8217;s certainly an interesting idea, though I wonder if it might take away from the blogs a little bit? The Tuts+ blogs pay a lot of money upfront to their regular authors, but infrequent contributors could be more attracted to the promise of recurring sales.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2010/09/01/envato-launches-the-tuts-marketplace/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress.tv</title>
		<link>https://www.webmaster-source.com/2009/01/23/wordpresstv/</link>
		<comments>https://www.webmaster-source.com/2009/01/23/wordpresstv/#comments</comments>
		<pubDate>Fri, 23 Jan 2009 12:05:52 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=1751</guid>
		<description><![CDATA[Automattic&#8217;s latest site, WordPress.tv is quite interesting. The site, described as &#8220;Your Visual Resource for All Things WordPress,&#8221; is an attempt at putting together a central place to find quality WordPress-related videos. So far it&#8217;s mainly short beginner-oriented tutorials and clips from WordCamp, though it will eventually have all the videos they can round-up. Judging [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Automattic&#8217;s latest site, <a href="http://wordpress.tv">WordPress.tv</a> is quite interesting. The site, described as &#8220;Your Visual Resource for All Things WordPress,&#8221; is an attempt at putting together a central place to find quality WordPress-related videos.</p>
<p>So far it&#8217;s mainly short beginner-oriented tutorials and clips from WordCamp, though it will eventually have all the videos they can round-up. Judging by what they&#8217;ve done so far, they will be adding existing videos from around the web, by using Vimeo/YouTube/etc embed code snippets, in addition to their own clips.</p>
<p>On the design end, it looks pretty good; it&#8217;s kind of a combination of the WordPress.org design and <a href="http://hulu.com">Hulu,</a> with a dash of YouTube. The videos are sized nicely, plenty of information to the right, and threaded Gravatar-equipped comments underneath. It&#8217;s very clean, and (big surprise) it&#8217;s all powered by WordPress.</p>
<p>The site looks promising. I will definitely be checking in now and again to see how it turns out.</p>
<p><object width="400" height="224" data="http://v.wordpress.com/DEesBAlR" type="application/x-shockwave-flash"><param name="src" value="http://v.wordpress.com/DEesBAlR" /><param name="allowfullscreen" value="true" /></object></p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2009/01/23/wordpresstv/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>10 Cool and Useful CSS Tutorials</title>
		<link>https://www.webmaster-source.com/2008/11/16/10-cool-and-useful-css-tutorials/</link>
		<comments>https://www.webmaster-source.com/2008/11/16/10-cool-and-useful-css-tutorials/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 10:24:32 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=1012</guid>
		<description><![CDATA[If you work with CSS much at all, these ten tutorials are must-reads. They range from sprites to print stylesheets, speech bubbles to sliding doors. The sorts of things that are nice to have in your CSS toolbox for future use, when you&#8217;ll undoubtedly need them. How to: CSS Large Background &#8211; Web Designer Wall [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>If you work with CSS much at all, these ten tutorials are must-reads. They range from sprites to print stylesheets, speech bubbles to sliding doors. The sorts of things that are nice to have in your CSS toolbox for future use, when you&#8217;ll undoubtedly need them.<span id="more-1012"></span></p>
<ul>
<li><a href="http://www.webdesignerwall.com/tutorials/how-to-css-large-background/">How to: CSS Large Background</a> &#8211; Web Designer Wall shows how to code a website around a single, large background image, as you can see <a href="http://www.webdesignerwall.com/wp-content/themes/wdw/images/main-bg.jpg">they&#8217;ve done</a> with their own site.</li>
<li><a href="http://www.willmayo.com/2007/02/10/css-speech-bubbles/">CSS Speech Bubbles</a> &#8211; For comments, quotes, Twitter posts, or whatever you could possibly want to put inside a word bubble.</li>
<li><a href="http://www.webdesignerwall.com/tutorials/css-gradient-text-effect/">CSS Gradient Text Effect</a> &#8211; Text styled with a gradient image, yet it&#8217;s still plain text.</li>
<li><a href="http://cameronmoll.com/archives/2008/02/the_highly_extensible_css_interface_the_series/">The Highly Extensible CSS Interface</a> &#8211; Cameron Moll&#8217;s famous posts. An interesting read, though not necessarily a tutorial.</li>
<li><a href="http://www.alistapart.com/articles/slidingdoors/">Sliding Doors of CSS</a> &#8211; A List Apart&#8217;s widely used technique of using layered background images to create a dynamically sized button or tab.</li>
<li><a href="http://css-tricks.com/css-sprites-what-they-are-why-theyre-cool-and-how-to-use-them/">CSS Sprites: What They Are, Why They’re Cool, and How To Use Them</a></li>
<li><a href="http://www.smileycat.com/miaow/archives/000230.php">How to Create a Block Hover Effect for a List of Links</a></li>
<li><a href="http://www.webmaster-source.com/2008/01/11/build-a-print-stylesheet/">Build a Print Stylesheet</a> &#8211; If someone prints your page, should they have to waste paper on sidebars, ads, comment forms, or other junk only of interest to online readers?</li>
<li><a href="http://www.mis-algoritmos.com/2007/03/16/some-styles-for-your-pagination/">Some styles for your pagination</a></li>
<li><a href="http://www.webmaster-source.com/2008/08/11/getting-around-ies-lack-of-min-width-support/">Getting Around IE’s Lack of Min-Width Support</a> &#8211; Min-width, such a useful CSS attribute. Too bad Microsoft didn&#8217;t see fit to support it in Internet Explorer&#8230;</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2008/11/16/10-cool-and-useful-css-tutorials/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Design (And More) Spotlight: Webmonkey 2.0</title>
		<link>https://www.webmaster-source.com/2008/05/22/design-and-more-spotlight-webmonkey-20/</link>
		<comments>https://www.webmaster-source.com/2008/05/22/design-and-more-spotlight-webmonkey-20/#comments</comments>
		<pubDate>Thu, 22 May 2008 10:46:51 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[articles]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[reference]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Webmonkey]]></category>
		<category><![CDATA[wiki]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/?p=559</guid>
		<description><![CDATA[Webmonkey, around sine 1996, is one of the most well-known and long-running web development sites. Their blog was one of the first blogs I read, and the first one that I subscribed to via RSS. Some changes have been happening lately over at Webmonkey. They&#8217;ve been purchased by Condé Nast, the parent company of Wired [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><a href="http://webmonkey.com">Webmonkey</a>, around sine 1996, is one of the most well-known and long-running web development sites. Their blog was one of the first blogs I read, and the first one that I subscribed to via RSS. Some changes have been happening lately over at Webmonkey. They&#8217;ve been purchased by Condé Nast, the parent company of Wired Magazine, and they&#8217;re restructuring their site.</p>
<p>Let&#8217;s start with their blog. When it launched, it was known as Monkey Bites. Eventually the blog was moved over to Wired.com, where it ran for awhile before being renamed to &#8220;Compiler.&#8221; The blog is, once again, known as Monkey Bites, and is now residing at <code>webmonkey.com/blog</code> and it&#8217;s integrated more tightly with Webmonkey than ever before.</p>
<p>The WebMonkey site itself is now a wiki. What used to be a repository for tutorials penned by HotWired&#8217;s designers and developers is now opening-up and allowing anyone who knows what they&#8217;re talking about to submit articles to be included. It looks like WebMonkey is moving forward into the 21st century, making an effort to keep up with today&#8217;s technologies, instead of staying a dusty collection of out-of-date tutorials.</p>
<p>Now, let&#8217;s move on to the design.<span id="more-559"></span></p>
<p><img src="http://i27.tinypic.com/2ufav86.jpg" alt="" width="500" height="236" /></p>
<p>Looks pretty good, doesn&#8217;t it? It&#8217;s clean and modern, and the layout seems well-planned. The colors are pleasing, the navigation good. The ads are unobtrusive. Overall the design is well done, following more of a magazine-type style than before.</p>
<p>Yes, the design has come a long way from the <a href="http://web.archive.org/web/*/http://webmonkey.com">90s-type look</a> it kept until recently.</p>
<p>One of my favorite elements of the design is the navigation. It&#8217;s a good example of usable navigation. The large buttons are few, and clearly labeled. The dropdown menus help to keep the navigation uncluttered, providing narrower navigation when it&#8217;s needed. In addition to being simple, the button styling looks great.</p>
<p><img src="http://i29.tinypic.com/azhybq.jpg" alt="" width="500" height="92" /></p>
<p>The site has the standard, ugly Wired footer, so there&#8217;s nothing to see there&#8230; <img src="https://www.webmaster-source.com/wp-includes/images/smilies/icon_biggrin.gif" alt=":D" class="wp-smiley" /></p>
<p>The front page is structured well. Above the fold, you get the most recent articles and blog posts and articles, as well as a &#8220;Getting Started&#8221; box telling a little about the new Webmonkey, and providing some useful links Below that you get a roll of the most recent posts from the MonkeyBites blog, and a sidebar with some headlines from <code>programming.reddit.com</code>. (<a href="http://reddit.com">Reddit</a> is another Condé Nast property.)</p>
<p>Webmonkey&#8217;s revamp was well-executed, and it looks like the site will shape-up to be a major player once again.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2008/05/22/design-and-more-spotlight-webmonkey-20/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>47 CSS Tutorials, Techniques, and Resources</title>
		<link>https://www.webmaster-source.com/2007/08/14/47-css-tutorials-techniques-and-resources/</link>
		<comments>https://www.webmaster-source.com/2007/08/14/47-css-tutorials-techniques-and-resources/#comments</comments>
		<pubDate>Tue, 14 Aug 2007 08:35:38 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/2007/08/14/47-css-tutorials-techniques-and-resources/</guid>
		<description><![CDATA[CSS. Without it the web would look pathetic. If the W3C hadn&#8217;t put out the CSS standard, our blogs would look like this, this, or this. Is that scary or what? Whether you&#8217;re a web designer, a PHP coder, or a blogger, it pays to know the ins and outs of CSS and HTML. Even [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>CSS. Without it the web would look pathetic.  If the W3C hadn&#8217;t put out the CSS standard, our blogs would look like <a href="http://web.archive.org/web/19961226140957/http://www3.yahoo.com/">this</a>, <a href="http://web.archive.org/web/19961022174919/http://www.cnet.com/">this</a>, or <a href="http://web.archive.org/web/19991012022531/http://blogger.com/">this</a>. Is that scary or what?</p>
<p>Whether you&#8217;re a web designer, a PHP coder, or a blogger, it pays to know the ins and outs of CSS and HTML. Even if you&#8217;ve memorized the entire CSS Spec documents (unlikely), there&#8217;s still more to learn. CSS Maniacs everywhere are coming up with new techniques every day, and it&#8217;s a good idea to keep current on the latest methods for dodging around Internet Explorer bugs and building CSS grid layouts. Then you have a constant stream of downloadable utilities (and Firefox extensions) to aid you in your design work.</p>
<p>Well, let&#8217;s cut to the chase. Here are a few CSS tutorials, techniques, and resources (in no particular order):<span id="more-160"></span><br />
<br style="clear: both" /></p>
<h3>General</h3>
<ul>
<li><a href="http://www.dynamicdrive.com/style/">Dynamic Drive CSS Library</a></li>
<li><a href="http://css.maxdesign.com.au/index.htm">CSS.MaxDesign</a> &#8211; Home of the &#8220;Listamatic&#8221; tutorials</li>
<li><a href="http://www.wipeout44.com/brain_food/css_ie_bug_fixes.asp">Internet Explorer CSS Bug Fixes</a></li>
<li><a href="http://www.macworld.com/2005/12/secrets/januarycreate/index.php">Macworld Secrets: CSS tricks for custom bullets</a></li>
<li><a href="http://www.smileycat.com/miaow/archives/000230.php">How to Create a Block Hover Effect for a List of Links</a></li>
<li><a href="http://www.cssplay.co.uk/menus/mini_tabbed_pages.html">Mini Tabbed Pages</a></li>
<li><a href="http://www.jasonbartholme.com/2007/04/02/101-css-resources-to-add-to-your-toolbelt-of-awesomeness/">101 CSS Resources to Add to Your Toolbelt of Awesomeness</a></li>
<li><a href="http://razvan.seopedia.ro/2006/07/19/71-de-meniuri-css-utopic/">71 CSS Menu Links</a></li>
<li><a href="http://www.smashingmagazine.com/category/css/">CSS @ Smashing Magazine</a></li>
<li><a href="http://www.ndesign-studio.com/blog/mac/css-dock-menu">CSS Dock Menu</a></li>
<li><a href="http://www.tizag.com/">Tizag.com</a></li>
<li><a href="http://www.webdesignfromscratch.com/">Web Design From Scratch</a></li>
</ul>
<h3>Rounded Corners</h3>
<ul>
<li><a href="http://wigflip.com/cornershop/">Cornershop</a></li>
<li><a href="http://tools.sitepoint.com/spanky/index.php?submit&amp;fgcolor=77aa34&amp;bgcolor=f6f6ff&amp;radius=10">Spanky Corners</a></li>
<li><a href="http://www.neuroticweb.com/recursos/css-rounded-box/">CSS Rounded Box Generator</a></li>
<li><a href="http://www.smileycat.com/miaow/archives/000044.php">CSS Rounded Corners &#8216;Roundup&#8217;</a></li>
</ul>
<h3>Layout</h3>
<ul>
<li><a href="http://www.sitepoint.com/test/pullquote.htm">Pullquotes That Really Pull</a></li>
<li><a href="http://csseasy.com/">CSSeasy.com</a> &#8211; Learn CSS page layout the modern way.</li>
<li><a href="http://www.webcredible.co.uk/user-friendly-resources/css/css-tricks.shtml">Ten CSS tricks you may not know</a></li>
<li><a href="http://www.webcredible.co.uk/user-friendly-resources/css/more-css-tricks.shtml">Ten more CSS tricks you may not know</a></li>
<li><a href="http://lab.arc90.com/2006/07/image_caption_1.php">Image Caption</a></li>
<li><a href="http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/">CSS Reset</a> &#8211; Remove all browser defaults.</li>
<li><a href="http://www.crucialwebhost.com/blog/master-stylesheet-the-most-useful-css-technique/">Master Stylesheet</a> (similar to CSS reset)</li>
<li><a href="http://www.seo-expert-blog.com/blog/css-galleries-free-web-designs-for-download">CSS Galleries: Free Web Designs for Download</a></li>
<li><a href="http://www.mardiros.net/css-layout.html">CSS Layouts Vs. Table Layouts</a></li>
<li><a href="http://www.webmaster-source.com/2007/06/16/tables-arent-dead-yet/">Tables Aren&#8217;t Dead Yet</a></li>
<li><a href="http://www.csslicingguide.com/">CSS Slicing Guide</a></li>
<li><a href="http://www.barelyfitz.com/screencast/html-training/css/positioning/">Learn CSS Positioning in Ten Steps</a></li>
<li><a href="http://www.netmag.co.uk/zine/develop-css/from-mess-to-css">From Mess to CSS</a></li>
<li><a href="http://www.projectseven.com/tutorials/css/pvii_columns/index.htm">CSS Equal Height Columns</a> (JavaScript)</li>
</ul>
<h3>Tools</h3>
<ul>
<li><a href="http://lipsum.com/">Dummy Lipsum</a></li>
<li><a href="http://jigsaw.w3.org/css-validator/">W3C CSS Validator</a></li>
<li><a href="http://mozilla.org/firefox/">Mozilla Firefox</a> &#8211; Face it, Internet Explorer sucks.</li>
<li><a href="http://www.highdots.com/css-tab-designer/">CSS Tab Designer</a></li>
<li><a href="http://www.cssdev.com/csstweak/">CSS Tweak</a></li>
<li><a href="http://browsers.evolt.org/?ie/32bit/standalone">Standalone Internet Explorer</a> (IE3-6) &#8211; Useful for testing.</li>
<li><a href="http://www.inknoise.com/experimental/layoutomatic.php">Layout-O-Matic</a></li>
</ul>
<h3>Firefox Extensions</h3>
<ul>
<li><a href="http://ieview.mozdev.org/">IE View</a></li>
<li><a href="http://www.kevinfreitas.net/extensions/measureit/">MeasureIt</a></li>
<li><a href="http://chrispederick.com/work/web-developer/">Web Developer</a></li>
<li><a href="http://developer.yahoo.com/yslow/">YSlow</a></li>
</ul>
<h3>Design Galleries (For Inspiration)</h3>
<ul>
<li><a href="http://www.cssremix.com/">CSS Remix</a></li>
<li><a href="http://cssdump.com/">CSS Dump</a></li>
<li><a href="http://www.cssreboot.com/">CSS Reboot</a> &#8211; A gallery powered by <a href="http://pligg.com">Pligg</a></li>
<li><a href="http://faveup.com/">F</a><a href="http://faveup.com/">aveUp</a></li>
</ul>
<h3>Books</h3>
<ul>
<li><a href="http://www.amazon.com/gp/product/0957921888?ie=UTF8&amp;tag=webmasterso0d-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0957921888">The CSS Anthology</a></li>
<li><a href="http://www.amazon.com/gp/product/0321430840?ie=UTF8&amp;tag=webmasterso0d-20&amp;linkCode=as2&amp;camp=1789&amp;creative=9325&amp;creativeASIN=0321430840">HTML, XHTML, and CSS, Sixth Edition</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2007/08/14/47-css-tutorials-techniques-and-resources/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>North X East</title>
		<link>https://www.webmaster-source.com/2007/07/04/north-x-east/</link>
		<comments>https://www.webmaster-source.com/2007/07/04/north-x-east/#comments</comments>
		<pubDate>Wed, 04 Jul 2007 17:55:01 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Help]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/2007/07/04/north-x-east/</guid>
		<description><![CDATA[Are you a blogger? Whether you&#8217;re new to blogging, or you&#8217;ve been blogging for years, you should take a look at North X East. Once or twice a week, a nice informative article is posted, going in-depth on a blogging-related topic. I often find myself waiting anxiously for another article to be posted (much like [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>Are you a blogger? Whether you&#8217;re new to blogging, or you&#8217;ve been blogging for years, you should take a look at <a href="http://www.northxeast.com/">North X East</a>. Once or twice a week, a nice informative article is posted, going in-depth on a blogging-related topic.</p>
<p>I often find myself waiting anxiously for another article to be posted (much like I do with <a href="http://smashingmagazine.com">Smashing Magazine</a>).</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2007/07/04/north-x-east/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Design From Scratch</title>
		<link>https://www.webmaster-source.com/2007/06/07/web-design-from-scratch/</link>
		<comments>https://www.webmaster-source.com/2007/06/07/web-design-from-scratch/#comments</comments>
		<pubDate>Thu, 07 Jun 2007 15:57:05 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/2007/06/07/web-design-from-scratch/</guid>
		<description><![CDATA[Web Design from Scratch is a site that calls itself &#8220;Your complete guide to web design&#8221;. They cober a wide range of stuff from HTML/CSS to Graphic Design. There&#8217;s plenty to check out. I like their Opinions page, where they have articles on topics such as &#8220;Why Code by Hand?&#8220;. If you want to build [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.webdesignfromscratch.com/">Web Design from Scratch</a> is a site that calls itself &#8220;Your complete guide to web design&#8221;. They cober a wide range of stuff from HTML/CSS to Graphic Design. There&#8217;s plenty to check out. I like their Opinions page, where they have articles on topics such as &#8220;<a href="http://www.webdesignfromscratch.com/why-code-by-hand.cfm">Why Code by Hand?</a>&#8220;. If you want to build a layout for your site/blog, then take a look. They cover nearly every aspect of design.</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2007/06/07/web-design-from-scratch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Webmonkey</title>
		<link>https://www.webmaster-source.com/2007/06/02/webmonkey/</link>
		<comments>https://www.webmaster-source.com/2007/06/02/webmonkey/#comments</comments>
		<pubDate>Sun, 03 Jun 2007 01:14:45 +0000</pubDate>
		<dc:creator><![CDATA[Matt]]></dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.webmaster-source.com/2007/06/02/webmonkey/</guid>
		<description><![CDATA[Webmonkey is one of the oldest webmaster tutorial sites around. They update their content regularly and sort it into meaningful categories. The content is well-written and easy to read. If you&#8217;re a beginning webmaster, head over to Webmonkey. I&#8217;m also fan of their MonkeyBites Blog, which covers tech news,]]></description>
				<content:encoded><![CDATA[<p><a href="http://webmonkey.com">Webmonkey</a> is one of the oldest webmaster tutorial sites around. They update their content regularly and sort it into meaningful categories. The content is well-written and easy to read. If you&#8217;re a beginning webmaster, head over to <a href="http://webmonkey.com">Webmonkey</a>. I&#8217;m also fan of their <a href="http://blog.wired.com/monkeybites/">MonkeyBites Blog</a>, which covers tech news,</p>
]]></content:encoded>
			<wfw:commentRss>https://www.webmaster-source.com/2007/06/02/webmonkey/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/


Served from: www.webmaster-source.com @ 2026-04-29 11:39:16 by W3 Total Cache
-->