<?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>DesignBash &#187; Quickie</title>
	<atom:link href="http://www.designbash.com/category/quickie/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.designbash.com</link>
	<description>web magazine and more...</description>
	<lastBuildDate>Fri, 25 Nov 2011 01:00:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>The HTML of HTML 5</title>
		<link>http://www.designbash.com/tutorials/the-html-of-html-5/</link>
		<comments>http://www.designbash.com/tutorials/the-html-of-html-5/#comments</comments>
		<pubDate>Sun, 20 Nov 2011 22:12:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Quickie]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.designbash.com/?p=324</guid>
		<description><![CDATA[As the web continues to move forward, it&#8217;s becoming more and more important to understand (and use) HTML 5 tags. Although most tags are not officially supported in Internet Explorer, there are some great JavaScript libraries out there that allow us to start using HTML5 today! So, before getting to far into your HTML, you&#8217;ll [...]]]></description>
			<content:encoded><![CDATA[<p>As the web continues to move forward, it&#8217;s becoming more and more important to understand (and use) HTML 5 tags. Although most tags are not officially supported in Internet Explorer, there are some great JavaScript libraries out there that allow us to start using HTML5 today!<br />
<span id="more-324"></span></p>
<p>So, before getting to far into your HTML, you&#8217;ll need to drop in a small JavaScript reference to HTML5.js, which &#8220;shims&#8221; in HTML5 support for IE8 and below. It&#8217;s easy enough to do this, just use this little code snippet:</p>
<pre class="prettyprint">
<code class="html">
&lt;!-- If less than IE9, include the HTML5 shim --&gt;
&lt;!--[if lt IE 9]&gt;
&lt;script src="http://html5shim.googlecode.com/svn/trunk/html5.js"&gt;&lt;/script&gt;
&lt;![endif]--&gt;
</code>
</pre>
<p>Alright, now that we&#8217;ve considered older browsers we can get started with some actual HTML5 code. Starting from the very top, we need the doctype. Thankfully, the HTML5 doctype is simple compared to the ones you&#8217;re probably familiar with. Look at the beautiful simplicity of the document below:</p>
<pre class="prettyprint">
<code class="html">
&lt;!DOCTYPE html&gt;
&lt;html&gt;
  &lt;head&gt;
    &lt;meta charset="utf-8"&gt;
    &lt;title&gt;HTML5 Example&lt;/title&gt;
  &lt;/head&gt;
  &lt;body&gt;
    &lt;p&gt;This is a perfectly valid document&lt;/p&gt;
  &lt;/body&gt;
&lt;/html&gt;
</code>
</pre>
<p>Mmmmm, so much nicer than before&#8230;</p>
<h2>What About Self Closing Tags?</h2>
<p>One of the design choices that I really appreciate about HTML5 is the fact that you can optionally self-close tags. I plan to write my code without the self-closing slash, as I find it less noisy, but there is nothing wrong with self closing tags.</p>
<pre class="prettyprint">
<code class="html">
&lt;!-- Totally valid --&gt;
&lt;img src="path/to/img.jpg" alt="valid" /&gt;

&lt;!-- Also perfectly valid (and less noisy) --&gt;
&lt;img src="path/to/img.jpg" alt="valid" &gt;
</code>
</pre>
<h2>HTML5 Semantics</h2>
<p>HTML5 gives us the ability create documents that are incredibly semantic. All the new elements were created with modern websites in mind, as you&#8217;ll see in the examples below:</p>
<pre class="prettyprint">
<code class="html">
&lt;header&gt;
  &lt;h1&gt;Large Title&lt;/h1&gt;
&lt;/header&gt;

&lt;nav&gt;&lt;ul&gt;
  &lt;li&gt;&lt;a href="#"&gt;Home&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href="#"&gt;About&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href="#"&gt;Contact&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;&lt;/nav&gt;

&lt;section id="content"&gt;
&lt;ul id="posts"&gt;
  &lt;li&gt;&lt;article&gt;
    &lt;h3&gt;Article Title&lt;/h3&gt;
  &lt;/article&gt;&lt;/li&gt;
  &lt;li&gt;&lt;article&gt;
    &lt;h3&gt;Another Article Title&lt;/h3&gt;
  &lt;/article&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;/section&gt;

&lt;footer&gt;
  &lt;address&gt;New York, New York/address&gt;
&lt;/footer&gt;
</code>
</pre>
<p>That&#8217;s a very small example of what we can do with this new kind of markup. For a full explanation of all the new tags, checkout the official <a href="http://dev.w3.org/html5/spec/Overview.html">HTML5 specifications</a>. It can be a little dry, but it&#8217;s worth slowly reading over.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.designbash.com/tutorials/the-html-of-html-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to SSH using OSX and Terminal</title>
		<link>http://www.designbash.com/quickie/how-to-ssh-using-osx-and-terminal/</link>
		<comments>http://www.designbash.com/quickie/how-to-ssh-using-osx-and-terminal/#comments</comments>
		<pubDate>Fri, 29 Jan 2010 16:56:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Quickie]]></category>
		<category><![CDATA[Beginner]]></category>
		<category><![CDATA[SSH]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.designbash.com/?p=275</guid>
		<description><![CDATA[I know for many people this is a really really simple task, but I constantly find myself looking this up online and it usually takes me 5-10 minutes before I find a useful result. With this in mind, please enjoy the following snippet.]]></description>
			<content:encoded><![CDATA[<p>I know for many people this is a really <strong>really</strong> simple task, but I constantly find myself looking this up online and it usually takes me 5-10 minutes before I find a useful result. With this in mind, please enjoy the following snippet.<span id="more-275"></span></p>
<h3>SSH, OSX and Terminal</h3>
<p>I&#8217;ll retrace my exact steps here, including hot-keys. First we need to open up the terminal &#8211; a basic prompt interface that lives beneath all the bling of OSX. Rather than digging around in your applications folder, just hit <strong>apple-spacebar </strong>to open spotlight. Type &#8220;<strong>terminal</strong>&#8221; and it should show up right away.</p>
<p><img class="aligncenter size-full wp-image-276" title="spotlight" src="http://www.designbash.com/wp-content/uploads/2010/01/spotlight.png" alt="spotlight terminal" width="342" height="165" /></p>
<h3>Inside the Matrix (Terminal)</h3>
<p>Now you can start to feel like a hacker. Thankfully, OSX ships with SSH pre-installed, which makes this tutorial very easy. To connect using SSH you need to type:</p>
<p><strong>&#8220;SSH username@www.yourwebsite.com&#8221;</strong></p>
<p><img class="aligncenter size-full wp-image-277" title="ssh-terminal" src="http://www.designbash.com/wp-content/uploads/2010/01/ssh-terminal.png" alt="" width="583" height="74" /></p>
<p>After pressing enter you&#8217;ll be prompted for two things&#8230; <strong>a password and a yes/no question</strong> asking if you want to add a record of the SSH connection (or something like that). While typing your password you can&#8217;t actually see the characters, but it is really working. Also, you need to write a <strong>full &#8220;yes&#8221; or &#8220;no&#8221;</strong> in response to the question&#8230;</p>
<h3><strong>That&#8217;s It</strong>!</h3>
<p>You should be connected and ready to go. There are many different SSH commands, so I won&#8217;t go through those right now, but here are a few to get you started:</p>
<ul>
<li><strong>ls</strong> &#8211; Used to list the contents of a directory</li>
<li><strong>cd ..</strong> &#8211; Used to go back (or up) one directory</li>
<li><strong>cd directory/name</strong> &#8211; Used to navigate to a directory</li>
<li><strong>exit</strong> &#8211; Used to end the SSH session</li>
<li><strong>pwd</strong> &#8211; Prints the working directory</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.designbash.com/quickie/how-to-ssh-using-osx-and-terminal/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Giving Backgrounds Texture</title>
		<link>http://www.designbash.com/quickie/giving-backgrounds-texture/</link>
		<comments>http://www.designbash.com/quickie/giving-backgrounds-texture/#comments</comments>
		<pubDate>Thu, 14 Jan 2010 22:20:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Quickie]]></category>
		<category><![CDATA[Gradient]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Quickies]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.designbash.com/?p=167</guid>
		<description><![CDATA[This quick example will use some simple noise to give a gradient background some extra depth]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.designbash.com/quickie/giving-backgrounds-texture/"><img class="size-full wp-image-179 aligncenter" title="make-some-noise" src="http://www.designbash.com/wp-content/uploads/2010/01/make-some-noise.png" alt="Make Some Noise" width="480" height="120" /></a></p>
<p>There is a neat little trick that most good web designers know and love, and it has to do with <strong>background textures and noise</strong>. I remember when I first started designing for the web, I would never use textures in my designs and was always left feeling like something was missing.<span id="more-167"></span> A textured background, even when it&#8217;s very subtile, will give your site much more depth and feeling than a plan flat color or gradient. This quick example will use some simple noise to give a gradient background some extra depth. So let&#8217;s get started!</p>
<h2>First Example &#8211; A Noisy Gradient</h2>
<h3>Step 1 &#8211; Create a New Document</h3>
<p>Create a new web document that is <strong>1200px by 1000px.</strong></p>
<p><strong><img class="aligncenter size-full wp-image-169" title="noise-background" src="http://www.designbash.com/wp-content/uploads/2010/01/noise-background1-e1263506466581.png" alt="" width="500" height="281" /><br />
 </strong></p>
<p><strong> </strong></p>
<h3><strong>Step 2 &#8211; Choose a Nice Gradient Background</strong></h3>
<p>For this example I decided to do a nice bright-dark green gradient. Make sure it&#8217;s linear to make it easier to slice into HTML/CSS afterwards.</p>
<p style="text-align: center;"><a href="http://www.designbash.com/wp-content/uploads/2010/01/green-gradient.png"><img class="aligncenter size-large wp-image-170" title="green-gradient" src="http://www.designbash.com/wp-content/uploads/2010/01/green-gradient-1024x853.png" alt="green-gradient" width="430" height="358" /></a></p>
<h3>Step 3 &#8211; Add the Noise Layer</h3>
<p>Next, add a new layer on top of your background layer. This will be our noise layer. Fill it in with <strong>total black</strong> and then go up to <strong>Filter &gt; Noise &gt; Add Noise.</strong> Use roughly the same settings that I use below:</p>
<p><img class="aligncenter size-full wp-image-171" title="noise-settings" src="http://www.designbash.com/wp-content/uploads/2010/01/noise-settings.png" alt="noise-settings-photoshop" width="329" height="421" /></p>
<p>You should end up with a really <strong>really</strong> noisy background.</p>
<h3>Step 4 &#8211; Blending and Opacity</h3>
<p>Next we need to change the <strong>blending mode</strong> and <strong>opacity</strong> to make our noise layer more palatable. First set the blending of the noise layer to <strong>Overlay</strong>. Next you need to bring the opacity down to somewhere between 1% and 20%, depending on how much noise you want. In my Example I used  <strong>5% opacity</strong>.</p>
<p><img class="aligncenter size-full wp-image-172" title="blending_and_opacity" src="http://www.designbash.com/wp-content/uploads/2010/01/blending_and_opacity.png" alt="" width="211" height="154" /></p>
<p>Your final background should end up looking something like this:</p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<div id="attachment_173" class="wp-caption aligncenter" style="width: 310px"><a href="http://www.designbash.com/wp-content/uploads/2010/01/green-noise-background.png"><img class="size-medium wp-image-173" title="green-noise-background" src="http://www.designbash.com/wp-content/uploads/2010/01/green-noise-background-300x250.png" alt="Green Background with Noise" width="300" height="250" /></a><p class="wp-caption-text">Click to See Full Size</p></div>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
<p><br class="spacer_" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.designbash.com/quickie/giving-backgrounds-texture/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Halftone Tutorial Photoshop &#8211; Quickie</title>
		<link>http://www.designbash.com/photoshop/halftone-tutorial-photoshop-quickie/</link>
		<comments>http://www.designbash.com/photoshop/halftone-tutorial-photoshop-quickie/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 18:50:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Quickie]]></category>
		<category><![CDATA[Quickies]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.designbash.com/?p=130</guid>
		<description><![CDATA[Here is a quick way to produce a neat halftone effect in Photoshop that can be used to give your compositions a little more complexity.]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"> </p>
<p style="text-align: center;"><a href="http://www.designbash.com/photoshop/halftone-tutorial-photoshop-quickie"><img class="aligncenter size-full wp-image-131" title="Halftone-Example" src="http://www.designbash.com/wp-content/uploads/2010/01/Halftone-Example-e1262976803281.jpg" alt="halftone tutorial photoshop" width="497" height="150" /></a></p>
<p>Here is a quick way to produce a neat <strong>halftone effect in Photoshop</strong> that can be used to give your compositions a little more complexity.<span id="more-130"></span></p>
<h2>Step One &#8211; Setup the Document</h2>
<p>Start off by creating a new document with the dimensions of <strong>800px by 800px</strong>.</p>
<p><img class="aligncenter size-full wp-image-132" title="halftone-document-settings" src="http://www.designbash.com/wp-content/uploads/2010/01/halftone-document-settings-e1262975128994.png" alt="halftone document settings" width="450" height="210" /></p>
<h2>Step Two &#8211; Black to White Gradient</h2>
<p>Create a new layer and fill it with a <strong>blank-to-white gradient</strong>. Try and make the gradient fairly even across the entire document.</p>
<p><img class="aligncenter size-full wp-image-133" title="black-to-white-gradient" src="http://www.designbash.com/wp-content/uploads/2010/01/black-to-white-gradient-e1262975329729.png" alt="black to white gradient" width="500" height="451" /></p>
<h2>Step Three &#8211; Apply the Halftone Filter</h2>
<p>Select the entire gradient layer and goto <strong>Filter &gt; Pixelate &gt; Color Halftone&#8230; </strong>and fill it in with the settings below.</p>
<p><a href="http://www.designbash.com/wp-content/uploads/2010/01/color-halftone-settings.png"><img class="aligncenter size-full wp-image-134" title="color-halftone-settings" src="http://www.designbash.com/wp-content/uploads/2010/01/color-halftone-settings.png" alt="Color Halftone Settings Photoshop" width="367" height="205" /></a></p>
<h2>Step Four &#8211; Rotate the Halftone Layer</h2>
<p>Next we can rotate the halftone layer by around 45 degrees counter clockwise.</p>
<p><img class="aligncenter size-full wp-image-135" title="rotate-counter-clockwise" src="http://www.designbash.com/wp-content/uploads/2010/01/rotate-counter-clockwise-e1262975744812.png" alt="Halftone Rotate Counter Clockwise" width="500" height="501" /></p>
<h2>Step Five &#8211; Crop it Down</h2>
<p>Next make a selection near the centre of the halftone and crop it &#8211; I ended up cropping a section of ~ 615px by 300px.</p>
<p style="text-align: center;"><img class="aligncenter size-full wp-image-136" title="crop-it" src="http://www.designbash.com/wp-content/uploads/2010/01/crop-it-e1262975997169.jpg" alt="cropped halftone" width="500" height="242" /></p>
<h2>Step Six &#8211; Apply a Pleasing Gradient</h2>
<p>Choose a nice two color gradient (I choose blue). You now have two options. The first is to create a new gradient layer <strong>above</strong> your halftone layer and then <strong>reduce the gradient layer&#8217;s opacity</strong> to a suitable level. Or, the second option is to put a gradient layer <strong>below</strong> the halftone layer, set the halftone layer&#8217;s blending option to &#8220;<strong>Darken</strong>&#8220;, and reduce the <strong>halftone layer&#8217;s opacity</strong> until you find a good level. Either way the effect will be similar!</p>
<p><img class="aligncenter size-full wp-image-137" title="blue-halftone" src="http://www.designbash.com/wp-content/uploads/2010/01/blue-halftone-e1262976537128.jpg" alt="Blue Halftone Example" width="499" height="242" />And there you have it &#8211; a quick and e<strong>asy halftone effect</strong> that you can use to make neat backgrounds!</p>
<p style="text-align: left;"> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.designbash.com/photoshop/halftone-tutorial-photoshop-quickie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

