<?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>Clayton McIlrath &#187; jQuery</title> <atom:link href="http://thinkclay.com/tag/jquery/feed" rel="self" type="application/rss+xml" /><link>http://thinkclay.com</link> <description>Creative Media Design, Powered by Wordpress</description> <lastBuildDate>Tue, 10 Apr 2012 01:24:47 +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>Tip of the Day: Mobile Touch Events</title><link>http://thinkclay.com/technology/tip-of-the-day-mobile-touch-events</link> <comments>http://thinkclay.com/technology/tip-of-the-day-mobile-touch-events#comments</comments> <pubDate>Tue, 30 Aug 2011 00:17:54 +0000</pubDate> <dc:creator>Clay McIlrath</dc:creator> <category><![CDATA[Technology]]></category> <category><![CDATA[best practices]]></category> <category><![CDATA[front-end]]></category> <category><![CDATA[iOS]]></category> <category><![CDATA[jQuery]]></category> <category><![CDATA[JS]]></category> <category><![CDATA[Mobile]]></category> <category><![CDATA[Tip of the Day]]></category> <category><![CDATA[web browser]]></category> <guid
isPermaLink="false">http://thinkclay.com/?p=1521</guid> <description><![CDATA[I recently got into a project that was a bit over my head. I had to build out a map that will work on desktop, mobile and tablets the same, but I quickly ran into issues tracking touch events in mobile Safari. All of the testing I was doing in iOS5 (beta) was working the [...]]]></description> <content:encoded><![CDATA[<p>I recently got into a project that was a bit over my head. I had to build out a map that will work on desktop, mobile and tablets the same, but I quickly ran into issues tracking touch events in mobile Safari. All of the testing I was doing in iOS5 (beta) was working the exact same way as the browser, where I could monitor a click and drag (touchmove) event and get the properties <em>pageX</em> and <em>pageY</em> directly from the event. However, on other mobile browsers (specifically iOS4 and older) this property was returning 0 everytime. I then found that multi-touch events store each finger press so I had to get the array of fingers and return the page coordinates. Long story short, here is the code I ended up implementing:</p><div
class="wp_syntax"><div
class="code"><pre class="javascript" style="font-family:monospace;">document.<span style="color: #660066;">ontouchstart</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">function</span> <span style="color: #009900;">&#40;</span>e<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>e.<span style="color: #660066;">touches</span>.<span style="color: #660066;">length</span> <span style="color: #339933;">==</span> <span style="color: #CC0000;">1</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #006600; font-style: italic;">// Only deal with one finger</span>
		<span style="color: #003366; font-weight: bold;">var</span> touch <span style="color: #339933;">=</span> e.<span style="color: #660066;">touches</span><span style="color: #009900;">&#91;</span><span style="color: #CC0000;">0</span><span style="color: #009900;">&#93;</span><span style="color: #339933;">,</span> <span style="color: #006600; font-style: italic;">// Get information for finger #1</span>
		    x <span style="color: #339933;">=</span> touch.<span style="color: #660066;">pageX</span><span style="color: #339933;">,</span>
		    y <span style="color: #339933;">=</span> touch.<span style="color: #660066;">pageY</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div><h3>Further Reading on Mobile Touch Events in Javascript</h3><ul><li><a
href="http://www.sitepen.com/blog/2008/07/10/touching-and-gesturing-on-the-iphone/">iPhone Gesturing Explained</a></li></ul> ]]></content:encoded> <wfw:commentRss>http://thinkclay.com/technology/tip-of-the-day-mobile-touch-events/feed</wfw:commentRss> <slash:comments>4</slash:comments> </item> <item><title>jQuery Lightbox / Modal Plugin</title><link>http://thinkclay.com/news/jquery-lightbox-modal-plugin</link> <comments>http://thinkclay.com/news/jquery-lightbox-modal-plugin#comments</comments> <pubDate>Sun, 02 Jan 2011 20:17:51 +0000</pubDate> <dc:creator>Clay McIlrath</dc:creator> <category><![CDATA[News]]></category> <category><![CDATA[developer tools]]></category> <category><![CDATA[front-end]]></category> <category><![CDATA[jQuery]]></category> <category><![CDATA[JS]]></category> <category><![CDATA[Lightbox]]></category> <category><![CDATA[web 2.0]]></category> <guid
isPermaLink="false">http://thinkclay.com/?p=1175</guid> <description><![CDATA[There are SO MANY different types of <a
href="http://devsnippets.com/?cat=13">lightbox scripts in the wild</a>, and while most of them are absolutely fantastic (<a
href="http://www.shadowbox-js.com/" title="Shadowbox Lightbox">shadowbox</a> being one of my favorites) most of them are very limited in the control that they give you over the style, function and code. To make things worse, most of these <strong>lightbox scripts</strong> are also 5k or bigger, which is 5k more than you need sometimes. If you're like me, and you do a lot of customization or want to tweak your code to be as fast as possible, then you'll want this simple little <strong>jquery lightbox plugin</strong>. <strong>Style your lightbox</strong> exactly how you'd like and then simple invoke the modal() function and you'll be able to trigger the lightbox.]]></description> <content:encoded><![CDATA[<p>There are SO MANY different types of <a
href="http://devsnippets.com/?cat=13">lightbox scripts in the wild</a>, and while most of them are absolutely fantastic (<a
href="http://www.shadowbox-js.com/" title="Shadowbox Lightbox">shadowbox</a> being one of my favorites) most of them are very limited in the control that they give you over the style, function and code. To make things worse, most of these <strong>lightbox scripts</strong> are also 5k or bigger, which is 5k more than you need sometimes. If you&#8217;re like me, and you do a lot of customization or want to tweak your code to be as fast as possible, then you&#8217;ll want this simple little <strong>jquery lightbox plugin</strong>. <strong>Style your lightbox</strong> exactly how you&#8217;d like and then simple invoke the modal() function and you&#8217;ll be able to trigger the lightbox.</p><div
class="wp_syntax"><div
class="code"><pre class="javascript" style="font-family:monospace;">jQuery.<span style="color: #660066;">fn</span>.<span style="color: #660066;">modal</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000066; font-weight: bold;">return</span> <span style="color: #000066; font-weight: bold;">this</span>.<span style="color: #660066;">each</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	<span style="color: #003366; font-weight: bold;">var</span> ah <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">height</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #003366; font-weight: bold;">var</span> wh <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span>window<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">height</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #003366; font-weight: bold;">var</span> nh <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span>wh<span style="color: #339933;">/</span><span style="color: #CC0000;">2</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">-</span> <span style="color: #009900;">&#40;</span>ah<span style="color: #339933;">/</span><span style="color: #CC0000;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #003366; font-weight: bold;">var</span> aw <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">width</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #003366; font-weight: bold;">var</span> ww <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span>window<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">width</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #003366; font-weight: bold;">var</span> nw <span style="color: #339933;">=</span> <span style="color: #009900;">&#40;</span>ww<span style="color: #339933;">/</span><span style="color: #CC0000;">2</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">-</span> <span style="color: #009900;">&#40;</span>aw<span style="color: #339933;">/</span><span style="color: #CC0000;">2</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #006600; font-style: italic;">// Trim body height, append overlay, and disable scrolling (this can be undone with a custom close button)</span>
        $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;body&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">height</span><span style="color: #009900;">&#40;</span>wh<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'overflow'</span><span style="color: #339933;">,</span><span style="color: #3366CC;">'hidden'</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">append</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'&lt;div class=&quot;overlay&quot;&gt;&lt;<span style="color: #000099; font-weight: bold;">\/</span>div&gt;'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;.overlay&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">fadeTo</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;slow&quot;</span><span style="color: #339933;">,</span> .8<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span><span style="color: #3366CC;">'top'</span><span style="color: #339933;">:</span>nh<span style="color: #339933;">,</span> <span style="color: #3366CC;">'left'</span><span style="color: #339933;">:</span>nw<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">fadeIn</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;slow&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span></pre></div></div><p>This code is what i use for the overlay, you can customize as you&#8217;d like. The actual div is appended to the body with JavaScript.</p><div
class="wp_syntax"><div
class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.overlay</span> <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">block</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0%</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">:</span> <span style="color: #933;">0%</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">100%</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">110%</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">background-color</span><span style="color: #00AA00;">:</span> <span style="color: #000000; font-weight: bold;">black</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">z-index</span><span style="color: #00AA00;">:</span><span style="color: #cc66cc;">1001</span><span style="color: #00AA00;">;</span>
	-moz-opacity<span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0.8</span><span style="color: #00AA00;">;</span>
	opacity<span style="color: #00AA00;">:</span>.8<span style="color: #00AA00;">;</span>
	filter<span style="color: #00AA00;">:</span> alpha<span style="color: #00AA00;">&#40;</span>opacity<span style="color: #00AA00;">=</span><span style="color: #cc66cc;">80</span><span style="color: #00AA00;">&#41;</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div><p>This is an example of a <a
href="http://mycalorienumber.com/mynumber">modal/lightbox</a> i did using this plugin. Very simple CSS:</p><div
class="wp_syntax"><div
class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.modal</span> <span style="color: #00AA00;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">background</span><span style="color: #00AA00;">:</span> <span style="color: #cc00cc;">#00121b</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">min-height</span><span style="color: #00AA00;">:</span> <span style="color: #933;">54.5em</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">width</span><span style="color: #00AA00;">:</span> <span style="color: #933;">56.5em</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">border</span><span style="color: #00AA00;">:</span> <span style="color: #933;">1px</span> <span style="color: #993333;">solid</span> <span style="color: #cc00cc;">#111e24</span><span style="color: #00AA00;">;</span>
	box-shadow<span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">1em</span> <span style="color: #cc00cc;">#000</span><span style="color: #00AA00;">;</span>
	-moz-box-shadow<span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">1em</span> <span style="color: #cc00cc;">#000</span><span style="color: #00AA00;">;</span>
	-webkit-box-shadow<span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span> <span style="color: #cc66cc;">0</span> <span style="color: #933;">1em</span> <span style="color: #cc00cc;">#000</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">display</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">none</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span>
	<span style="color: #000000; font-weight: bold;">z-index</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">1002</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></div> ]]></content:encoded> <wfw:commentRss>http://thinkclay.com/news/jquery-lightbox-modal-plugin/feed</wfw:commentRss> <slash:comments>2</slash:comments> </item> <item><title>RFP Application for Download</title><link>http://thinkclay.com/technology/rfp-application-for-download</link> <comments>http://thinkclay.com/technology/rfp-application-for-download#comments</comments> <pubDate>Tue, 23 Jun 2009 16:37:24 +0000</pubDate> <dc:creator>Clay McIlrath</dc:creator> <category><![CDATA[Technology]]></category> <category><![CDATA[automate]]></category> <category><![CDATA[developer tools]]></category> <category><![CDATA[freelance]]></category> <category><![CDATA[jQuery]]></category> <category><![CDATA[PHP]]></category> <category><![CDATA[resources]]></category> <guid
isPermaLink="false">http://thinkclay.com/?p=1024</guid> <description><![CDATA[<a
href="http://thinkclay.com/technology/rfp-application-for-download" title="Chosen RFP Application"><img
class="alignleft" src="http://thinkclay.com/timthumb.php?src=/wp-content/uploads/2009/06/rfp.jpg&#38;w=300&#38;h=200&#38;zc=1" alt="Chosen RFP Application" title="rfp application" width="300" height="200" /></a>A while back, I developed an application to automate our workflow and gather information from potential clients before meeting with them. This was a pretty basic RFP form, but I had many people tell me how interested they were in it, and that they wanted to use it for themselves. Within a few weeks of launching that RFP we had finished our new brand and it was already outdated. Rather than updating and re-skinning I decided to start from scratch and share the old one with whoever wants it. You can customize this application as necessary, but please give credit to Chosen with a link back to this site or the main Chosen site.. even if the link is hidden, we still like it there for SEO.]]></description> <content:encoded><![CDATA[<p><a
href="http://thinkclay.com/technology/rfp-application-for-download" title="Chosen RFP Application"><img
class="alignleft" src="http://thinkclay.com/timthumb.php?src=/wp-content/uploads/2009/06/rfp.jpg&amp;w=300&amp;h=200&amp;zc=1" alt="Chosen RFP Application" title="rfp application" width="300" height="200" /></a>A while back, I developed an application to automate our workflow and gather information from potential clients before meeting with them. This was a pretty basic RFP form, but I had many people tell me how interested they were in it, and that they wanted to use it for themselves. Within a few weeks of launching that RFP we had finished our new brand and it was already outdated. Rather than updating and re-skinning I decided to start from scratch and share the old one with whoever wants it. You can customize this application as necessary, but please give credit to Chosen with a link back to this site or the main Chosen site.. even if the link is hidden, we still like it there for SEO.</p><p><a
href="http://demo.bychosen.com/rfp/" title="demo and preview the RFP application">View Demo</a> or <a
href="http://chosendevelopment.com/wp-content/plugins/download-monitor/download.php?id=6" title="download RFP application">Download</a></p><h3>Lansing Web and Technology</h3><p>If you are a <strong>web design</strong> or <strong>web development</strong> firm in <strong>Lansing, MI</strong> then talk to me personally about an even better version of this application. I&#8217;m offering it only to <strong>Lansing Web Design</strong> Companies because I believe in giving the <strong>Lansing Area</strong> a competitive advantage when it comes to technology. Feel free to contact me at the email in my header.</p> ]]></content:encoded> <wfw:commentRss>http://thinkclay.com/technology/rfp-application-for-download/feed</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>What Makes You Stand Out</title><link>http://thinkclay.com/technology/what-makes-you-stand-out</link> <comments>http://thinkclay.com/technology/what-makes-you-stand-out#comments</comments> <pubDate>Tue, 14 Apr 2009 05:44:26 +0000</pubDate> <dc:creator>Clay McIlrath</dc:creator> <category><![CDATA[Technology]]></category> <category><![CDATA[developer tools]]></category> <category><![CDATA[flex]]></category> <category><![CDATA[freelance]]></category> <category><![CDATA[front-end]]></category> <category><![CDATA[goals]]></category> <category><![CDATA[jQuery]]></category> <category><![CDATA[JS]]></category> <category><![CDATA[PHP]]></category> <category><![CDATA[programming]]></category> <category><![CDATA[web 2.0]]></category> <guid
isPermaLink="false">http://thinkclay.com/?p=843</guid> <description><![CDATA[<a
rel="shadowbox[post-843];player=img;" href="http://thinkclay.com/technology/what-makes-you-stand-out"><img
width="300" height="200" class="alignleft" title="What makes YOU stand out" alt="An image of Waldo from Where's Waldo" src="http://thinkclay.com/wp-content/uploads/2009/04/waldo.jpg"/></a>Combining a poor economy with an ever changing web makes it challenging to stay on the cutting edge. With multiple web languages, platforms, and techniques it’s important to dedicate your time to being versatile and flexible while not wasting time learning skills that you won’t use. In the past 2 years I have learned and mastered many tools and techniques, and I’m here to share what has been valuable and where you can trim the fat from your day.]]></description> <content:encoded><![CDATA[<p><a
href="http://thinkclay.com/wp-content/uploads/2009/04/waldo.jpg"><img
class="alignleft" src="http://thinkclay.com/wp-content/uploads/2009/04/waldo.jpg" alt="An image of Waldo from Where&#039;s Waldo" title="What makes YOU stand out" width="300" height="200" class="size-full wp-image-844" /></a>Combining a poor global state of economic growth with an always changing web, makes a challenging formula for staying on the cutting edge and being successful in the web industry. With multiple web languages, platforms, and techniques it&#8217;s important to dedicate your time to being versatile and flexible while not wasting time learning skills that you won&#8217;t use. In the past 2 years I have learned and mastered many tools and techniques, and I&#8217;m here to share what has been valuable and where you can trim the fat from your day.</p><h2>Find your strengths and excel above the rest</h2><p>So many web developers claim to know all when it comes to web, but when put to the test someone that can write &#8220;hello world&#8221; doesn&#8217;t meet the standards the client expected when they said &#8220;Do you know PHP?&#8221; All developers whether primarily front-end or back-end, should know at least a C level amount in both. To be an awesome back-end developer you need to be able to structure your content in something other than tables or invalid HTML, and to be an awesome back-end developer, you should at least know how to make simple variables and includes to make your job quick and efficient, rather than copying/pasting your doctype and head information on each page. If you want to do well in the next few years, then succeed by being a GURU in at least two of the following:</p><ul><li><strong>XHTML and CSS</strong> &#8211; with clean and valid markup that works in FF, Webkit, and IE7+</li><li><strong>Flex and ActionScript</strong> &#8211; flash/animation/design are a huge plus</li><li><strong>JavaScript</strong> &#8211; with and without frameworks, jQuery or MooTools knowledge a plus</li><li><strong>PHP</strong> &#8211; cakePHP or codeignitor frameworks will take you to the next level</li><li><strong>.NET</strong> &#8211; IIS and server administration a plus</li><li><strong>Ruby</strong> &#8211; Rails will take you to the next level</li><li><strong>JAVA</strong> &#8211; desktop publishing knowledge a plus</li></ul><h2>Learn new and trendy technologies</h2><p>While following trends isn&#8217;t always a good idea, trends that have been around for more than just a year and have high demand are usually worth taking a second glance at. In the past 5 years, there are a few major trends that are really growing. I highly recommend picking one of the trends and learning as much as you can about the technology on the side of your current studies and work..</p><h3>Rich Internet Applications (RIA)</h3><p>Adobe Flash has always had a strong presence on the web, and that presence is only increasing along with other RIA platforms like Microsoft Silverlight, JavaFX, and the future HTML5. There are almost no major disadvantages to sites built entirely in Flash or other platforms now that search engines like Google are making more of an effort to index RIA content. To top that, Adobe has now adopted a markup language geared more towards developers called FLEX. Flex allows developers to markup their code in MXML while also using ActionScript for animation and then simply, with the click of a button plublish the application in either a SWF for web or as an AIR application for desktop. I strongly believe this is the future of not only the web, but future Operating Systems as well. Google and Ubuntu have already shown a heavy interest in using web applications on the desktop, and phone operating systems are following a similar pattern. While mobile and desktop development are entirely different from web development, learning FLEX is a great way for web developers to cross that threshold and succeed.</p><h3>Agile Development and Object Oriented code</h3><p>As the internet reaches the far corners of the Earth, boundaries and barriers are being broken for working remotely on projects. In fact there are many businesses that operate entirely on remote collaboration. This means you need to learn a versioning software and systems (CVS or SVN using Tortoise is a good place to start), how to organize your thoughts and communicate them quickly and effectively over IM or email, and most importantly how to comment and structure your code (for programmers OO principles are a must) so that others can quickly pickup where you left off.</p><h3>Web Services and Cross-Platform Markup</h3><p>UML, XML, JSON, REST and SOAP, just to name the most common languages, are becoming a must for nearly every developer. Almost every RIA and API use a language like this to communicate. Any site that is dynamic is probably using at least one of these technologies. I can&#8217;t specifically tell you which is more relevant or popular, as it varies per project, but I can tell you that they&#8217;re all fairly simple to learn, so I suggest doing your homework or ready a book on each to know at least base knowledge and markup for each of them.</p><h2>Refine your Interpersonal Communication Skills</h2><p>As you climb the corporate ladder, or step out into the world of business, it will become more and more important that your written and verbal communication skills are sharp and effective. The gap that used to exist between sales/consulting/design/IT is now closing, and more businesses are switching to an Agile model. This means from the start of a project or team, you may be communicating directly with a client, or with others that don&#8217;t know or understand the technology. You&#8217;ll need to learn how to explain things so that others can easily understand and relate, as well as sound professional and well educated. These skills are not easy to hone, and require a lot of time. I highly recommend actively getting involved in forums/blogging to improve written communication, acquire <a
href="http://direct.tesco.com/buyersguide/laptop/computer.aspx">laptop computers available at Tesco</a>, or perhaps join a local business group or Chamber of Commerce to learn how to communicate better in a professional business setting (another perk to this is the networking), and ask others to correct and help you identify bad habits and mistakes.</p> ]]></content:encoded> <wfw:commentRss>http://thinkclay.com/technology/what-makes-you-stand-out/feed</wfw:commentRss> <slash:comments>6</slash:comments> </item> </channel> </rss>
