<?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>Build Internet &#187; Resources</title>
	<atom:link href="http://buildinternet.com/category/resources/feed/" rel="self" type="application/rss+xml" />
	<link>http://buildinternet.com</link>
	<description>Web Design, Development, and Business</description>
	<lastBuildDate>Fri, 02 Mar 2012 20:10:27 +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>YRDropdownView &#8211; A Polite UIAlertView Alternative for iOS</title>
		<link>http://buildinternet.com/2012/02/yrdropdownview-a-polite-uialertview-alternative-for-ios/</link>
		<comments>http://buildinternet.com/2012/02/yrdropdownview-a-polite-uialertview-alternative-for-ios/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 23:07:20 +0000</pubDate>
		<dc:creator>Eli Perkins</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[alert]]></category>
		<category><![CDATA[ios]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[ui]]></category>

		<guid isPermaLink="false">http://buildinternet.com/?p=10193</guid>
		<description><![CDATA[YRDropdownView is an iOS library for displaying stylish alerts, warnings, and errors]]></description>
			<content:encoded><![CDATA[<h3>UIKit&#8217;s Shortcomings</h3>
<p>From day one, iOS developers have been struggling to alert users about simple warnings and errors that may not interrupt the flow of the app. Popping up UIAlertViews requires the user to click a button to move along, which wasn&#8217;t quite necessary for warnings that merely limit useability. Adding a UILabel somewhere on the screen isn&#8217;t consistent and doesn&#8217;t always look great. </p>
<p>Maybe you just have some more information you want to inform your user about. Simply adding it to the screen is sufficient, but what if your information is added off screen? How does your user know it has appeared? TweetBot found a great solution to that. By overlaying a simple panel, with an icon, title, and message, the flow of the app is uninterrupted, yet informs the user in a concise manner.</p>
<p><img class="aligncenter" title="Tweetbot Alert Example" src="http://buildinternet.s3.amazonaws.com/images/yrdropdownview-ios/tweetbot.png" alt="Tweetbot Alert Example" width="500" height="381" /></p>
<hr/>
<h3>Imitation Is The Greatest Form Of Flattery</h3>
<p><img class="aligncenter" title="YRDropdownView" src="http://buildinternet.s3.amazonaws.com/images/yrdropdownview-ios/screenshot.png" alt="YRDropdownView" width="400" height="570" /></p>
<p>YRDropdownView is a simple and versitile class that will increase the visibility of information relating to your app in a stylish way. YRDropdownView draws inspiration from such libraries like <a href="https://github.com/MugunthKumar/MKInfoPanelDemo">MKInfoPanel</a>, <a href="https://github.com/jdg/MBProgressHUD">MBProgressHUD</a>, and <a href="https://github.com/joycodes/DSActivityView">DSActivityView</a> and fills the gaps where these classes left off.</p>
<h3>Usage</h3>
<p>herever you want to use YRDropdownView, import the header file as follows:</p>
<pre class="objc">
#import "YRDropdownView.h"
</pre>
<h4>Basic</h4>
<p>You can create your dropdown by calling the singleton method:</p>
<pre class="objc">
[YRDropdownView showDropdownInView:self.view
                             title:@"Warning"
                            detail:@"Danger Will Robinson. You cannot do that."];
</pre>
<p>By default, calling the above method will only dismiss when clicked on. To dismiss manually in your code, call:</p>
<pre class="objc">
[YRDropdownView hideDropdownInView:self.view];
</pre>
<h4>Customizing</h4>
<p>There are many different ways to customize the alert by calling different singleton methods:</p>
<pre class="objc">
+ (YRDropdownView *)showDropdownInView:(UIView *)view
                                 title:(NSString *)title;

+ (YRDropdownView *)showDropdownInView:(UIView *)view
                                 title:(NSString *)title
                                detail:(NSString *)detail;

+ (YRDropdownView *)showDropdownInView:(UIView *)view
                                 title:(NSString *)title
                                detail:(NSString *)detail
                              animated:(BOOL)animated;

+ (YRDropdownView *)showDropdownInView:(UIView *)view
                                 title:(NSString *)title
                                detail:(NSString *)detail
                                 image:(UIImage *)image
                              animated:(BOOL)animated;

+ (YRDropdownView *)showDropdownInView:(UIView *)view
                                 title:(NSString *)title
                                detail:(NSString *)detail
                                 image:(UIImage *)image
                              animated:(BOOL)animated
                             hideAfter:(float)delay;

+ (BOOL)hideDropdownInView:(UIView *)view;
+ (BOOL)hideDropdownInView:(UIView *)view animated:(BOOL)animated;

+ (YRDropdownView *)showDropdownInWindow:(UIWindow *)window
                                   title:(NSString *)title;

+ (YRDropdownView *)showDropdownInWindow:(UIWindow *)window
                                   title:(NSString *)title
                                  detail:(NSString *)detail;

+ (YRDropdownView *)showDropdownInWindow:(UIWindow *)window
                                   title:(NSString *)title
                                  detail:(NSString *)detail
                                animated:(BOOL)animated;

+ (YRDropdownView *)showDropdownInWindow:(UIWindow *)window
                                   title:(NSString *)title
                                  detail:(NSString *)detail
                                   image:(UIImage *)image
                                animated:(BOOL)animated;

+ (YRDropdownView *)showDropdownInWindow:(UIWindow *)window
                                   title:(NSString *)title
                                  detail:(NSString *)detail
                                   image:(UIImage *)image
                                animated:(BOOL)animated
                               hideAfter:(float)delay;

+ (BOOL)hideDropdownInWindow:(UIWindow *)window;
+ (BOOL)hideDropdownInWindow:(UIWindow *)window animated:(BOOL)animated;
</pre>
<h3>Notes</h3>
<h4>Label and Background Customization</h4>
<p>Currently, the title and detail labels, as well as the yellow background, are static for all dropdowns. Customizing these features are a TODO for this project.</p>
<h4>Automatic Reference Counting (ARC) support</h4>
<p>ARC support has been neglected in part for now. Your contributions are more than welcome, however. If you want to use YRDropdownView in an ARC project, <a href="http://stackoverflow.com/questions/6646052/how-can-i-disable-arc-for-a-single-file-in-a-project">just add the add the compiler flag:</a></p>
<pre class="objc">
-fno-objc-arc
</pre>
<p>to all YRDropdownView files in your project.</p>
<h3>Project on GitHub</h3>
<p>For the cutting edge releases and outstanding issues, we&#8217;ve set up a <a title="YRDropdownView" href="https://github.com/onemightyroar/YRDropdownView">GitHub repository to keep everything in order</a>. Feel free to post any code related issues or contributions there in addition to in the comments below. We&#8217;ll also be doing minor releases there from time to time without making full blog posts. Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://buildinternet.com/2012/02/yrdropdownview-a-polite-uialertview-alternative-for-ios/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Supersized 3.2 &#8211; Fullscreen Slideshow jQuery Plugin</title>
		<link>http://buildinternet.com/2011/07/supersized-3-2-fullscreen-jquery-slideshow/</link>
		<comments>http://buildinternet.com/2011/07/supersized-3-2-fullscreen-jquery-slideshow/#comments</comments>
		<pubDate>Mon, 11 Jul 2011 22:40:39 +0000</pubDate>
		<dc:creator>Sam Dunn</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[fullscreen]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[slideshow]]></category>
		<category><![CDATA[Supersized]]></category>

		<guid isPermaLink="false">http://buildinternet.com/?p=9914</guid>
		<description><![CDATA[This version of Supersized has themes, direct slide links, dynamic preloading, and an API.]]></description>
			<content:encoded><![CDATA[
<h3>Introducing Supersized 3.2</h3>
<p><a href="http://buildinternet.com/project/supersized/"><img class="alignnone" title="Supersized Project Page" src="http://buildinternet.s3.amazonaws.com/images/supersized-3-2/supersized-screen.jpg" alt="" width="600" height="345" /></a></p>
<h4>Features</h4>
<ul>
<li>Resizes images to fill browser while maintaining image dimension ratio</li>
<li>Cycles backgrounds via slideshow with transitions and dynamic preloading</li>
<li>Core version is available for those that just want background resizing.</li>
<li>Navigation controls with keyboard support</li>
<li>Integration with Flickr – pull photos by user, set, or group</li>
<li>Head over to the <a title="Project Page" href="http://buildinternet.com/project/supersized/">project page</a> for all the details.</li>
</ul>
<h4>New in Supersized 3.2</h4>
<ul>
<li>Complete rewrite of the Supersized script.</li>
<li>More options, including ability to prevent slides from being cut off.</li>
<li>Link directly to slides</li>
<li>API lets you call functions directly (eg. play/pause, next, previous, and jump directly to a slide)</li>
<li>Theme files are now separate from base files, which will make upgrades much easier. The <a href="http://buildinternet.com/project/supersized/themes.html">Shutter theme</a> is included in each download.</li>
<li>Flickr is not yet updated to 3.2 (it&#8217;s on it&#8217;s way)</li>
</ul>
<h3>Inspiration / Sites Using Supersized</h3>
<p>I&#8217;ve put together a small sample of Supersized sites that I&#8217;ve come across recently. <span class="important">Keep in mind, these sites are not necessarily running the latest version, and some are heavily customized</span>. I will be putting together a more extensive list for the project page, so feel free to shoot your site to <a href="mailto:sam@onemightyroar.com">sam@onemightyroar.com</a>!</p>
<p><a href="https://www.sector9.com/" target="_blank"><img class="alignnone" title="Sector 9" src="http://buildinternet.s3.amazonaws.com/images/supersized-3-2/sector9.jpg" alt="" width="600" height="300" /></a><a href="http://www.mychemicalromance.com/" target="_blank"><img class="alignnone" title="My Chemical Romance" src="http://buildinternet.s3.amazonaws.com/images/supersized-3-2/chemical-romance.jpg" alt="" width="600" height="300" /></a><a href="http://www.risd.edu/"><img class="alignnone" title="Rhode Island School of Design" src="http://buildinternet.s3.amazonaws.com/images/supersized-3-2/risd.jpg" alt="" width="600" height="300" /></a><a href="http://www.hotelcala.com/en/" target="_blank"><img class="alignnone" title="Hotel Cala" src="http://buildinternet.s3.amazonaws.com/images/supersized-3-2/hotelcala.jpg" alt="" width="600" height="300" /></a><a href="http://www.sagmeister.com/"><img class="alignnone" title="Sagmeister" src="http://buildinternet.s3.amazonaws.com/images/supersized-3-2/sagmeister.jpg" alt="" width="600" height="300" /></a><a href="http://www.februe.de/"><img class="alignnone" title="Febru" src="http://buildinternet.s3.amazonaws.com/images/supersized-3-2/febru.jpg" alt="" width="600" height="300" /></a><a href="http://korenman.com/index.html"><img class="alignnone" title="Eric Korenman" src="http://buildinternet.s3.amazonaws.com/images/supersized-3-2/koreman.jpg" alt="" width="600" height="300" /></a><a href="http://www.marchdesignstudio.co.uk/#"><img class="alignnone" title="March Design Studio" src="http://buildinternet.s3.amazonaws.com/images/supersized-3-2/march.jpg" alt="" width="600" height="300" /></a></p>
<h3>Plans for WordPress</h3>
<p>I&#8217;ve noticed quite a few WordPress themes based on Supersized floating around &#8211; I plan on entering into the ring with an official Supersized WordPress theme. While I&#8217;m still at the early stages at this point, in the meantime, you should check out <a href="http://wordpress.org/extend/plugins/wp-supersized/" target="_blank">WP Supersized</a> developed by the talented Ben De Boeck from <a href="http://www.worldinmyeyes.be/2265/" target="_blank">World In My Eyes</a>. <span class="important">Note: This plugin is currently using version 3.1.3</span></p>
<h3>Comments and Feedback</h3>
<p>Just a reminder, you can follow <a href="https://github.com/buildinternet/supersized">Supersized on Github</a>, which is were I will publish minor point releases and field any bug reports.</p>
<p><span class="important">If you have an urgent problem and/or would like to contact me directly to hire for custom work, please email me at <a title="Compose a new mail to sam@onemightyroar.com" href="mailto:sam@onemightyroar.com" rel="noreferrer">sam@onemightyroar.com</a>. For troubleshooting, make sure you have first checked the <a href="http://buildinternet.com/project/supersized/docs.html" target="_blank">documentation</a> and <a href="http://buildinternet.com/project/supersized/faq.html" target="_blank">FAQ</a> sections on the project page.</span></p>
<p>Enjoyed this project? Have a look at our <a href="http://buildinternet.com/project/">Build Internet Projects</a> page for some other stuff you make fancy as well.</p>
<p><em>Banner image provided by <a href="http://colindub.com/">Colin Wojno</a>.<br />
Other photography by <a href="http://brookeshaden.com/">Brooke Shaden</a> and <a href="http://cargocollective.com/mariakazvan">Maria Kazvan</a>.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://buildinternet.com/2011/07/supersized-3-2-fullscreen-jquery-slideshow/feed/</wfw:commentRss>
		<slash:comments>948</slash:comments>
		</item>
		<item>
		<title>Reading List: The Smashing Book #2</title>
		<link>http://buildinternet.com/2011/04/reading-list-the-smashing-book-2/</link>
		<comments>http://buildinternet.com/2011/04/reading-list-the-smashing-book-2/#comments</comments>
		<pubDate>Mon, 18 Apr 2011 00:50:28 +0000</pubDate>
		<dc:creator>Zach Dunn</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Book]]></category>
		<category><![CDATA[Review]]></category>

		<guid isPermaLink="false">http://buildinternet.com/?p=9765</guid>
		<description><![CDATA[Smashing Magazine's latest book release is packed with topics frontend developers and designers will love. Here's our review.]]></description>
			<content:encoded><![CDATA[<h3>Blogs that Publish</h3>
<p>I&#8217;m a little late to the party on this one. When Vitaly contacted us a month ago for feedback on their latest release, I started to read through the book casually between client jobs. A few (well-spent) weeks later, here we are. Ready to give the good word.</p>
<p>It&#8217;s not every day that a blog grows large enough to start its own line of books. When they do, the result is magic. Similar examples can be found with the recent A Book Apart line put out by the same people behind A List Apart. Publishing is a great progression from standard niche blogs.</p>
<p>There are books that teach concrete skills, and there are those that expose you to abstract stuff that sounds impressive. For those looking to build their skill set, this is a common situation when sifting through resources. Substantial content is hard to distinguish from wordy content at times, and even more so when you&#8217;ve just started to learn. Fortunately, certain publishers make this easier for you by developing solid reputations. With this release, Smashing Magazine is slowly becoming one of them.</p>
<p>A good web design book will leave you with some concrete plans, as well as introduce you to more abstract concepts that you can build on in the future. The second Smashing Book is segmented nicely, which means you can jump into any section you want without any issue. All of the chapters are written by folks who pride themselves in being masters of craft for the subject.</p>
<h3>A Look at Content</h3>
<p>This book is definitely more for the UI/UX folks out there. Hardcore development is not a topic that would fit well within the books flow, so you end up with chapters catering more towards the typical frontend developer. As such, certain chapters are more exploratory than applicable; presumably this is to increase general awareness of the platforms without expecting those same people to be responsible for developing.</p>
<p>The graphic design chapters are some of the best introductions to fundamentals to be published in recent memory. I think everyone has accidentally gotten caught up in trend-based design before. You know the situation: using gradients to decorate an otherwise fine layout, or turning buttons into identical matches of those found on Apple&#8217;s website. The graphic design chapter helps distinguish between sensibly made design decisions, and those that just make it &#8220;look good&#8221; at the moment.</p>
<p><img class="aligncenter" title="Chapter 2 in Smashing Book #2" src="http://buildinternet.s3.amazonaws.com/images/reading-list-sm2/smbook-ch2.png" alt="Chapter 2 in Smashing Book #2" width="420" height="595" /></p>
<p>My background is mostly in front-end design, so I may be biased when I say how much enjoyable the usability chapter was. It covered the right bases, especially for those just trying to introduce themselves. Those in digital agencies or web companies will appreciate how candidly the reality of client/project limitations is addressed. Best practice is easy to talk about, but harder to implement successfully when there are other factors in play.</p>
<p><img class="aligncenter" title="Chapter 5 in Smashing Book #2" src="http://buildinternet.s3.amazonaws.com/images/reading-list-sm2/smbook-ch5.png" alt="Chapter 5 in Smashing Book #2" width="420" height="596" /></p>
<p>Christopher Kolb&#8217;s chapter on the application of game design into UI is a fascinating read. This is a design trend you&#8217;ve experienced before without directly noticing. It was a pleasant surprise in topic. Also in this category was Christian Heilmann&#8217;s chapter on warning signs in web development. The introduction is a brilliantly candid summary of what it is like to work on real world projects that haven&#8217;t (and often can&#8217;t) been implemented in 100% proper form.</p>
<p>The chapter on mobile is also a welcome addition. Mobile design and development is one of the largest interactive sections to hit the industry in the past few years. Makes sense to include a new section in this book too. It&#8217;s hard to just be a pure &#8220;website designer&#8221; in today&#8217;s market. If it has a screen and people can interact, it&#8217;s fair game.</p>
<h3>Final Words</h3>
<p>This book isn&#8217;t timeless, but neither is the average website. Like most things associated with the Internet, it will need updating in a few years. In the meantime, use this book to your heart&#8217;s content. <a title="Order the Smashing Book 2" href="https://shop.smashingmagazine.com/smashing-book-2-intl.html" target="_blank">You can get a copy on the official web store</a>. If you already have the book, I would love to hear what you&#8217;re experience was like. Leave a comment if you can!</p>
]]></content:encoded>
			<wfw:commentRss>http://buildinternet.com/2011/04/reading-list-the-smashing-book-2/feed/</wfw:commentRss>
		<slash:comments>17</slash:comments>
		</item>
		<item>
		<title>Mosaic &#8211; Sliding Boxes and Captions jQuery Plugin</title>
		<link>http://buildinternet.com/2011/03/mosaic-sliding-boxes-and-captions-jquery-plugin/</link>
		<comments>http://buildinternet.com/2011/03/mosaic-sliding-boxes-and-captions-jquery-plugin/#comments</comments>
		<pubDate>Wed, 16 Mar 2011 21:36:20 +0000</pubDate>
		<dc:creator>Sam Dunn</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Mosaic]]></category>
		<category><![CDATA[Plugin]]></category>

		<guid isPermaLink="false">http://buildinternet.com/?p=9718</guid>
		<description><![CDATA[The most popular tutorial on Build Internet is now a jQuery plugin. Welcome aboard, Mosaic.]]></description>
			<content:encoded><![CDATA[
<h3>Sliding Boxes Revisited</h3>
<p>The original <a href="http://buildinternet.com/2009/03/sliding-boxes-and-captions-with-jquery/">sliding boxes tutorial</a> is undoubtedly our <strong>most popular tutorial</strong>, with about 660,000 views as of this post. Given our recent surge in <a title="Totem" href="http://buildinternet.com/project/totem/" target="_blank">releasing</a> <a title="Supersized" href="http://buildinternet.com/project/supersized/" target="_blank">plugins</a>, we decided to add sliding boxes to the roster &#8211; say hello to the Mosaic jQuery plugin.<br />
<a href="http://buildinternet.com/project/mosaic/"><img alt="" src="http://buildinternet.s3.amazonaws.com/images/mosaic-launch/mosaic-postscreen.jpg" title="Mosaic jQuery Plugin" class="alignnone" width="600" height="344" /></a></p>
<h4>Features</h4>
<ul>
<li>Automatically generates sliding boxes &amp; captions</li>
<li>Allows slide &amp; fade animations with custom directions</li>
<li>Preloads images within boxes</li>
<li>Lightweight at ~2kb (minified)</li>
</ul>
<h4>Notes &amp; Comments</h4>
<p>Implementation is fairly easy, I&#8217;ve provided a number of sample configurations in the downloadable file on the <a href="http://buildinternet.com/project/mosaic/">project page</a>. It operates with two panels &#8211; an <em>overlay</em> and a <em>backdrop</em>. The content in the overlay gets repositioned according to the options that you provide. <span class="important">I would suggest starting from the base.html file</span>, as it it a stripped down version which can act as a good foundation for customizations.</p>
<p>If you have any questions or feedback, please leave them below &#8211; it helps the plugin grow.</p>
]]></content:encoded>
			<wfw:commentRss>http://buildinternet.com/2011/03/mosaic-sliding-boxes-and-captions-jquery-plugin/feed/</wfw:commentRss>
		<slash:comments>188</slash:comments>
		</item>
		<item>
		<title>Supersized 3.1 jQuery Plugin &#8211; Fullscreen Background Slideshow with Flickr Support</title>
		<link>http://buildinternet.com/2011/02/supersized-3-1-jquery-plugin-fullscreen-background-slideshow-with-flickr-support/</link>
		<comments>http://buildinternet.com/2011/02/supersized-3-1-jquery-plugin-fullscreen-background-slideshow-with-flickr-support/#comments</comments>
		<pubDate>Mon, 28 Feb 2011 03:42:52 +0000</pubDate>
		<dc:creator>Sam Dunn</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[Fullscreen Background]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Supersized]]></category>

		<guid isPermaLink="false">http://buildinternet.com/?p=9678</guid>
		<description><![CDATA[Supersized just got rewritten from the ground up. It's faster, with more options, animations, and added Flickr support.]]></description>
			<content:encoded><![CDATA[
<h3>Hello, Supersized 3.1</h3>
<p><a href="http://buildinternet.com/project/supersized/"><img class="alignnone" title="Visit Supersized Project Page" src="http://buildinternet.s3.amazonaws.com/images/supersized-3-1/supersized-screencap.jpg" alt="" width="600" height="344" /></a></p>
<h4>Features</h4>
<ul>
<li>Resizes images to fill browser while maintaining image dimension ratio</li>
<li>Cycles backgrounds via slideshow with transitions and preloading</li>
<li>Core version is available for those that just want background resizing.</li>
<li>Navigation controls with keyboard support</li>
<li>Integration with Flickr &#8211; pull photos by user, set, or group</li>
<li>Head over to the <a title="Project Page" href="http://buildinternet.com/project/supersized/">project page</a> for all the details.</li>
</ul>
<h4>New in Supersized 3.1</h4>
<ul>
<li>Complete rewrite of the Supersized script.</li>
<li>Automatically adds in required elements.</li>
<li>Added image rendering for faster transition speeds on FF and IE.</li>
<li>Dynamic image handling (no longer relies on predefined ratios).</li>
<li>Unobtrusive backgrounds &#8211; you no longer need to wrap your content in a special div.</li>
<li>Many options added, including fit to screen, keyboard navigation, transition speed, and more.</li>
<li>Created separate script specifically for Flickr &#8211; can pull by user, set, or group.</li>
</ul>
<h3>Upgrading from Version 3.0</h3>
<p>3.1 cleans up a lot of extra code, which means the majority of the upgrade process entails cutting out extra lines. Here&#8217;s the process to upgrade from a clean version 3.0 install:</p>
<ol>
<li>Update the paths to the new JS and CSS files.</li>
<li>Remove the #supersized element and #loading (now called #supersized-loader)</li>
<li>The default image path is &#8220;img/&#8221; &#8211; make sure this matches your setup or change line 56 in supersized.3.1.js</li>
<li>Replace the jQuery which calls Supersized from your page with the new format (&#8220;jQuery(function($){ $.supersized &#8230;&#8221; found in any of the downloadable demos).</li>
</ol>
<p>If you are experiencing trouble upgrading a clean installation feel free to post below in the comments. If you have done a substantial amount of customization and need help, I am available for hire &#8211; details are at the bottom of the <a href="http://buildinternet.com/project/supersized/">project page</a>.</p>
<h3>Comments and Further Development</h3>
<p>If you are going to use the Flickr version of Supersized, you will need to get an API key, <a href="http://www.flickr.com/services/apps/create/">available here</a>. Keep in mind Flickr limits you to 3,600 calls per hour &#8211; so I apologize if the <a href="http://buildinternet.com/project/supersized/flickr/1.0/flickr.html">Flickr demo</a> on the project page goes down.</p>
<p>In order to keep things loading as quickly as possible, if you make any edits to the Supersized javascript file you will want to minify it when you&#8217;re done. There&#8217;s a number of ways to go about this, but I&#8217;ve recently become quite fond of this GUI solution which uses YUI Compressor &#8211; <a href="http://smallerapp.com/" target="_blank">Smaller</a>.</p>
<p>I&#8217;ve added <a href="https://github.com/buildinternet/supersized">Supersized to Github</a>, which is were I will publish minor point releases and field any bug reports.</p>
<p><strong>Thank you for continuing to make Supersized one of the most popular posts on Build Internet.</strong></p>
<p><span class="important">If you have an urgent problem and would like to contact me directly to hire for custom work, please email me at <a href="mailto:sam@onemightyroar.com">sam@onemightyroar.com</a>.</span></p>
<p><em>Banner image provided by <a href="http://www.nonsensesociety.com/2010/12/kitty-gallannaugh/">Kitty Gallannhaugh</a>.<br />
Other photography by <a href="http://www.nonsensesociety.com/2010/12/emily-tebbetts-2/">Emily Tebbetts</a> and <a href="http://www.nonsensesociety.com/2011/02/larissa/">Larissa Felsen</a>.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://buildinternet.com/2011/02/supersized-3-1-jquery-plugin-fullscreen-background-slideshow-with-flickr-support/feed/</wfw:commentRss>
		<slash:comments>895</slash:comments>
		</item>
		<item>
		<title>Totem: A Vertical Ticker jQuery Plugin</title>
		<link>http://buildinternet.com/2011/02/totem-a-vertical-ticker-jquery-plugin/</link>
		<comments>http://buildinternet.com/2011/02/totem-a-vertical-ticker-jquery-plugin/#comments</comments>
		<pubDate>Thu, 17 Feb 2011 18:17:45 +0000</pubDate>
		<dc:creator>Zach Dunn</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Animation]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[Ticker]]></category>

		<guid isPermaLink="false">http://buildinternet.com/?p=9595</guid>
		<description><![CDATA[Totem is our latest jQuery plugin release. It makes animated tickers easy.]]></description>
			<content:encoded><![CDATA[<h3>A New Release</h3>
<p>We&#8217;re very excited to launch our next jQuery plugin since the widely popular Supersized. Totem makes implementing animated vertical tickers with navigation easy. It is the result of a few recent client projects which required finely controlled tickers plus navigation. This is certainly not the first vertical ticker plugin released for jQuery, but it does have a few features that help it stick out. We hope you&#8217;ll find it useful.</p>
<p>Totem is a relatively simple plugin that focuses on being flexible without too many bloated preformatted options. Apply it to a list, and Totem will take it from there. Style and structure as you planned.</p>
<p><a href="http://buildinternet.s3.amazonaws.com/projects/totem/index.html"><img class="aligncenter" title="Totem Ticker jQuery Plugin" src="http://buildinternet.s3.amazonaws.com/images/totem-jquery/demo-screen-of-totem.jpg" alt="Totem Ticker jQuery Plugin" width="600" height="400" /></a></p>
<p>The <a title="Totem Project Page" href="http://buildinternet.com/project/totem/">project page</a> has full documentation and download links, and will be the hub for current and future versions going forward.</p>
<h3>Project on GitHub</h3>
<p>For the cutting edge releases and outstanding issues, we&#8217;ve set up a <a title="Totem on GitHub" href="https://github.com/buildinternet/totem">GitHub repository to keep everything in order</a>. Feel free to post any code related issues or contributions there in addition to in the comments below. We&#8217;ll also be doing minor releases there from time to time without making full blog posts.</p>
<p><a href="https://github.com/buildinternet/totem"><img class="aligncenter" title="Totem on Github" src="http://buildinternet.s3.amazonaws.com/images/totem-jquery/totem-on-github.png" alt="Totem on Github" width="600" height="400" /></a></p>
<h3>The Roadmap</h3>
<p>There&#8217;s still plenty left to do. Future versions will include more animations, and the ability to have a continuous scrolling mode. Have any other suggestions? We&#8217;d love to hear them in to comments.</p>
<h4>Support Requests</h4>
<p>Based on feedback from previous plugins, here&#8217;s a reminder regarding support requests: We&#8217;re physically unable to address every &#8220;How do I make it do ABC under situation XYZ&#8221; posted to the comments. For example, we can&#8217;t provide support for &#8220;How can I load my recent blog posts to this?&#8221; or &#8220;How can I make this pull live results from the following sites.&#8221; If there are clear bugs that need fixing, that&#8217;s another story entirely.</p>
<p><span class="important">This plugin controls presentation, and the specific structure (CSS, HTML, and data) will be unique to your project. We are available for custom work through One Mighty Roar if needed.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://buildinternet.com/2011/02/totem-a-vertical-ticker-jquery-plugin/feed/</wfw:commentRss>
		<slash:comments>40</slash:comments>
		</item>
		<item>
		<title>Sketchy Social Media Icons Freebie Part 2</title>
		<link>http://buildinternet.com/2010/12/sketchy-social-media-icons-freebie-part-2/</link>
		<comments>http://buildinternet.com/2010/12/sketchy-social-media-icons-freebie-part-2/#comments</comments>
		<pubDate>Mon, 06 Dec 2010 15:29:54 +0000</pubDate>
		<dc:creator>Ethan Kociela</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[freebies]]></category>
		<category><![CDATA[icons]]></category>

		<guid isPermaLink="false">http://buildinternet.com/?p=9358</guid>
		<description><![CDATA[A fresh batch of hand drawn social media icons. Diversity is a good thing.]]></description>
			<content:encoded><![CDATA[
<h3>More Icons</h3>
<p>Because of the recent commotion about the lack of icon quantity in my first post, (more specifically an RSS icon) I decided to provide an update with 27 more icons! Generous, I know. Hopefully your arsenal will now be large enough to use these icons in any project.</p>
<ul>
<li>Every icon is a .PNG (making them easy to edit) and packaged together.</li>
<li>The set includes three sizes for each icon: 32&#215;32, 48&#215;48, 57&#215;57.</li>
<li>Each individual icon was made with love</li>
</ul>
<p><a href="http://buildinternet.s3.amazonaws.com/images/sketchy-social-2/sketchy-social-media-2.zip"><img class="aligncenter" title="Sketchy Social Media Icons 2" src="http://buildinternet.s3.amazonaws.com/images/sketchy-social-2/the-collection-sketchy-2.jpg" alt="" width="600" height="635" /></a><br />
The original part one icon set can be found here: <a href="http://buildinternet.com/2010/07/sketchy-social-media-icons-freebie/">http://buildinternet.com/2010/07/sketchy-social-media-icons-freebie/</a></p>
<h3>Usage and Sharing</h3>
<p>If you end up using any of these graphics, please include a link to this post.</p>
]]></content:encoded>
			<wfw:commentRss>http://buildinternet.com/2010/12/sketchy-social-media-icons-freebie-part-2/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>Supersized 3.0 &#8211; Full Screen Background &amp; Slideshow jQuery Plugin</title>
		<link>http://buildinternet.com/2010/11/supersized-3-0-full-screen-background-slideshow-jquery-plugin/</link>
		<comments>http://buildinternet.com/2010/11/supersized-3-0-full-screen-background-slideshow-jquery-plugin/#comments</comments>
		<pubDate>Mon, 08 Nov 2010 00:51:02 +0000</pubDate>
		<dc:creator>Sam Dunn</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Plugin]]></category>
		<category><![CDATA[slideshow]]></category>
		<category><![CDATA[Supersized]]></category>

		<guid isPermaLink="false">http://buildinternet.com/?p=9140</guid>
		<description><![CDATA[Supersized has been one of the most popular posts on Build Internet</span> since the original came out in February 2009. We thought it was time for an update.]]></description>
			<content:encoded><![CDATA[
<p class="announcement"><strong>This is an outdated version!</strong> Supersized has been moved and updated to a more permanent home at the <a title="Supersized jQuery Plugin" href="http://www.buildinternet.com/project/supersized/">official Supersized project page</a>. Check there for the latest release notes and features!</p>
<h3>Introducing Supersized 3.0</h3>
<p><span class="important">Supersized has been one of the most popular posts on Build Internet</span> since the original came out in February 2009. It was later updated during spring 2009 to version 2.0 and has laid untouched ever since. During this update hiatus, the comments stacked up &#8211; they demanded thumbnails, scrolling, better performance, and a number of other requests that I took into account this time around.</p>
<p>Over one year later, I&#8217;m happy to announce Supersized 3.0 &#8211; enjoy. Visit the <a href="http://www.buildinternet.com/project/supersized/">project page</a> for more details.<br />
<a href="http://buildinternet.com/project/supersized/"><img alt="" src="http://buildinternet.s3.amazonaws.com/images/supersized3/project-page.jpg" title="Supersized 3.0" class="aligncenter" width="600" height="360" /></a></p>
<h4>Features</h4>
<ul>
<li>Resize images to fill the entire browser window while maintaining proportional dimensions.</li>
<li>Fullscreen slideshow complete with transitions, navigation, captions, and preloading.</li>
<li>Integrate with existing sites or create your own portfolio gallery.</li>
</ul>
<h4>New in Supersized 3.0</h4>
<ul>
<li>Added <strong>scrolling</strong> &#8211; <span class="important">you can have your site on top of Supersized</span>.</li>
<li><strong>Increased performance</strong> for larger number of images.</li>
<li>Images are now <strong>loaded from an array</strong>.</li>
<li>Added <strong>thumbnail navigation</strong>.</li>
</ul>
<hr/>
<h3>Questions, Thoughts, and Dreams</h3>
<p><span class="important">I have done my best to include a healthy number of demos showing potential uses on the <a href="http://www.buildinternet.com/project/supersized/">project page</a></span>, they should help you get started and answer a lot of your questions.</p>
<p>As always, please leave any questions, requests, or bugs below. If you end up using this plugin, provide a link &#8211; I love to see it in action.</p>
<h4>License</h4>
<p><a rel="license" href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0 License</a><br />
*If you want to share this plugin with others, link directly to this post, please do not directly link to the download or host the current version on your site. Other than that, if you feel so inclined, provide a link back if you end up using it (not required, but appreciated).</p>
<p><em>Header image contains <a href="http://dribbble.com/shots/67396-Browser-Magnify-with-Free-PSD" target="_blank">browser window</a> by <a href="http://wefunction.com/" target="_blank">Liam McKay</a> and <a href="http://interfacelift.com/wallpaper_beta/details/2413/stripes_of_gold.html" target="_blank">background by Interfacelift</a></em></p>
<hr/>
<p><strong>A Note on Support:</strong> <span class="important">If you&#8217;re experiencing problems with the plugin, or want advice on how to modify it, you can post a comment below. Even though we read these comments regularly, <strong>we can&#8217;t keep up with the volume of &#8220;How can you make it do XYZ&#8230;&#8221; requests</strong>. We&#8217;ll try to fix any issues, but please don&#8217;t rely on these comments for a direct how-to fix for something custom. This includes integrating to WordPress, changing content, etc. Thanks!</span></p>
]]></content:encoded>
			<wfw:commentRss>http://buildinternet.com/2010/11/supersized-3-0-full-screen-background-slideshow-jquery-plugin/feed/</wfw:commentRss>
		<slash:comments>294</slash:comments>
		</item>
		<item>
		<title>Sketchy Social Media Icons Freebie</title>
		<link>http://buildinternet.com/2010/07/sketchy-social-media-icons-freebie/</link>
		<comments>http://buildinternet.com/2010/07/sketchy-social-media-icons-freebie/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 13:48:24 +0000</pubDate>
		<dc:creator>Ethan Kociela</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Freebie]]></category>
		<category><![CDATA[icons]]></category>
		<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://buildinternet.com/?p=8884</guid>
		<description><![CDATA[As a designer that at one time had the ambition to become an illustrator, you can imagine I miss the hands-on work quite a bit. I look for any opportunity I can get to incorporate drawing in design. It&#8217;s an easy thing to overlook given the modern day design styles, but it&#8217;s important to go [...]]]></description>
			<content:encoded><![CDATA[<p><span id="more-8884"></span><br />
<!--noteaser--></p>

<p>As a designer that at one time had the ambition to become an illustrator, you can imagine I miss the hands-on work quite a bit. I look for any opportunity I can get to incorporate drawing in design. It&#8217;s an easy thing to overlook given the modern day design styles, but it&#8217;s important to go back to your roots sometimes.</p>
<p>I&#8217;m going to be bold and say social media is popular enough that I don&#8217;t need to justify making these. I tried to show some love to the top social media sites that I frequent across the <a title="Urban Dictionary" href="http://www.urbandictionary.com/define.php?term=interweb" target="_blank">Interweb</a>. </p>
<ul>
<li>Every icon is a .PNG (making them easy to edit) and packaged together.</li>
<li>The set includes four sizes for each icon: 16&#215;16, 32&#215;32, 48&#215;48, 57&#215;57.</li>
<li>It also includes two sizes for each icon next to its type mark: 32px tall, 57px tall</li>
</ul>
<p><img alt="" src="http://buildinternet.s3.amazonaws.com/images/sketchy-social/sketchy-collection.jpg" title="The Collection" class="aligncenter" width="600" height="1115" /></p>
<div id="livedownload"><a class="livedownloadonly" title="Download the icons" href="http://buildinternet.s3.amazonaws.com/images/sketchy-social/sketchy-social-media.zip"></a></div>
<h3>Usage and Sharing</h3>
<p>If you end up using any of these graphics, please include a link to this post.</p>
]]></content:encoded>
			<wfw:commentRss>http://buildinternet.com/2010/07/sketchy-social-media-icons-freebie/feed/</wfw:commentRss>
		<slash:comments>52</slash:comments>
		</item>
		<item>
		<title>Freebie Fiesta &#8211; Twitter Bird &amp; Egg Illustrations</title>
		<link>http://buildinternet.com/2010/06/freebie-fiesta-twitter-bird-egg-illustrations/</link>
		<comments>http://buildinternet.com/2010/06/freebie-fiesta-twitter-bird-egg-illustrations/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 19:16:27 +0000</pubDate>
		<dc:creator>Sam Dunn</dc:creator>
				<category><![CDATA[Resources]]></category>
		<category><![CDATA[Freebie]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://buildinternet.com/?p=8836</guid>
		<description><![CDATA[I was inspired by the vast number of Twitter birds out there and decided to provide my own entry the internet&#8217;s collection of our feathery friend. Everything is neatly packaged in transparent .png format, which means the bird will have no difficulty nesting in whatever site you place him in. Feel free to leave a [...]]]></description>
			<content:encoded><![CDATA[<p><span id="more-8836"></span><!--noteaser--></p>
<p>I was inspired by the <a href="http://thedesignsuperhero.com/2008/10/featuring-twitter-birds-20-twitter-bird-designs/">vast</a> <a href="http://www.hongkiat.com/blog/100-remarkably-beautiful-twitter-icons-and-buttons/">number</a> of Twitter birds out there and decided to provide my own entry the internet&#8217;s collection of our feathery friend.</p>
<p>Everything is neatly packaged in transparent .png format, which means the bird will have no difficulty nesting in whatever site you place him in.</p>
<p>Feel free to leave a link in the comments if you end up using any of the illustrations for a project &#8211; enjoy!</p>
<h3>Inside the Bundle</h3>
<p><img class="aligncenter" title="Twitter Freebie Teaser" src="http://buildinternet.s3.amazonaws.com/images/twitter-bird/teaser-sheet.png" alt="" width="600" height="500" /></p>
<div id="livedownload"><a class="livedownloadonly" title="Download the Illustrations" href="http://buildinternet.s3.amazonaws.com/images/twitter-bird/Twitter%20Bird%20%26%20Egg.zip"></a></div>
<h3>Usage and Sharing</h3>
<p>Released under this <a href="http://creativecommons.org/licenses/by-nc-sa/2.5/ca/">Creative Commons license</a>. While it&#8217;s not required, if you end up using any of these graphics, a link to this post would be greatly appreciated.</p>
<p>If you want to share this file with anyone, please link directly to this post ( <a href="http://buildinternet.com/2010/06/freebie-fiesta-twitter-bird-egg-illustrations/">http://buildinternet.com/2010/06/freebie-fiesta-twitter-bird-egg-illustrations/</a> ).</p>
<p>*The font used in the above graphics is called <a href="http://www.dafont.com/jonny-quest-classic.font">Johnny Quest Classic</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://buildinternet.com/2010/06/freebie-fiesta-twitter-bird-egg-illustrations/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using memcached
Database Caching using memcached
Object Caching 728/767 objects using disk: basic

Served from: buildinternet.com @ 2012-05-23 18:29:14 -->
