<?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>Tvenge Design</title>
	<atom:link href="http://ryantvenge.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://ryantvenge.com</link>
	<description>Visually Stimulating</description>
	<lastBuildDate>Thu, 17 May 2012 15:03:04 +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>CSS3 Drop Down Menus</title>
		<link>http://ryantvenge.com/2012/01/css3-drop-down-menus/</link>
		<comments>http://ryantvenge.com/2012/01/css3-drop-down-menus/#comments</comments>
		<pubDate>Fri, 06 Jan 2012 05:23:31 +0000</pubDate>
		<dc:creator>Ryan Tvenge</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://ryantvenge.com/?p=454</guid>
		<description><![CDATA[Surprisingly enough, I haven&#8217;t seen that many drop-down menus online that have the following: Still work without JavaScript (css-based) tabbing through menus functional So I thought I&#8217;d put my money where my mouth is. Here is the Ryan Tvenge rendition of Dropdown Menus. The html &#60;ul class=&#34;nav fade&#34;&#62; &#60;li&#62;&#60;a href=&#34;#&#34;&#62;Regular Lists w/ 2 child ul's&#60;/a&#62;&#8230; <a href="http://ryantvenge.com/2012/01/css3-drop-down-menus/">Continue Reading</a>]]></description>
			<content:encoded><![CDATA[<p>Surprisingly enough, I haven&#8217;t seen that many drop-down menus online that have the following:</p>
<ul>
<li>Still work without JavaScript (css-based)</li>
<li>tabbing through menus functional</li>
</ul>
<p>So I thought I&#8217;d put my money where my mouth is. Here is the Ryan Tvenge rendition of Dropdown Menus.</p>
<p><img src="http://ryantvenge.com/wp-content/uploads/2012/01/drop-downs.png" alt="" title="drop-downs" width="600" height="311" class="alignnone size-full wp-image-462" /></p>
<h2>The html</h2>
<pre class="prettyprint ">&lt;ul class=&quot;nav fade&quot;&gt;
	&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Regular Lists w/ 2 child ul's&lt;/a&gt;
		&lt;ul&gt;
			&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Child Item 1&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Child Item 2&lt;/a&gt;
				&lt;ul&gt;
					&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Grandchild Item 1&lt;/a&gt;&lt;/li&gt;
					&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Grandchild Item 2&lt;/a&gt;
						&lt;ul&gt;
							&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Great-Grandchild Item 1&lt;/a&gt;&lt;/li&gt;
							&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Great-Grandchild Item 2&lt;/a&gt;&lt;/li&gt;
							&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Great-Grandchild Item 3&lt;/a&gt;&lt;/li&gt;
						&lt;/ul&gt;
					&lt;/li&gt;
					&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Grandchild Item 3&lt;/a&gt;&lt;/li&gt;
				&lt;/ul&gt;
			&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Child Item 3&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Child Item 4&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Child Item 5&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Div wrapped menu&lt;/a&gt;
		&lt;div&gt;
			&lt;p&gt;You can put any html in here you want&lt;/p&gt;
			&lt;ul&gt;
				&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Even Lists&lt;/a&gt;&lt;/li&gt;
				&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Even Lists&lt;/a&gt;&lt;/li&gt;
				&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Even Lists&lt;/a&gt;&lt;/li&gt;
			&lt;/ul&gt;
		&lt;/div&gt;
	&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Item 3&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Item 4&lt;/a&gt;&lt;/li&gt;
	&lt;li class=&quot;right&quot;&gt;&lt;a href=&quot;#&quot;&gt;Right-Aligned Menu&lt;/a&gt;
		&lt;ul&gt;
			&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Child Item 1&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Child Item 2&lt;/a&gt;
				&lt;ul&gt;
					&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Grandchild Item 1&lt;/a&gt;&lt;/li&gt;
					&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Grandchild Item 2&lt;/a&gt;
						&lt;ul&gt;
							&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Great-Grandchild Item 1&lt;/a&gt;&lt;/li&gt;
							&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Great-Grandchild Item 2&lt;/a&gt;&lt;/li&gt;
							&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Great-Grandchild Item 3&lt;/a&gt;&lt;/li&gt;
						&lt;/ul&gt;
					&lt;/li&gt;
					&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Grandchild Item 3&lt;/a&gt;&lt;/li&gt;
				&lt;/ul&gt;
			&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Child Item 3&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Child Item 4&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Child Item 5&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/li&gt;
&lt;/ul&gt;
&lt;h2&gt;Vertical Menu&lt;/h2&gt;
&lt;ul class=&quot;nav vertical fade&quot;&gt;
	&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Regular Lists w/ 2 child ul's&lt;/a&gt;
		&lt;ul&gt;
			&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Child Item 1&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Child Item 2&lt;/a&gt;
				&lt;ul&gt;
					&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Grandchild Item 1&lt;/a&gt;&lt;/li&gt;
					&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Grandchild Item 2&lt;/a&gt;
						&lt;ul&gt;
							&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Great-Grandchild Item 1&lt;/a&gt;&lt;/li&gt;
							&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Great-Grandchild Item 2&lt;/a&gt;&lt;/li&gt;
							&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Great-Grandchild Item 3&lt;/a&gt;&lt;/li&gt;
						&lt;/ul&gt;
					&lt;/li&gt;
					&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Grandchild Item 3&lt;/a&gt;&lt;/li&gt;
				&lt;/ul&gt;
			&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Child Item 3&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Child Item 4&lt;/a&gt;&lt;/li&gt;
			&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Child Item 5&lt;/a&gt;&lt;/li&gt;
		&lt;/ul&gt;
	&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Div wrapped menu&lt;/a&gt;
		&lt;div&gt;
			&lt;p&gt;Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.&lt;/p&gt;
		&lt;/div&gt;
	&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Item 3&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Item 4&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Item 5&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</pre>
<h2>The CSS</h2>
<pre class="prettyprint ">/* CSS Dropdowns */
	.nav { clear: both; list-style: none; padding: 0; margin: 0; float: left; width: 100%; }
	.nav.vertical { height: auto; }
	.nav li { display: inline-block; float: left; position: relative; }
	.nav li:hover, .nav li.hover { z-index: 1; }
	.nav li li { display: block; float: none; }
	.nav li a { display: block; }
	.nav.vertical li { float: none; display: block; }
	.nav ul, .nav div, .nav li:hover ul ul, .nav li.hover ul ul { position: absolute; left: -9999px; top: 0; opacity: 0; }
	.nav.fade ul, .nav.fade div, .nav.fade li:hover ul ul, .nav.fade li.hover ul ul { transition: opacity .2s linear; -webkit-transition: opacity .2s linear; -moz-transition: opacity .2s linear; -o-transition: opacity .2s linear; }
	.nav div ul { position: static; left: 0; opacity: 1; padding: 0; background: none; }
	.nav li:hover ul, .nav ul li:hover ul, .nav li:hover div,
	.nav li.hover ul, .nav ul li.hover ul, .nav li.hover div { left: 0; top: auto; height: auto; opacity: 1; }
	.nav li:hover.right ul, .nav li:hover.right div,
	.nav li.hover.right ul, .nav li.hover.right div { left: auto; right: 0; }
	.nav li:hover.right li:hover ul, .nav li.hover.right li.hover ul { right: 250px; } 

	.nav li.hover ul li.hover ul ul, .nav li:hover ul li:hover ul ul, .nav.vertical li:hover ul ul ul, .nav.vertical li.hover ul ul ul, .nav div ul { position: static; left: 0;
		/* box-shadow */-moz-box-shadow: none; -webkit-box-shadow: none; box-shadow: none;
	}
	/* Customizable Areas */
	.nav { padding: 10px; margin-bottom: 20px; /* css3 */ -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px;
		/* Gradients */
		background: #ffffff; /* Old browsers */
		background: -moz-linear-gradient(top, #ffffff 0%, #d6d6d6 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#d6d6d6)); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top, #ffffff 0%,#d6d6d6 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top, #ffffff 0%,#d6d6d6 100%); /* Opera11.10+ */
		background: -ms-linear-gradient(top, #ffffff 0%,#d6d6d6 100%); /* IE10+ */
		background: linear-gradient(top, #ffffff 0%,#d6d6d6 100%); /* W3C */
	}
	.nav div, .nav ul { width: 250px; background: #fff; color: #000; background: rgba(255,255,255,.9); padding: 10px;
		/* border-radius */ -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px;
		/* box-shadow */-moz-box-shadow: 0px 1px 4px rgba(0,0,0,.3); -webkit-box-shadow: 0px 1px 4px rgba(0,0,0,.3); box-shadow: 0px 1px 4px rgba(0,0,0,.3);
	}
	.nav ul ul ul { background: none; padding: 0; }
	.nav div { padding: 10px; }
	.nav li a { padding: 10px;
		/* css3 */ -webkit-border-radius: 10px; -moz-border-radius: 10px; border-radius: 10px;
	}
	.nav li a:hover, .nav li a:focus, .nav li a.highlight { color: #005488; padding: 9px; border: 1px solid #f4f287;
		/* gradients */
		background: #fffcc1; /* Old browsers */
		background: -moz-linear-gradient(top, #fffcc1 22%, #fffd8c 100%); /* FF3.6+ */
		background: -webkit-gradient(linear, left top, left bottom, color-stop(22%,#fffcc1), color-stop(100%,#fffd8c)); /* Chrome,Safari4+ */
		background: -webkit-linear-gradient(top, #fffcc1 22%,#fffd8c 100%); /* Chrome10+,Safari5.1+ */
		background: -o-linear-gradient(top, #fffcc1 22%,#fffd8c 100%); /* Opera11.10+ */
		background: -ms-linear-gradient(top, #fffcc1 22%,#fffd8c 100%); /* IE10+ */
		background: linear-gradient(top, #fffcc1 22%,#fffd8c 100%); /* W3C */
	}
	.nav li div a, .nav li ul a { }
	.nav.vertical { width: 200px; }
	.nav li ul li:hover ul, .nav li ul li.hover ul, .nav.vertical ul li:hover ul, .nav.vertical ul li.hover ul { left: 250px; top: 0; }
	.nav.vertical li:hover ul, .nav.vertical li.hover ul, .nav.vertical li:hover div, .nav.vertical li.hover div  { left: 200px; top: 0; }</pre>
<h2>CSS3 Transition Fading Option</h2>
<p>If you add a class of &#8220;fade&#8221; to the parent &lt;ul&gt;, this will add CSS3 faded transitions to the menus.</p>
<h2>Right-Aligned Menus</h2>
<p>If you want a menu to go be aligned to the right, add a class of &#8220;right&#8221; to that menu&#8217;s parent &lt;li&gt;.</p>
<h2>JS Helpers</h2>
<p>There is also an accompanying JS file that helps out with a few things:</p>
<ol>
<li><strong>Menus show up when tabbing.</strong> If you tab through the site, the appropriate menus will pop up. This does not happen out of the box with :hover pseudo classes and css.</li>
<li><strong>The menus work in IE6.</strong> This was something I was struggling with for awhile. I decided to put this feature in, just because it was so easy to do. I usually try to stay away from IE6 fixes. What the script is actually doing is adding a &#8220;hover&#8221; class to any anchor that is hovered over. This code also helps out with the tabbing feature.</li>
<li><strong>Highlighting parent anchor.</strong> When you&#8217;re mouse is hovered over a menu, the parent anchor of that menu will add the &#8220;highlight&#8221; class to that anchor, which essentially gives it the hover styling.</li>
</ol>
<h2>Vertical Option</h2>
<p>What would a drop-down menu be without a vertical option. If you add a &#8220;vertical&#8221; class to the parent &lt;ul&gt;, the menu will format vertically and the menus will fly out to the right rather than down.</p>
<h2>Outstanding Bug</h2>
<p>The one bug that really drives me nuts right now is the fading out of the CSS3 transitions. On the vertical and right-aligned menus, it is fading to a different postion, then off of the screen. If anyone can find a fix for this, I would love to hear it.</p>
<h2>The Code</h2>
<p><a href="/code/drop-menus">demo</a> // <a href="/code/drop-menus/drop-menus.zip">download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ryantvenge.com/2012/01/css3-drop-down-menus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RegEx Pal</title>
		<link>http://regexpal.com/</link>
		<comments>http://regexpal.com/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 13:30:56 +0000</pubDate>
		<dc:creator>Ryan Tvenge</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ryantvenge.com/?p=452</guid>
		<description><![CDATA[This is a great tool when writing out regular expressions. It helps me as I learn more and more about them.]]></description>
			<content:encoded><![CDATA[<p>This is a great tool when writing out regular expressions. It helps me as I learn more and more about them.</p>
]]></content:encoded>
			<wfw:commentRss>http://regexpal.com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JSLint</title>
		<link>http://jslint.com/</link>
		<comments>http://jslint.com/#comments</comments>
		<pubDate>Fri, 05 Aug 2011 14:57:23 +0000</pubDate>
		<dc:creator>Ryan Tvenge</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ryantvenge.com/?p=444</guid>
		<description><![CDATA[For those of you that are just getting into JavaScript, this is a must-have tool for checking your code. It will tell you what you are doing wrong (using multiple var statements, spaces in wrong places, etc) in your code and will help you write better JS.]]></description>
			<content:encoded><![CDATA[<p>For those of you that are just getting into JavaScript, this is a must-have tool for checking your code. It will tell you what you are doing wrong (using multiple var statements, spaces in wrong places, etc) in your code and will help you write better JS.</p>
]]></content:encoded>
			<wfw:commentRss>http://jslint.com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Flippy-Flip Navigation</title>
		<link>http://ryantvenge.com/2011/08/flippy-flip-navigation/</link>
		<comments>http://ryantvenge.com/2011/08/flippy-flip-navigation/#comments</comments>
		<pubDate>Mon, 01 Aug 2011 14:15:48 +0000</pubDate>
		<dc:creator>Ryan Tvenge</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://ryantvenge.com/?p=434</guid>
		<description><![CDATA[With the adoption of Webkit browsers (Chrome, Safari and just about every mobile browser), It&#8217;s getting easier to use Webkit-specific CSS3. This idea came when I was looking at Chris Coyier&#8217;s CSS Tricks site. He was using some 3D css3 on some of his sponsors links. I thought this would be a good implementation on a&#8230; <a href="http://ryantvenge.com/2011/08/flippy-flip-navigation/">Continue Reading</a>]]></description>
			<content:encoded><![CDATA[<p>With the adoption of Webkit browsers (Chrome, Safari and just about every mobile browser), It&#8217;s getting easier to use Webkit-specific CSS3. This idea came when I was looking at <a href="http://chriscoyier.net/">Chris Coyier&#8217;s</a> <a href="http://css-tricks.com/">CSS Tricks</a> site. He was using some 3D css3 on some of his sponsors links. I thought this would be a good implementation on a navigation.</p>
<p>The html is a straightforward linked unordered list:</p>
<pre class="prettyprint ">&lt;ul id=&quot;nav&quot;&gt;
	&lt;li&gt;&lt;a href=&quot;#&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;#&quot; title=&quot;drop me a line&quot;&gt;Contact&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;#&quot; title=&quot;Super-Sweet Developer&quot;&gt;Me&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;#&quot; title=&quot;Check Out My Street Creds&quot;&gt;Resume&lt;/a&gt;&lt;/li&gt;
	&lt;li&gt;&lt;a href=&quot;#&quot; title=&quot;catch my portfolio&quot;&gt;Work&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</pre>
<p>For the CSS, we are using:</p>
<pre class="prettyprint ">#nav { list-style: none; padding: 0; }
#nav li { display: block; float: left; }
#nav li:hover a, #nav li:focus a, #nav li.current_page_item a { -webkit-transform: rotateY(360deg); background: #fffd8c; color: #005488; }
#nav li a { display: block; padding: 11px 10px 9px; margin-right: 2px; color: #ff7a7a; text-decoration: none; text-transform: lowercase;
	/* css3 */-moz-border-radius: 8px; -webkit-border-radius: 8px; border-radius: 8px;
	/* css3 */-webkit-perspective: 700;-webkit-transform-style: preserve-3d; -webkit-backface-visibility: hidden; -webkit-transition: all .4s ease-in-out; -moz-transition: all .4s ease-in-out; -o-transition: all .4s ease-in-out;
}</pre>
<p>This could will work for the most part, but there is some instances that I&#8217;ve only been able to replicate on a Mac machine. When you hover over the link and stop before the animation is complete, the browser doesn&#8217;t know that you are hovered over the anchor. There is a quick jQuery fix for this:</p>
<pre class="prettyprint ">$('#nav li')
	//Indicate to user that the &lt;li&gt; is now clickable
	.css('cursor','pointer')
	//Trigger click on anchor when clicking &lt;li&gt;
	.click(function () {
		$(this).find('&gt; a').trigger('click');</pre>
<p>Now your navigation will have a sweet new CSS3 transition to it.</p>
<p><a href="/code/flippy-flip">demo</a> // <a href="/code/">download</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ryantvenge.com/2011/08/flippy-flip-navigation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iOS5 To Bring Support For Older CSS Properties</title>
		<link>http://johanbrook.com/browsers/native-momentum-scrolling-ios-5/</link>
		<comments>http://johanbrook.com/browsers/native-momentum-scrolling-ios-5/#comments</comments>
		<pubDate>Tue, 12 Jul 2011 16:27:44 +0000</pubDate>
		<dc:creator>Ryan Tvenge</dc:creator>
				<category><![CDATA[Links of Interest]]></category>

		<guid isPermaLink="false">http://ryantvenge.com/?p=429</guid>
		<description><![CDATA[Two CSS properties that will now be available in iOS5 in September: overflow: scroll and position: fixed:]]></description>
			<content:encoded><![CDATA[<p>Two CSS properties that will now be available in iOS5 in September: <strong>overflow: scroll</strong> and <strong>position: fixed</strong>:</p>
]]></content:encoded>
			<wfw:commentRss>http://johanbrook.com/browsers/native-momentum-scrolling-ios-5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Proven Performance Tips &amp; Tricks</title>
		<link>http://www.slideshare.net/AddyOsmani/jquery-proven-performance-tips-tricks</link>
		<comments>http://www.slideshare.net/AddyOsmani/jquery-proven-performance-tips-tricks#comments</comments>
		<pubDate>Mon, 11 Jul 2011 16:26:59 +0000</pubDate>
		<dc:creator>Ryan Tvenge</dc:creator>
				<category><![CDATA[Links of Interest]]></category>

		<guid isPermaLink="false">http://ryantvenge.com/?p=427</guid>
		<description><![CDATA[This a very good deck of what you can do to make your jQuery faster. Every little bit helps, right?]]></description>
			<content:encoded><![CDATA[<p>This a very good deck of what you can do to make your jQuery faster. Every little bit helps, right?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.slideshare.net/AddyOsmani/jquery-proven-performance-tips-tricks/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML Email Boilerplate</title>
		<link>http://htmlemailboilerplate.com/</link>
		<comments>http://htmlemailboilerplate.com/#comments</comments>
		<pubDate>Tue, 05 Jul 2011 23:21:37 +0000</pubDate>
		<dc:creator>Ryan Tvenge</dc:creator>
				<category><![CDATA[Links of Interest]]></category>

		<guid isPermaLink="false">http://ryantvenge.com/?p=413</guid>
		<description><![CDATA[For those of us that never learned table-based coding, this is a great resource for getting an html boilerplate]]></description>
			<content:encoded><![CDATA[<p>For those of us that never learned table-based coding, this is a great resource for getting an html boilerplate</p>
]]></content:encoded>
			<wfw:commentRss>http://htmlemailboilerplate.com/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Animations On The Web: Which Technology Do We Use?</title>
		<link>http://ryantvenge.com/2011/06/animations-on-the-web-which-technology-do-we-use/</link>
		<comments>http://ryantvenge.com/2011/06/animations-on-the-web-which-technology-do-we-use/#comments</comments>
		<pubDate>Thu, 30 Jun 2011 15:32:05 +0000</pubDate>
		<dc:creator>Ryan Tvenge</dc:creator>
				<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://ryantvenge.com/?p=401</guid>
		<description><![CDATA[I&#8217;ve had this discussion with web developers in the past and specifically on Twitter/Facebook with some fellow developers, and realized that 140 characters just isn&#8217;t enough for my thoughts. It wasn&#8217;t but a few years ago that I was taught the ways of js/jquery animations. Ever since then, the question has been going through my head, &#8220;Will&#8230; <a href="http://ryantvenge.com/2011/06/animations-on-the-web-which-technology-do-we-use/">Continue Reading</a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve had this discussion with web developers in the past and specifically on Twitter/Facebook with some fellow developers, and realized that 140 characters just isn&#8217;t enough for my thoughts.</p>
<p>It wasn&#8217;t but a few years ago that I was taught the ways of js/jquery animations. Ever since then, the question has been going through my head, &#8220;Will the web community make JavaScript-based animations the way of the future?&#8221; What about all of the other technologies?</p>
<h2>The Past</h2>
<p>Before js-based animations were easy to use (via js frameworks), the prominent option out there was Flash. And boy, did everyone use it. I can personally say I never liked flash after learning it in college. As ignorant it was at the time, my reasons were &#8220;Flash is for people that don&#8217;t know how to code a site.&#8221; This was partially true, but Flash did and still does have a place in the web. Then there was the Steve Job&#8217;s initiative, and we all know, nothing gets in the way of what Steve wants. Granted, Steve has different motives for eliminating Flash than I did.</p>
<ul>
<li>Too bloated to work on his simple iOS devices</li>
<li>A company that he is not CEO of controls the technology</li>
<li>Everyone wraps their video in Flash, so video doesn&#8217;t work on his device</li>
</ul>
<p>Then there are my motives:</p>
<ul>
<li>I don&#8217;t want to learn another technology</li>
<li>It&#8217;s slow and bogs down my machine</li>
<li>Flash is a huge security risk</li>
</ul>
<p>Unfortunately, it took the adoption of Steve Jobs&#8217; iPad for web sites to start thinking of alternatives for animations.</p>
<h2>The Present</h2>
<p>We all know that js-based animations have been around for quite awhile, but it wasn&#8217;t until frameworks like <a href="http://jquery.com/">jQuery</a> and <a href="http://mootools.net/">MooTools</a> came along, that they are much easier to implement. Now that there are easy-to-use frameworks, the learning curve for developers to learn is not quite as steep.</p>
<p>This takes care of a few of the points above, but not all of them. The biggest is security. After listening to the <a href="http://www.grc.com/securitynow.htm">Security Now Podcast</a> on the <a href="http://twit.tv/">TWiT network</a>, I&#8217;ve quickly learned through the teachings of Steve Gibson, that JavaScript is just as big as a security risk as Flash. Most exploits that happen on the web, are executed by js. So as a user, it is good practice to use your browser with js turned off. It doesn&#8217;t necessarily bug me that the small percentage of people disabling js in the browsers aren&#8217;t seeing my sweet animations, but more so that I&#8217;m encouraging bad security practices. This was what got me thinking, &#8220;What is the right solution for animations?&#8221;</p>
<h2>The Future</h2>
<p>With the increase adoption of Modern Browsers by users, it&#8217;s making more and more sense to use css3 transitions for animations.</p>
<ul>
<li>They still work with JS disabled</li>
<li>They are arguably easier to code than js-based</li>
<li>Semantically, animations should be in CSS</li>
<li>The animations don&#8217;t have to run through the JavaScript engine in the browser</li>
</ul>
<h3>Flash is NOT Dead. JS-Based Animations Aren&#8217;t Dead.</h3>
<p>In order to ruffle other peoples&#8217; feathers, people will say things like <strong>&#8220;Flash is Dead. Use JS-Based animations,&#8221; or &#8220;JS-Based animations are dead, use css3.&#8221; </strong>The fact of the matter is none of these technologies will be &#8220;dead&#8221; anytime soon. Sure, Flash adoption went down when the iPad came out, but it didn&#8217;t go away, and it won&#8217;t. JS-Based animations won&#8217;t be any different.</p>
<p>Flash can still do much more than js and css3, and js can do more than css3. So pick the right tool for the job. I would love to see css3 do just as much as Flash does someday, but that simply isn&#8217;t going to happen anytime soon. Maybe not at all. I&#8217;m sure the folks over at Adobe will continue to innovate to staying ahead of these other technologies.</p>
<p>Feel free to let me know what you think in the comments. I&#8217;m curious to see what others are thinking about this.</p>
]]></content:encoded>
			<wfw:commentRss>http://ryantvenge.com/2011/06/animations-on-the-web-which-technology-do-we-use/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make Updating WordPress Fast and Easy</title>
		<link>http://ryantvenge.com/2011/01/make-updating-wordpress-fast-and-easy/</link>
		<comments>http://ryantvenge.com/2011/01/make-updating-wordpress-fast-and-easy/#comments</comments>
		<pubDate>Sat, 15 Jan 2011 18:32:59 +0000</pubDate>
		<dc:creator>Ryan Tvenge</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://ryantvenge.com/?p=370</guid>
		<description><![CDATA[I&#8217;m sure you are like me and tired of putting your FTP info into WordPress every time there is an update, just to find out that it times out? It wasn&#8217;t until I had a client that was using A Small Orange for their hosting that there was an easier way. I knew they had&#8230; <a href="http://ryantvenge.com/2011/01/make-updating-wordpress-fast-and-easy/">Continue Reading</a>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sure you are like me and tired of putting your FTP info into WordPress every time there is an update, just to find out that it times out? It wasn&#8217;t until I had a client that was using <a href="http://www.asmallorange.com/">A Small Orange</a> for their hosting that there was an easier way. I knew they had something configured on their server that I didn&#8217;t on mine, because when I went to update WordPress on their servers, it wouldn&#8217;t ask for FTP info. After submitting a ticket to KnownHost (my server hosting company), the answer is <a href="http://www.suphp.org/">suPHP</a>.</p>
<p>If you have your own server, this might be a great option for you. The caveat is that <strong>your server will no longer see any files that have permissions 777</strong>. You can check out the <a href="http://www.ndchost.com/wiki/cpanel/enable-suphp">installation instructions</a> on how to do it.</p>
]]></content:encoded>
			<wfw:commentRss>http://ryantvenge.com/2011/01/make-updating-wordpress-fast-and-easy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy Autofill jQuery Plugin</title>
		<link>http://ryantvenge.com/2010/09/easy-autofill-jquery-plugin/</link>
		<comments>http://ryantvenge.com/2010/09/easy-autofill-jquery-plugin/#comments</comments>
		<pubDate>Fri, 03 Sep 2010 05:23:48 +0000</pubDate>
		<dc:creator>Ryan Tvenge</dc:creator>
				<category><![CDATA[Scripts]]></category>
		<category><![CDATA[Autofill]]></category>
		<category><![CDATA[Forms]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://ryantvenge.com/?p=347</guid>
		<description><![CDATA[Here&#8217;s a little ditty I drew up in jQuery. It makes it so your autofill isn&#8217;t a parameter in your js, but pulls it directly from the hiding label that should already be there for accessibility/non-js users. Here is what you need to know: The JS: &#60;script src=&#34;jquery.easy-autofill.js&#34; type=&#34;text/javascript&#34;&#62;&#60;/script&#62; &#60;script type=&#34;text/javascript&#34;&#62; $(function(){ $('#search-form,#contact-form').autofill(); }); &#60;/script&#62;&#8230; <a href="http://ryantvenge.com/2010/09/easy-autofill-jquery-plugin/">Continue Reading</a>]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a little ditty I drew up in jQuery. It makes it so your autofill isn&#8217;t a parameter in your js, but pulls it directly from the hiding label that should already be there for accessibility/non-js users. Here is what you need to know:</p>
<h3>The JS:</h3>
<pre class="prettyprint ">&lt;script src=&quot;jquery.easy-autofill.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
$(function(){
	$('#search-form,#contact-form').autofill();
});
&lt;/script&gt;</pre>
<h3>The html:</h3>
<pre class="prettyprint ">&lt;form id=&quot;targeted-form&quot;&gt;
	&lt;fieldset&gt;
		&lt;legend&gt;Contact Me&lt;/legend&gt;
		&lt;label class=&quot;off-screen&quot; for=&quot;contact-form&quot;&gt;Name&lt;/label&gt;
		&lt;input name=&quot;s&quot; type=&quot;text&quot; /&gt;
		&lt;label class=&quot;off-screen&quot; for=&quot;contact-form&quot;&gt;Email&lt;/label&gt;
		&lt;input name=&quot;s&quot; type=&quot;text&quot; /&gt;
		&lt;label class=&quot;off-screen&quot; for=&quot;contact-form&quot;&gt;Comment&lt;/label&gt;
		&lt;textarea&gt;&lt;/textarea&gt;
		&lt;input class=&quot;submit&quot; type=&quot;submit&quot; value=&quot;Submit&quot; /&gt;
	&lt;/fieldset&gt;
&lt;/form&gt;</pre>
<p>It is important to know that the text that is used for the autofill is grabbing the label tag just before the input or textarea.</p>
<p><a href="/code/easy-autofill/">See it in Action</a> | <a href="/code/easy-autofill/easy-autofill.zip">Download files</a></p>
]]></content:encoded>
			<wfw:commentRss>http://ryantvenge.com/2010/09/easy-autofill-jquery-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

