<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel>

<title><![CDATA[Limewheel Creative]]></title>
<link>http://limewheel.com/blog</link>
<description><![CDATA[Limewheel Creative blog]]></description>
<pubDate>Sun, 19 May 2013 00:32:19 GMT</pubDate>
<lastBuildDate>Sun, 19 May 2013 00:32:19 GMT</lastBuildDate>
<generator>LemonStand</generator>
<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/limewheel" /><feedburner:info uri="limewheel" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
<title><![CDATA[Making Limewheel Responsive]]></title>
<link>http://feedproxy.google.com/~r/limewheel/~3/dvBDUIIRpW4/blogpostmaking-limewheel-responsive</link>
<guid isPermaLink="false">http://limewheel.com/blogpostmaking-limewheel-responsive</guid>
<pubDate>Thu, 02 Aug 2012 00:00:00 GMT</pubDate>
<description>&lt;p&gt;It has been 3 months working here and I am really enjoying it so far. On my second week working for Limewheel, Danny told me that I would be revamping the front-end code of the LW site to make it &amp;nbsp;&lt;a href="http://en.wikipedia.org/wiki/Responsive_Web_Design"&gt;responsive&lt;/a&gt;. I was very excited when he told me that. I knew it was going to be a challenging project, but I have already created a few responsive websites, and I thoroughly enjoyed it.&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;The process&lt;/h3&gt;
&lt;p&gt;The first step was to prepare the layouts. I got the PSD files for the old site (based on 960 grid) and used them to create new responsive layouts for each page. I set grids at 320px, 480xpx, 768px, 1024px, and min 1200 px in Photoshop. I created layouts for each blocks at all grids.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://limewheel.com/resources/images/blog/rwd-lw.png" alt="" /&gt;&lt;/p&gt;
&lt;p&gt;I used the &lt;a href="http://twitter.github.com/bootstrap/"&gt;Twitter Bootstrap&lt;/a&gt; framework to build the responsive LW site. Why did I choose Twitter Bootstrap out of all frameworks? It's very flexible, easy to use, and makes for rapid development. There's great documentation on it. It supports a fluid grid system. A fluid grid is more flexible, and allows the user to resize the site on a desktop computer, but it requires a lot of CSS fine tuning to make sure that the layout doesn&amp;rsquo;t get messed up.&lt;/p&gt;
&lt;p&gt;Bootstrap has a great foundation that saved me a lot of time. Also, there are good media queries in Bootstrap. I will definitely use it again for my next RWD (responsive web design) project (hint&amp;hellip; flavour of Lemon).&amp;nbsp;&lt;/p&gt;
&lt;p&gt;There were some challenges while building the responsive LW site. The main challenge was that some of the jQuery plugins were not responsive friendly. I spent a fair amount of time trying to make these plugins responsive friendly, but after a couple of hours I found it was a waste of time and energy. So I found a sweet responsive slider plug in to replace it.&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I used &lt;a href="http://alexdunphy.github.com/refineslide/"&gt;Refineslide&lt;/a&gt;&amp;nbsp;for the main slider, and it has awesome CSS3 transitions with 3D transform, and of course it supports RWD. The only thing is that the plug in doesn't support the swipe function for mobile, so I had to add the swipe function to make it work.&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;To make the RWD LW site look nice on retina devices, I had to add &lt;a href="http://retinajs.com/"&gt;Retina.js&lt;/a&gt;&amp;nbsp;which provides high resolution retina images for retina screens such as the New iPad and iPhone 4. It really makes images look better on these devices. It's easy to use. Only need to add the script, then create 2 images, one normal res and high res (double size). Then for double size add '@2x' at the end of the file name of the image. Retina.js will find if there is '@2x' image available, and use for retina screens.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I also used &lt;a href="http://fortawesome.github.com/Font-Awesome/"&gt;Font Awesome&lt;/a&gt;&amp;nbsp;to replace images to iconic font so the icons are sharper on any screen. Previously, LW used images for icons, so I tried to cut out images as much as possible and replace it with equivalents from this icon font.&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;&amp;hellip; Internet Explorer&lt;/h3&gt;
&lt;p&gt;Then finally, of course it has to be cross browser compatible.&amp;nbsp; Internet Explorer was a total pain in the ass to figure out. I had to add stylesheets and scripts for only IE to fix many issues. I started with IE9, then down to IE8, then IE7. Luckily, there are 2 awesome scripts that I used: &lt;a href="https://github.com/scottjehl/Respond/"&gt;respond.js&lt;/a&gt; and selectivizr.js&amp;nbsp;, respond.js support media queries for IE 8 and below. And Selectivzr supports CSS3 pseudo classes for IE 8 and below that I used for layout. Finally, I created a fixed layout at 960 px for IE7 and below.&amp;nbsp;&lt;/p&gt;
&lt;h3&gt;Wrapping up&lt;/h3&gt;
&lt;p&gt;Of course the new RWD LW site is built on awesome CMS (and eCommerce platform), &lt;a href="http://lemonstand.com"&gt;LemonStand&lt;/a&gt;. And CSS was written in LESS.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Lastly, this project was built using an awesome app, &lt;a href="http://incident57.com/codekit/"&gt;CodeKit&lt;/a&gt;, that does all the &lt;a href="http://lesscss.org/"&gt;LESS&lt;/a&gt; compiling, live browser reloads, optimizes images and compresses CSS files (and more!).&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;In my own personal opinion, you should use the RWD approach for any projects in the future, and don't even think about a separate mobile website approach. :)&lt;/p&gt;&lt;p&gt;Posted in: &lt;a href="http://limewheel.com/blogcategorydevelopment"&gt;Development&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/limewheel/~4/dvBDUIIRpW4" height="1" width="1"/&gt;</description>
<feedburner:origLink>http://limewheel.com/blogpostmaking-limewheel-responsive</feedburner:origLink></item>
<item>
<title><![CDATA[Welcoming Cole to the team!]]></title>
<link>http://feedproxy.google.com/~r/limewheel/~3/Bt_dMuFtVkU/blogpostwelcoming-cole-to-the-team</link>
<guid isPermaLink="false">http://limewheel.com/blogpostwelcoming-cole-to-the-team</guid>
<pubDate>Mon, 30 Apr 2012 00:00:00 GMT</pubDate>
<description>&lt;p&gt;&lt;img class="float-right" src="http://limewheel.com/resources/images/blog/cole-blog.jpeg" alt="Cole Sanderson" /&gt;&lt;/p&gt;
&lt;p&gt;We're excited to introduce Cole Sanderson to the Limewheel team as a Web Developer.&lt;/p&gt;
&lt;p&gt;The job applicants were coming in a little slow at first, but then a few solid candidates applied for the position. Amongst those was Cole.&lt;/p&gt;
&lt;p&gt;We scheduled an interview with him and found his enthusiasm and positive attitude refreshing. He's genuinely passionate about building quality websites, and demonstrates a hunger to continue learning and refining his skills.&lt;/p&gt;
&lt;p&gt;He recently completed the New Media Design &amp;amp; Web Developmen program from &lt;a href="http://www.bcit.ca/"&gt;BCIT&lt;/a&gt;. Before that, Cole earned a diploma in Sports Science from &lt;a href="http://www.douglas.bc.ca/"&gt;Douglas College&lt;/a&gt;, and a Certifictate in Small Business from &lt;a href="http://www.vcc.ca/"&gt;VCC&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Cole's still involved in sports. He continues to compete in provincial and national championships in beach volleyball. Recreational roller hockey is a hobby of his as well.&lt;/p&gt;
&lt;p&gt;He's a passionate guy, and we're very excited to have him join the team. We're all looking forward to building some great things with him.&lt;/p&gt;&lt;p&gt;Posted in: &lt;a href="http://limewheel.com/blogcategorynews"&gt;News&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/limewheel/~4/Bt_dMuFtVkU" height="1" width="1"/&gt;</description>
<feedburner:origLink>http://limewheel.com/blogpostwelcoming-cole-to-the-team</feedburner:origLink></item>
<item>
<title><![CDATA[Moving to Vancouver]]></title>
<link>http://feedproxy.google.com/~r/limewheel/~3/yfGynSTV4-8/blogpostmoving-to-vancouver</link>
<guid isPermaLink="false">http://limewheel.com/blogpostmoving-to-vancouver</guid>
<pubDate>Wed, 11 Apr 2012 00:00:00 GMT</pubDate>
<description>&lt;p&gt;We started out in the humble town of &lt;a href="http://en.wikipedia.org/wiki/Mission,_British_Columbia"&gt;Mission&lt;/a&gt;, which is about an hour drive from &lt;a href="http://en.wikipedia.org/wiki/Vancouver"&gt;Vancouver&lt;/a&gt;. It's fairly quiet and rent was more affordable. Or so we thought.&lt;/p&gt;
&lt;p&gt;As our bootstrapped &lt;a href="http://lemonstandapp.com"&gt;eCommerce startup&lt;/a&gt;, LemonStand, grew steadily, it demanded 2 additional employees. We started feeling the pinch of being away from where all the local action is in Vancouver as we continued to grow and needed to bring on even more people.&lt;/p&gt;
&lt;h3&gt;Building a team&lt;/h3&gt;
&lt;p&gt;Finding the right team members for a startup is a challenge as it is. They need to comfortable with some growing pains. They need to be OK with, or even enjoy, helping out in various areas and not sitting in a cubicle doing a very narrowly defined job for exactly 8 hours. They need to see the potential and truly want to&amp;nbsp;contribute&amp;nbsp;to the company's success.&lt;/p&gt;
&lt;p&gt;The pool of people like this is growing in Vancouver as the startup scene there expands.&lt;/p&gt;
&lt;h3&gt;Surprises&lt;/h3&gt;
&lt;p&gt;For a while, one justification we made for staying in Mission was the cost of leasing office space. It seemed more affordable, in comparison to what we saw in realtor's flyers with commercial space.&lt;/p&gt;
&lt;p&gt;But &lt;a href="http://www.linkedin.com/in/jowenjll"&gt;Josh Owen&lt;/a&gt; had some lucky timing and contacted us right when we started feeling the pain of being in Mission. He helped us find&amp;nbsp;several&amp;nbsp;suitable spaces that not only fit our budget, but fit our culture and style. They were in restored heritage buildings in downtown Vancouver, had a lot of character and were home to other tech companies. Perfect.&lt;/p&gt;
&lt;p&gt;We were&amp;nbsp;surprised&amp;nbsp;to find the spaces we did. All the listings we saw were for stuffy, clone-like office towers with absolutely no character. Oddly enough, these were normally the most expensive, probably because of the traditional business types they attract like law firms and accountants.&lt;/p&gt;
&lt;h3&gt;Making the leap&lt;/h3&gt;
&lt;p&gt;In March, we decided to go to where the people were and make the city our new home. We'll be in the heart of the startup scene, have access to&amp;nbsp;meetups&amp;nbsp;and other industry events and be able to invite like-minded folks over for coffee.&lt;/p&gt;
&lt;p&gt;We're now in the final stages of negotiation on a 1000&amp;nbsp;sq.&amp;nbsp;ft. office lease just outside Gastown. It's 2 blocks away from waterfront station, so getting their from Mission by train works out perfectly.&lt;/p&gt;&lt;p&gt;Posted in: &lt;a href="http://limewheel.com/blogcategorynews"&gt;News&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/limewheel/~4/yfGynSTV4-8" height="1" width="1"/&gt;</description>
<feedburner:origLink>http://limewheel.com/blogpostmoving-to-vancouver</feedburner:origLink></item>
<item>
<title><![CDATA[Hiring Web Developer]]></title>
<link>http://feedproxy.google.com/~r/limewheel/~3/7ggtjJxXY88/blogposthiring-web-developer-04-2012</link>
<guid isPermaLink="false">http://limewheel.com/blogposthiring-web-developer-04-2012</guid>
<pubDate>Tue, 10 Apr 2012 00:00:00 GMT</pubDate>
<description>&lt;p&gt;We're hiring a web developer to join us in our new Vancouver offices that we'll be moving into June 1.&lt;/p&gt;
&lt;h3&gt;The job&lt;/h3&gt;
&lt;p&gt;This position involves turning PSDs into functional websites. It includes writing semantic, clean, modern HTML5 and CSS3. Making use of jQuery plugins, with the ability to modify them when needed and make different plugins work togeher. Implementing new themes for &lt;a href="http://lemonstandapp.com"&gt;LemonStand&lt;/a&gt;, working with PHP as well. Occasionally building &lt;a href="http://lemonstandapp.com/docs/developing_lemonstand_modules/"&gt;LemonStand modules&lt;/a&gt;.&lt;/p&gt;
&lt;h3&gt;Career path&lt;/h3&gt;
&lt;p&gt;There are several paths you could take. While we're looking to hire someone with a range of skills covering back-end and front-end, we expect you to grow into a master of either front-end or back-end development.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Front-end developer (HTML5/CSS3/JavaScript wiz, responsive mobile sites)&lt;/li&gt;
&lt;li&gt;Back-end developer (modern PHP web applications, advanced LemonStand modules)&lt;/li&gt;
&lt;li&gt;Software engineer (LemonStand)&lt;/li&gt;
&lt;/ol&gt;
&lt;h3&gt;Development process&lt;/h3&gt;
&lt;p&gt;We're looking to define some standard sets of tools that we'll use for all projects moving forward. This provides an opportunity to master a tool set and broaden your capailities.&lt;/p&gt;
&lt;p&gt;Some of the tools we're looking to make use of: &lt;a href="http://lemonstandapp.com"&gt;LemonStand&lt;/a&gt;, &lt;a href="http://www.pyrocms.com/"&gt;Pyro CMS&lt;/a&gt;, &lt;a href="http://fuelphp.com/"&gt;FuelPHP&lt;/a&gt;, &lt;a href="http://getskeleton.com/"&gt;Skeleton&lt;/a&gt; and &lt;a href="http://jquery.com/"&gt;jQuery&lt;/a&gt;.&lt;/p&gt;
&lt;h3&gt;Want to apply?&lt;/h3&gt;
&lt;p&gt;Read our &lt;a href="http://www.techvibes.com/job/website-developer"&gt;job listing on Techvibes&lt;/a&gt; for more information. You can then send an email to &lt;a href="mailto:jobs@limewheel.com"&gt;jobs@limewheel.com&lt;/a&gt; with your resume, code samples and some info about yourself.&lt;/p&gt;&lt;p&gt;Posted in: &lt;a href="http://limewheel.com/blogcategorynews"&gt;News&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/limewheel/~4/7ggtjJxXY88" height="1" width="1"/&gt;</description>
<feedburner:origLink>http://limewheel.com/blogposthiring-web-developer-04-2012</feedburner:origLink></item>
<item>
<title><![CDATA[Softly Launching]]></title>
<link>http://feedproxy.google.com/~r/limewheel/~3/bnaQ82fNDFc/blogpostsoftly-launching</link>
<guid isPermaLink="false">http://limewheel.com/blogpostsoftly-launching</guid>
<pubDate>Tue, 10 Apr 2012 00:00:00 GMT</pubDate>
<description>&lt;p&gt;Well, it's been a very... very long time coming. We've had a "temporary" site up for a couple years now.&lt;/p&gt;
&lt;p&gt;Our new site is mostly up. We still have some holes to patch, and areas to polish, but &lt;a href="http://www.startuplessonslearned.com/2012/02/hacker-way.html"&gt;"done is better than perfect&lt;/a&gt;."&lt;/p&gt;
&lt;h3&gt;What's left&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Blog sidebar&lt;/li&gt;
&lt;li&gt;More browser testing&lt;/li&gt;
&lt;li&gt;Mobile theme&lt;/li&gt;
&lt;li&gt;More content&lt;/li&gt;
&lt;li&gt;Misc. styles here and there&lt;/li&gt;
&lt;/ul&gt;
&lt;h3&gt;Moving forward&lt;/h3&gt;
&lt;p&gt;We'll be releasing updates to the site iteratively over the next several weeks, and continue on progressively. We'll try not to let the cobwebs grow on this one, even if we get really busy.&lt;/p&gt;&lt;p&gt;Posted in: &lt;a href="http://limewheel.com/blogcategorynews"&gt;News&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/limewheel/~4/bnaQ82fNDFc" height="1" width="1"/&gt;</description>
<feedburner:origLink>http://limewheel.com/blogpostsoftly-launching</feedburner:origLink></item>
</channel></rss>
