<?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>Digital Surgeons</title>
	<atom:link href="http://www.digitalsurgeons.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.digitalsurgeons.com</link>
	<description>Internet Marketing</description>
	<lastBuildDate>Fri, 17 May 2013 19:32:19 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Gumby&#8217;s Toggles &amp; Switches</title>
		<link>http://www.digitalsurgeons.com/blog/gumbys-toggles-switches/</link>
		<comments>http://www.digitalsurgeons.com/blog/gumbys-toggles-switches/#comments</comments>
		<pubDate>Tue, 30 Apr 2013 19:35:21 +0000</pubDate>
		<dc:creator>Adam Chambers</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[The Lab]]></category>

		<guid isPermaLink="false">http://www.digitalsurgeons.com/?p=8829</guid>
		<description><![CDATA[So for those of you that don&#8217;t know, the team here at Digital Surgeons created a responsive grid framework last [...]]]></description>
				<content:encoded><![CDATA[<p>So for those of you that don&#8217;t know, the team here at Digital Surgeons created a responsive grid framework last year called <a href="http://www.digitalsurgeons.com/blog/the-making-of-a-responsive-css-framework/">Gumby Framework</a>. Needless to say, this completely changed the game and the internet was never the same. After a whole year of helping web properties be easily translated across devices, we decided to head back to the drawing board. In early 2013 we once again reinvented the wheel with the release of <a href="http://www.digitalsurgeons.com/blog/introducing-gumby-2-the-webs-most-powerful-responsive-framework/">Gumby2</a>. It is a wonderful platform that I myself have spent many hours hard at work on. My name is Adam Chambers by the way, and I&#8217;m a senior engineer at Digital Surgeons. This is my explanation of my favorite, and often underutilized Gumby feature: Toggles and Switches.</p>
<p><span id="more-8829"></span></p>
<h2>Switching it up…</h2>
<p>Toggles and switches were born out of a frustration of the Digital Surgeons dev team. They have been through several iterations, as we strove to find a better solution to the problem, before finally manifesting themselves in <a href="www.gumbyframework.com">Gumby 2</a> as the mighty <a href="http://gumbyframework.com/docs/ui-kit/#!/toggles-switches">Toggles and Switches</a>. When CSS3 came along and we were given the ability to create animations and other aesthetic UX gems with pure CSS, we dove at the chance. &#8220;No JavaScript?&#8221; we exclaimed, amazing. However, this was not actually the case.</p>
<h2>Ain&#8217;t no JS got time for that…</h2>
<p>We found that although CSS was now capable of handling the majority of our front-end UX, triggering effects and changes were a different story. Psuedo states like <code>:hover</code> and <code>:active</code> could be used but if we wanted to trigger style changes based on other events we had to resort back to trusty JS. This meant we had a lot of code written purely to add and remove classes from elements based on user interactions. We are JS enthusiasts at Digital Surgeons. Once you understand the true power of the language, you begin to hate using it in such rudimentary ways. We went through many iterations of design patterns before taking a step back and re-evaluating the problem.</p>
<h2>Keeping it active</h2>
<p>The concept behind toggles and switches is simple yet the potential is massive. The basic premise is that a class of <code>.active</code> should be added or removed from an element based on <code>data-*</code> attributes specifying the target selector and binding events. Lets help explain that with a little code. Take the anchor below for example. We are specifying a target selector in <code>data-trigger</code> and the event to bind the whole process to in <code>data-on</code>. In this case, when the anchor is clicked, <code>.active</code> will be added to <code>#my-element</code>.</p>
<figure><pre class='prettyprint lang-html linenums:1 linenumstrigger'>
&lt;a href="#" class="switch" data-trigger="#my-element" data-on="click"&gt;Click Me!&lt;/a&gt;
</pre></figure>
<p>Notice the <code>.switch</code> class. This anchor is a switch which means the <code>.active</code> class will be added only once. If we change that to <code>.toggle</code>, the <code>.active</code> class would be added first and then removed on the next trigger, this process would continue indefinitely.</p>
<h2>Turn it off and on again</h2>
<p>This wasn&#8217;t quite enough for us. We had realized the potential of what we were building and decided that with a small addition, huge advantages could be gained. Adding the ability to specify a selector to remove the <code>.active</code> class would unleash a new realm of possibilities. Take a look at this Toggle.</p>
<figure><pre class='prettyprint lang-html linenums:1 linenumstrigger'>
&lt;a class="toggle" href="#" data-trigger="#my-element|#your-element" data-on="mouseon"&gt;Click Me!&lt;/a&gt;
</pre></figure>
<p>Two selectors can be specified in the <code>data-trigger</code> attribute using a pipe separator. When the user hovers on this anchor, the <code>.active</code> class will be added to <code>#my-element</code> and removed from <code>#your-element</code>. This process would then be reversed on the next trigger and so on. If we were using a Switch the process would occur only once.</p>
<h2>I have the power</h2>
<p>This simple concept has the potential for complex functionality. We have built many UI elements using Toggles and Switches and without writing any extra JS.</p>
<p>Gumby 2 now comes with drawers and modals as examples of what you can build using toggles and switches. Check out the <a href="https://github.com/GumbyFramework/Gumby/blob/master/sass/ui/_toggles.scss">Sass for drawers and modals</a>. The <code>.drawer</code> and <code>.modal</code> classes are both hidden by default and utilise the <code>.active</code> class in order to display them, for example <code>.modal.active</code> displays the modal. You can then use any combination of toggles and switches to add and remove the <code>.active</code> class, this provides major flexibility. We have also added <a href="https://github.com/GumbyFramework/Gumby/blob/master/sass/var/_settings.scss#L122">variables to settings.scss</a> for you to tweak the provided modal and drawer styles.</p>
<pre class='prettyprint lang-html linenums:1 linenumstrigger'>
&lt;!-- Open and close drawer --&gt;
&lt;a class="toggle" href="#" gumby-trigger="#mydrawer"&gt;Open/Close Drawer&lt;/a&gt;

&lt;!-- Open modal window --&gt;
&lt;a class="switch" href="#" gumby-trigger="#mymodal"&gt;Open Modal&lt;/a&gt;

&lt;!-- Open one drawer and close another --&gt;
&lt;a class="toggle" href="#" gumby-trigger="#mydrawer|#myotherdrawer"&gt;Next Step&lt;/a&gt;
</pre>
<p>There have been far more advanced creations, check out the Toggle and Switch usage on the <a href="http://www.borderfree.com/">new Borderfree site</a>.</p>
<p>The selectors sepecified in <code>data-trigger</code> are passed directly to JS so any valid CSS selector can be used no matter how advanced. Also, multiple events can be specified, separated by a space, in <code>data-on</code>. The toggle or switch will trigger on each of the specified events. It&#8217;s also worth noting that the default event is click so no need to specify <code>data-on="click"</code>. Here&#8217;s a few more advanced examples.</p>
<figure><pre class='prettyprint lang-html linenums:1 linenumstrigger'>
&lt;a class="switch" href="#" data-trigger="#list &gt; li.children:first-child | #element .child"&gt;Click Me!&lt;/a&gt;
&lt;a class="switch" href="#" data-trigger="#list &gt; li[data-attr]" data-on="mouseon mouseout"&gt;Click Me!&lt;/a&gt;
&lt;a class="switch" href="#" data-trigger="#form input | #form &gt; a:last-child" data-on="focus blur"&gt;Click Me!&lt;/a&gt;
</pre></figure>
<p>Once you realize the potential of these tools you can build pretty much any UI feature. We&#8217;ve seen drawers, accordions, feature sliders any much more. Check out the Gumby showcase for more creative uses of Toggles and Switches and get involved with <a href="https://github.com/GumbyFramework/gumby">Gumby on GitHub</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalsurgeons.com/blog/gumbys-toggles-switches/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Secret Ingredient to Viral Videos</title>
		<link>http://www.digitalsurgeons.com/blog/the-secret-ingredient-to-viral-videos/</link>
		<comments>http://www.digitalsurgeons.com/blog/the-secret-ingredient-to-viral-videos/#comments</comments>
		<pubDate>Thu, 28 Mar 2013 13:15:28 +0000</pubDate>
		<dc:creator>Max Baldwin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Strategy]]></category>

		<guid isPermaLink="false">http://www.digitalsurgeons.com/?p=8080</guid>
		<description><![CDATA[There are a handful of companies that are notorious for creating banned television commercials. Anheuser Busch, GoDaddy and Snickers are [...]]]></description>
				<content:encoded><![CDATA[<p>There are a handful of companies that are notorious for creating banned television commercials. Anheuser Busch, GoDaddy and Snickers are just a few of companies that have made an impact with their banned commercials on the internet.</p>
<p><span id="more-8080"></span></p>
<div style="width: 650px; text-align: left; clear: both;"><iframe style="width: 560px; height: 315px; float: none;" src="http://www.youtube.com/embed/EJJL5dxgVaM?feature=player_detailpage" height="315" width="560" frameborder="0"></iframe></div>
<p>In 2007 Anheuser Busch created a commercial called “The Swear Jar” that they housed on bud.tv (see above). That video went viral and got reuploaded all over Youtube.  And who can forget the Snickers “Do Something Manly” commercial? A commercial that made it to TV and then got removed.</p>
<p>Banned television commercials are some of the most viral videos on the internet and they save a lot of money in the marketing budget.</p>
<h3>Too Much For TV</h3>
<div style="width: 650px; text-align: left; clear: both;"><iframe style="width: 560px; height: 315px; float: none;" src="http://www.youtube.com/embed/Oooij6sQYgI?feature=player_detailpage" height="315" width="560" frameborder="0"></iframe></div>
<p>The majority of banned commercials will get taken off television or never make it to television because their content is too inappropriate. The Snickers commercial, “Do Something Manly,” is the perfect example. It was named one of the top 10 best Super Bowl ads that year, but was considered to be homophobic by several humanities groups. The ad got kicked off of television, uploaded to the internet and has now been remade, remixed and re-uploaded over and over again; easily quadrupling the original viewership.</p>
<h3>Never Too Much For The Internet</h3>
<p>Thats right, some brands intentionally make their commercials too inappropriate for television, but just shy of explicit to keep them on YouTube. PETA and Budweiser have frequently released commercials digitally that are almost too inappropriate for YouTube with intentions of getting their brand recognized on social media and the blogosphere.</p>
<p>Not only brands, but activist groups that can’t afford to have a television advertising buy will take the risk just to get recognized.</p>
<h3>Who wins?</h3>
<p>These banned commercials and risque digital videos are getting shared via social media and reposted on blogs at an exponential rate. The consumer wins, right? Of course they do, they get social clout when their friends enjoy the video. They get traffic when their blog is linked to for posting the videos. Everyone wins, especially the brand.</p>
<p>The people are getting what they want (traffic and laughs) but the brands are the ones who are cashing in. Brand&#8217;s save tens of thousands of media dollars by using viral distribution. The viewers do all the marketing work for them by sharing these videos within small contained communities.</p>
<h3>How Does It Happen</h3>
<p>Not every video on the internet has the potential to go viral. The content in the video has to be able to grab the attention of a certain group of people in order for them to want to share it.</p>
<p>In an <a href="http://www.fastcocreate.com/1680716/a-youtube-execs-3-tips-for-viral-ad-success">interview</a> with Lucas Watson, the Vice President of global video sales at Youtube, Watson brings up three key ingredients that can help a video reach viral ad success. According to Watson a viral video requires either human insight, conversation ignition or emotional connection. He says that brands that understand how to connect with their audience or create tension are more successful when it comes to video advertising.</p>
<h3>What&#8217;s the Secret Ingredient?</h3>
<p>A <a href="http://adage.com/article/digitalnext/content-shared-close-friends-influencers/233147/#author">Study</a> done by the website Buzzfeed suggests that friends are the most common influencers in content that goes viral. Viral content starts within small groups of friends rather than content shared by large influencers. Large influencers may be able to reach a larger range of people, but their content  usually doesn’t last long.</p>
<p>Two very similar, but different forms of sharing. When a user shares content on social media it is like they are using a bullhorn, putting the content out there for everyone to hear. In real life users do not do that. They share ideas in one-on-one conversations or group discussions. Imagine if users shared content in real life the same way they shared content online. Some people would listen, others would walk past wondering who is this kid with the bullhorn?</p>
<p>Effective viral video content online needs to be something that people can engage with on a human level. The amount of social media shares only get&#8217;s content so far. The secret ingredient is making content powerful enough to elicit an actual conversation between two individuals.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalsurgeons.com/blog/the-secret-ingredient-to-viral-videos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to be a Digital Surgeon, February 2013</title>
		<link>http://www.digitalsurgeons.com/blog/how-to-be-a-digital-surgeon-february-2013/</link>
		<comments>http://www.digitalsurgeons.com/blog/how-to-be-a-digital-surgeon-february-2013/#comments</comments>
		<pubDate>Thu, 21 Mar 2013 14:17:37 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Strategy]]></category>

		<guid isPermaLink="false">http://www.digitalsurgeons.com/?p=7897</guid>
		<description><![CDATA[Whether it&#8217;s things we shared, wrote or were inspired by&#8230; here&#8217;s what made us tick in the month of February! [...]]]></description>
				<content:encoded><![CDATA[<p>Whether it&#8217;s things we shared, wrote or were inspired by&#8230; here&#8217;s what made us tick in the month of February!</p>
<p><span id="more-7897"></span></p>
<p>1) Hi, we&#8217;re Digital Surgeons, and we&#8217;re addicted to<a href="http://blogs.hbr.org/cs/2013/02/break_your_addiction_to_meetin.html"> meetings</a>. We&#8217;re currently 90 days clean of pointless meetings, but sometimes we still think about sending calendar invites to co-workers for no real reason. Harvard Business Review helped us, and maybe it can help you, overcome your addiction to meetings.</p>
<p>2) Stressing about an upcoming design interview? Trying to land your first job? Or maybe you&#8217;re a freelancer trying to get back into the stable employment game. The design team at Digital Surgeons has been in all of the above situations at some point in their career. Some of them have even been on the other side of the table doing the hiring. It&#8217;s through these collective experiences we were able to put together a comprehensive list of tips for <a href="http://designinstruct.com/articles/project-management/tips-design-interviews/">Design Instruct</a> on how to ace a design interview.</p>
<p>3) Until we are all replaced by robots (could be sooner rather than later), humans will only be able to perform one task at a time. So what happens when you need a designer to do a website for one client and a logo for another? Enter the moral dilema of resource thievery that project managers face daily, as evidenced in this Dilbert <a href="http://www.thedigitalprojectmanager.com/the-moral-dilemma-of-resource-thievery/">comic</a>. Also, you should take time to poke around the rest of the blog. It has some really great writing on the topic of digital project management.</p>
<p>4) We&#8217;re never too proud to tip our hat to great digital campaigns even if we may not have been behind them. This campaign from <a href="http://designtaxi.com/news/355907/Ray-Ban-Introduces-Real-World-Retro-Filter-Through-Sunglasses/">Ray-Ban</a> is one of those examples. It is perfectly on brand and combines mobile, social, digital and experiential. Everything we like to see.</p>
<p>5) Have you met our Tech Director, <a href="http://www.fideloper.com">Chris Fidao</a>? If not, you should. On top of being relentlessly hilarious, he is also incredibly skilled at his craft and always willing to teach. He demonstrates that passion for teaching with his <a href="http://net.tutsplus.com/tutorials/php/laravel-4-a-start-at-a-restful-api/">tutorial</a> on creating restful APIs in Laravel4 for Net Tuts.</p>
<p>6) Where does the future of E-commerce lie? For those in the know, they realize there is a land of opportunity in digital video. Making videos &#8220;shoppable&#8221; drastically increases the chances of a sale and it is still in it&#8217;s infancy. Here&#8217;s a look at a few of the technologies available and where the industry is going in this Agency Post <a href="http://www.agencypost.com/how-shoppable-video-will-add-the-next-layer-of-interaction-to-video-engagement/">article</a>.</p>
<p>7) Our mad scientist and director of interactive, Aaron Sherrill, offers some tips on how to not overuse <a href="http://motionharvest.com/2013/01/31/dont-overuse-jquery/">Jquery</a> in your development projects.</p>
<p>8) <a href="http://www.fastcompany.com/3006117/fast-feed/tweeting-teens-help-propel-pheed-no-1-social-app">Fast Company</a> shows us what a startup needs to be successful in 2013&#8230; A couple of internet famous tweens talking about it. How much does it cost to buy children these days?</p>
<p>9) The devil is always in the details, and here are some great details on how to prepare your images for the <a href="http://www.medianovak.com/blog/photography/tips-to-prepare-images-for-the-web/">web</a>. Why design something beautiful only to have the images look subpar?</p>
<p>10) Pete Sena spends the small amount of time he isn&#8217;t working or sleeping combing the internet for new tools and resources. He forgoes a normal social life and sleep cycle for the benefit of others; a digital Mother Teresa if you will. Here are the resources Pete found for <a href="http://www.petersena.com/blog/webdesign-resources-feb-2013/">designers</a> and <a href="http://www.petersena.com/blog/jquery-plugins-february/">front-end developers</a> last month. The man is a saint, and all he asks for in return is a quick follow on <a href="http://twitter.com/petesena">Twitter</a>.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalsurgeons.com/blog/how-to-be-a-digital-surgeon-february-2013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter API Update: Why Marketers Need to Care</title>
		<link>http://www.digitalsurgeons.com/blog/news/twitter-api-blackouts/</link>
		<comments>http://www.digitalsurgeons.com/blog/news/twitter-api-blackouts/#comments</comments>
		<pubDate>Thu, 14 Mar 2013 15:16:14 +0000</pubDate>
		<dc:creator>marissa</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.digitalsurgeons.com/?p=8009</guid>
		<description><![CDATA[D-Day has come to start making decisions impacted by Twitter’s API. While API updates are generally the responsibility of the [...]]]></description>
				<content:encoded><![CDATA[<p>D-Day has come to start making decisions impacted by Twitter’s API.</p>
<p>While API updates are generally the responsibility of the development team, Twitter is making some changes that all members of an agency or marketing team should be aware of. Version 1 of the API, which is currently utilized in almost all embedded Twitter feeds and plugins that allow such feeds to appear on websites, is being deprecated and replaced by<a href="https://dev.twitter.com/blog/changes-coming-to-twitter-api"> version 1.1</a>.</p>
<p><span id="more-8009"></span></p>
<p>In short, this update will likely impact all Twitter feeds that exist across your web properties. Plugins will no longer be able to pull information from Twitter the way it has in the past. Twitter has been employing “blackouts” of feeds utilizing the deprecated API to demonstrate which feeds will stop working completely once the transition is complete, the first of which took place early last week on March 5.</p>
<p>The complication is that developers cannot be sure which plugins will be able to adapt to the new version, which requires a deeper authentication process and will likely differ greatly from the current API. In addition, the new “<a href="https://dev.twitter.com/docs/embedded-timelines">embeddable timelines</a>” limits the level of customization available.</p>
<p>While the developers of the industry grapple to accommodate this change, we recommend that marketers take inventory of all of properties’ that utilize the API and monitor those feeds. We try to post about this sort of thing often you should <a title="@digitalsurgeons" href="https://twitter.com/digitalsurgeons">follow us on twitter</a>.<b id="internal-source-marker_0.45711855054832995"><br />
</b></p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalsurgeons.com/blog/news/twitter-api-blackouts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introducing Gumby 2, the web&#8217;s most powerful responsive framework.</title>
		<link>http://www.digitalsurgeons.com/blog/introducing-gumby-2-the-webs-most-powerful-responsive-framework/</link>
		<comments>http://www.digitalsurgeons.com/blog/introducing-gumby-2-the-webs-most-powerful-responsive-framework/#comments</comments>
		<pubDate>Mon, 04 Mar 2013 17:27:47 +0000</pubDate>
		<dc:creator>craig</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Developer Corner]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[The Lab]]></category>

		<guid isPermaLink="false">http://www.digitalsurgeons.com/?p=7755</guid>
		<description><![CDATA[Now more flexible than ever. Well, its finally here! We are proud to announce today that we are officially unleashing [...]]]></description>
				<content:encoded><![CDATA[<h4>Now more flexible than ever.</h4>
<p>Well, its finally here! We are proud to announce today that we are officially unleashing Gumby 2 to the world. Gumby 2 is the most powerful front-end responsive framework to date and we’re extremely excited to be able to give you all the opportunity to play with our new baby. Gumby 2 is available <a title="Download Gumby 2 Now!" href="http://www.gumbyframework.com" target="_blank">right now</a>, we hope you love it.</p>
<p><span id="more-7755"></span></p>
<p>There are a bunch of <a title="Read the Gumby Framework Documentation" href="http://www.gumbyframework.com/docs" target="_blank">great new features</a> and optimizations built into Gumby 2 that we hope you explore and utilize while creating your applications. The most obvious change, is that the entire framework has been rewritten in <a title="Read more about SASS" href="http://www.sass-lang.com" target="_blank">SASS</a>, or more specifically the SCSS syntax. Most everything that you need in order to completely customize Gumby for use in your project has become a variable. We also have included a bunch of handy mixins that are at your disposal to make complex annoying stuff into easy fun stuff.</p>
<p>Gumby 2 has been completely re-architected from the ground up. Its got some amazing new features and everything has been upgraded in some way. Interested yet? Here we go.</p>
<h4>SASS &amp; Compass</h4>
<p>Like I said, the first thing you’ll notice about Gumby 2 is that its been completely rewritten in SASS. This allowed us to turn most everything you’d ever need to change about Gumby into a variable; including the grid itself. We’re also leveraging the power of <a title="Compass Style" href="http://compass-style.org/" target="_blank">Compass’s</a> awesome library of mixins to make stuff like CSS3 and vendor prefixes less ‘headachy’. With this new version, you’re no longer limited to a 940px wide grid; nor are you constrained to the limits of 12, or 16 columns. Our design team may, or may-not, have thrown a party in secret after we shared this idea with them late last year. With Gumby 2 you can work with a grid of any width that you want, its defined as a variable, with any number of columns you’d like.</p>
<p>What about the Hybrid Grid, you ask? Well, thats still there, and better than ever because now you’re able to define how many columns are in your hybrid grid in addition to the default grid! Other cool stuff thats easy to define is the color scheme for your entire UI, your base font sizes, button radiuses and more! We’ve always been most proud of Gumby’s ability to sit as the backbone of any project. The goal of version 2 was to make that even more true than ever before. We took your feedback (make color changing easier) and ran with the idea. We thought, what if changing everything was easier? The results speak for themselves.</p>
<h4>Google WebFonts</h4>
<p>We believe that frameworks should help developers and designers make the web more beautiful, without adding extra work to their schedules. Finding, converting, hosting, serving, and browser testing the fonts on your projects are all huge pains in the — neck. When we started building Gumby 2, we were planning on launching with Open Sans included in a ‘fonts’ folder with the rest of the framework files.</p>
<p>You could have continued with your current process which likely involves scouring the web for web safe fonts, researching licenses, or embedding a script from a site like <a title="TypeKit" href="https://typekit.com/" target="_blank">TypeKit</a> or <a title="Google WebFont Library" href="http://www.google.com/fonts" target="_blank">Google WebFonts</a>. That probably would have been fine, but that wouldn&#8217;t have made your life any easier. What we decided to do is give you a huge library to pick from, the Google WebFonts Library, right off the bat. If what you need isn’t in there, you always have the option to use one of your older methods — no extra work involved. If the font you need is a part of the Google WebFonts Library, all you have to do is select it while creating your Gumby build and magically all of the typography on your entire website just works right out of the box!</p>
<h4>Modular Scale</h4>
<p><a title="Create a Modular Scale" href="http://www.modularscale.com" target="_blank">Modular scale</a> is a beautiful thing. Designers love it, developers love it, Digital Surgeons loves it. We’ve built Gumby 2 to have the best typography of any front-end framework available today. It was our mission to make beautiful type a focal point of our framework because it is something that we are extremely passionate about at DS. If you’re not familiar with modular scale, you can read about it <a title="Modular Scale More Meaningful Typography" href="http://alistapart.com/article/more-meaningful-typography" target="_blank">here</a>, <a title="Relational Design" href="http://blog.8thlight.com/billy-whited/2011/10/28/r-a-ela-tional-design.html#tips" target="_blank">here</a>, <a title="Sassy Modular Scale" href="http://thesassway.com/projects/modular-scale" target="_blank">here</a>,<a title="Composing the new Canon" href="http://24ways.org/2011/composing-the-new-canon/" target="_blank"> here</a>, and <a title="Contrast through scale" href="http://typecast.com/blog/contrast-through-scale" target="_blank">here too</a>. We are leveraging an awesomesauce mixin by <a title="Scott Kellum" href="https://github.com/scottkellum" target="_blank">Scott Kellum</a> (you should follow him on twitter) which makes beautiful typography something that comes baked into every single website or application you build using the Gumby Framework. It makes rapid prototyping better, it makes finished products better, it make responsive typography easy. It is just a brilliant idea, so we built modular scale deep into the core of the Gumby Framework.</p>
<h4>New User Interface</h4>
<p>Farewell green UI. The green was cool and all, but it wasn&#8217;t as project agnostic as a more neutral color palette would have been. We&#8217;ve given Gumby a complete fashion makeover in version 2. Gumby now sports a beautifully modern UI with a neutral color palette, amazing typography, your choice of metro or gradated interface treatments, tons of new elements to build with, and a weave.</p>
<p>Gumby 2 gives you two “<a title="Interflavors" href="http://gumbyframework.com/docs/ui-kit/#interflavors" target="_blank">interflavors</a>” to choose from while building out your applications user interface. If your app has a flat UI, the .metro flavor will work wonders to speed up your workflow. The buttons and elements in metro are all “flat”, without any gradients and have squared corners by default. If your design is smooth and full of beautiful gradients, we’ve got a flavor for that too! We thought that giving you two flavors of Gumby to choose from, or mix and match together, would give you a solid foundation from which to bootstrap your responsive application. We’re all about cutting out extra work from anyone’s workday. We’ve done our best to make building front-end with Gumby the easiest, quickest, sexiest, and most fun experience possible.</p>
<p>Another effort eliminating work speeder-upper we’ve put together is our amazing Gumby Framework Customize Tool! Custom Gumby builds tailored to your project on a per-project basis! Do you even need any more reasons to go out and give Gumby a download?</p>
<h4>A Cert-Entypo Beauty (see what i did there?)</h4>
<p>Haven’t you heard? Icons are fonts now! We love a good glyph, so we love <a title="Entypo Open Icon Font" href="http://www.entypo.com/" target="_blank">the Entypo iconset</a> by Daniel Bruce about 260+ times. Which is why we’ve included every single one inside of Gumby 2. Not only are all of the icons there at your disposal, but they’re incredibly easy to implement into your projects. Give them a spin, and let us know what you think.</p>
<h3>Supercharge your UI with Gumby JS</h3>
<p>Gumby 2 JavaScript has been completely re-designed from the ground up. We have major improvements to all functionality as well as a ton of brand new features. Gone are the days of a single object housing all of Gumby’s magic, we’ve now abstracted each UI module into a separate file, hooking into the global Gumby object in order to keep everything namespaced and provide helpful debugging features.</p>
<p><a title="Gumby Framework Javascript" href="http://gumbyframework.com/docs/javascript/" target="_blank">The JavaScript</a> is still designed to work in the background, bringing the UI kit to life without the need to write any extra code. However we have extended this philosophy by providing optional parameters, specified in html attributes, as well as dispatching and listening for custom events to allow programmatic interaction with the modules.</p>
<p>Every parameter of a UI module can be specified as an html attribute, using one of three formats. The valid HTML5 data-*, gumby-* or no prefix at all, each is fully supported so take your pick!</p>
<h4>Toggles &amp; Switches</h4>
<p>Toggles were born in Gumby 1 but boy are they growing up fast! Gumby 2 Toggles boast new features, more advanced functionality and now have a baby brother in the form of Switches!</p>
<p>The aim of Toggles and Switches is to remove the need for pointless, boilerplate JavaScript needed for every CSS driven UI, adding and removing classes based on user interaction. The anatomy is simple yet powerful. Two CSS selectors can be specified using a gumby-trigger attribute. A class of .active will be applied to the first and removed from the second, Switches will perform this action once whereas Toggles will repeat the action, toggling the classes back and forth.</p>
<p>Although this may sound simple, <a title="Check out the Gumby Javscript Demos" href="http://www.gumbyframework.com/demo" target="_blank">powerful user interfaces</a> can be built using a combination of Toggles and Switches.</p>
<h4>Skiplinks</h4>
<p>Skiplinks allow you to smoothly scroll the window or any element to a specific location. Specify a CSS selector, px value or just ‘top’ to easily scroll to that point on the page.</p>
<p>There are three optional attributes that can be used to modify this functionality, gumby-easing, gumby-duration and gumby-offset. Gumby uses jQuery and the easing and duration parameters are passed directly to $.animate() so why not include an easing plugin and get creative.</p>
<h4>Fixed Positions</h4>
<p>Fixing headers, sidebars and other UI elements, relative to the users scroll, is a common and painful requirement. Gumby 2 makes this easy yet flexible. Using the gumby-fixed attribute, with CSS selectors and px values, elements can be fixed and released at various points on the screen with ease. Check out the sidebar on the Gumby documentation pages.</p>
<h4>Retina Images</h4>
<p>Since Apple introduced the retina display we’ve had to change the way we design and build for the web, serving up responsive images for different device resolutions. Gumby 2 is here to help. If you include a high resolution image in the same directory as your regular image with the suffix @2x, applying the gumby-retina attribute to your <img alt="" /> will ensure the higher resolution image is served up on retina displays.</p>
<h4>Custom Events</h4>
<p>One of the major updates we’ve made to the <a title="Gumby UI Kit" href="http://www.gumbyframework.com/docs/ui-kit/" target="_blank">Gumby UI kit</a> is the introduction of custom events. Each UI module now listens for events that you can use to programmatically interact with modules as well as triggering events based on the users interactions. All events are namespaced with ‘gumby’ and jQuery’s trigger() and on() methods make binding and listening easy. Grab content from your server when a tab is changed, trigger style changes when your sidebar becomes fixed, give the user some feedback when a checkbox is checked, the possibilities are endless.</p>
<h4>Now download it and go make awesome!</h4>
<p><a title="Customize Gumby 2" href="http://www.gumbyframework.com/customize" target="_blank">Go grab Gumby 2</a>, follow us on twitter <a title="Follow Gumby Framework on Twitter" href="http://twitter.com/gumbycss" target="_blank">@gumbycss</a>, and let us know what you think! We&#8217;d love to see the awesome stuff you are building with it, so please submit to <a title="Our Showcase" href="http://www.gumbyframework.com/showcase" target="_blank">our showcase</a> once you&#8217;ve rolled out your next masterpiece. We’re super excited about having the opportunity to bring this awesome framework to you; rest assured that this is only the beginning of awesomeness yet to come! Thank you all so much for your support and contributions to the <a title="Gumby on GitHub" href="http://www.github.com/gumbyframework/gumby" target="_blank">Gumby GitHub community,</a> keep it up!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalsurgeons.com/blog/introducing-gumby-2-the-webs-most-powerful-responsive-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sublime Text 2 Workflow &amp; Packages</title>
		<link>http://www.digitalsurgeons.com/blog/sublime-text-2-workflow-and-packages/</link>
		<comments>http://www.digitalsurgeons.com/blog/sublime-text-2-workflow-and-packages/#comments</comments>
		<pubDate>Thu, 17 Jan 2013 15:02:31 +0000</pubDate>
		<dc:creator>Dan Poulin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Developer Corner]]></category>
		<category><![CDATA[Featured]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[The Lab]]></category>

		<guid isPermaLink="false">http://www.digitalsurgeons.com/?p=6628</guid>
		<description><![CDATA[With the new year beginning all of us at Digital Surgeons are seeking ways to increase our personal efficiency and [...]]]></description>
				<content:encoded><![CDATA[<p>With the new year beginning all of us at Digital Surgeons are seeking ways to increase our personal efficiency and productivity. Part of that is learning to take full advantage of the tools available to us. We thought it would be worth it to share killer features of a program near and dear to many of our developer&#8217;s hearts — <a href="http://www.sublimetext.com/">Sublime Text 2</a>. We&#8217;ve selected a sampling of the features we find to be the most helpful and unique to the editor. But before we spill the beans on usage tips, we&#8217;ll take a short detour showing how we configure ST2 and some of the options that are available to you.</p>
<p><span id="more-6628"></span></p>
<h2>Configure it, (J)SON!</h2>
<p>Sublime Text 2 stores settings in a series of JSON formatted files that exist in pairs of &#8220;Default&#8221; and &#8220;User&#8221; versions. These are accessible from the Preferences menu (inside the application menu on OSX). The Default version is overwritten on program upgrade and serves as a well commented reference for customizing every available option. Your personal configuration lives in the User version of the file and will remain in place on upgrade. As a bonus, add-ons follow the same convention and can be found in Preferences &gt; Package Settings.</p>
<p>The main editor configuration lies in &#8220;Settings&#8221;, and is where some of the more interesting program-wide settings are available. Here are some of the changes we like to make:</p>
<figure>
<pre class='prettyprint lang-js linenums:1 linenumstrigger'>  "auto_complete_commit_on_tab": true,
  "default_line_ending": "unix",
  "ensure_newline_at_eof_on_save": true,
  "trim_trailing_white_space_on_save": true</pre><br />
</figure>
<p>This combination of settings enforces a Unix world view on our files. Since we are a LAMP shop and work mostly on *nix operating systems (Macs + Linux), these settings make sense for everything we do. In particular it allows us to use the tab key to trigger autocompletion much like bash or zsh would. It also enforces the line-ending and whitespace conventions of Unix, which help to keep things clean in our source files.</p>
<figure>
<pre class='prettyprint lang-js linenums:1 linenumstrigger'>  "highlight_line": true,
  "highlight_modified_tabs": true</pre><br />
</figure>
<p>These settings help with scanning and visibility while working. The first adds background color to the line the cursor is on, which is useful to quickly locate it. Syntax highlighting color schemes affect how contrasting the background color is. The second, as you might have guessed, adds a marker to tabs to let us know unsaved changes have been made to a file.</p>
<figure>
<pre class='prettyprint lang-js linenums:1 linenumstrigger'>  "open_files_in_new_window": false</pre><br />
</figure>
<p>Specific to OSX, this prevents opening source files in Finder from opening a new Sublime Text 2 window instead of adding a tab to the current project.</p>
<h2>What Does the Scouter Say About His Power Level?!</h2>
<p>Make no mistake; The true power of Sublime Text 2 lies in it&#8217;s &#8220;fuzzy matching&#8221; and multiple cursors. If used judiciously, these features can account for a great deal of saved time and happier wrists. This alone is well worth the modest price of a license.</p>
<h3>No-one Can Resist Fuzzy Matching. Except Klingons.</h3>
<p>Fuzzy matching refers to the editor&#8217;s universal ability to guess what you mean from just a few key characters. It&#8217;s like autocomplete, except that you don&#8217;t have to spell things perfectly and can skip parts of the word/identifier. For example, if I want to switch the current file&#8217;s syntax highlighting to Bash, I would open up the command palette (Mac: Cmd-Shift-P, Linux/Windows: Ctrl-Shift-P) and invoke the command &#8220;Set Syntax: Shell Script (Bash)&#8221;. Typing any of &#8220;Syntax: Sh&#8221;, &#8220;syntax: sh&#8221;, &#8220;syntsh&#8221;, &#8220;setbash&#8221;, &#8220;stebash&#8221;, &#8220;stbsh&#8221;, or even just &#8220;bash&#8221; or &#8220;shell&#8221; will all bring that command to the top of the options, and simply hitting enter will select it and perform the action. That saves a lot of keystrokes, and prevents having to wade through the menu and get your hands away from your keyboard.</p>
<figure><img alt="" src="http://www.digitalsurgeons.com/wp-content/uploads/2013/01/bash.png" />A Goto Anything prompt with a fuzzy search.</figure>
<p>If that doesn&#8217;t seem terribly useful to you, consider when you are typing a variable name and mis-spell it. Say $darth_vader gets typed as $darthvader. Sublime Text 2 is smart enough that simply hitting tab at this point will correct it to match one of the identifiers it knows about. Or perhaps you have three similarly named variables like $hobbit, $hobbiton and $hbts, after typing just $hbt, you can cycle to the variant you want by hitting tab multiple times.</p>
<p>Even more helpful, autocompleting many built-in functions will automatically add the parentheses and move your cursor between them. This functionality is referred to as snippets and usually comes bundled with syntax highlighting packages. More advanced snippets go further and give you boilerplate code with the tab key moving you to the next logical editing area. Take for example the snippet for foreach in php:</p>
<figure><img alt="" src="http://www.digitalsurgeons.com/wp-content/uploads/2013/01/foreach.gif" />An animation of smart tab movement in a snippet.</figure>
<p>Perhaps the most time saving variation of fuzzy matching is the ability to jump to any file, symbol, method or line via Goto &gt; Goto Anything (Mac: Cmd-P, Linux/Windows: Ctrl-P). Type a few key words or letters of a file in the current project and instantly have that file in front of you, pressing enter to pin it to a tab. Goto Symbol (Mac: Cmd-R/Cmd-P, &#8216;@&#8217; Linux/Windows: Ctrl-R/Ctrl-P, &#8216;@&#8217;) allows you to browse symbols in the file with fuzzy matching, letting you type things like &#8220;set&#8221; to jump to any of the set methods in a php file for example. Goto Line (Mac: Ctrl-G/Cmd-P, &#8216;:&#8217; Linux/Windows: Ctrl-G/Ctrl-P, &#8216;:&#8217;) to jump to any line in the current file. That&#8217;s really useful when investigating an error message. A hidden option using &#8220;#&#8221; in the Goto Anything prompt lets you jump to any word in a file. Combining two of these let&#8217;s you move even quicker. Say you need to go to the only get method in a file you remember having ProjectContent or Projcontent or some such in the name, you can type Cmd-P then &#8220;prjcont@get&#8221; enter and be brought straight to the declaration. Magic!</p>
<h3>Coding Like a Sailor with Multiple Cursors</h3>
<p>Multiple cursors is exactly what it sounds like, but I promise you it will bow your mind how useful it is and how dependent on it you will become. Let&#8217;s show an example of where it shines. Say you have the following code:</p>
<figure>
<ul>
<li><a href="http://example.com">Link 1</a></li>
</ul>
<ul>
<li><a href="http://example.com">Link 2</a></li>
</ul>
<ul>
<li><a href="http://example.com">Link 3</a></li>
</ul>
<ul>
<li><a href="http://example.com">Link 4</a></li>
</ul>
<ul>
<li><a href="http://example.com">Link 5</a></li>
</ul>
</figure>
<p>Let&#8217;s say you need to do a few things. You want to change the single quotes to double quotes (&#8221; -&gt; &#8220;&#8221;). You also want to change each hyperlink&#8217;s url to point to a numbered article, whose number matches the number in the hyperlink&#8217;s text for demonstration&#8217;s sake (http://example.com -&gt; http://example.com/blog/article/&lt;number&gt;). We would start by placing our cursor immediately after the quotations of the first href attribute. Hold Shift and click and drag with the right mouse button (Mac: Option and click and drag with left mouse button) downward to immediately before the quotations of the last href. You will notice that you now have selected all of the urls and quotations in a vertical block!</p>
<p>Now go ahead and type a double quote. Sublime Text 2 will be helpful and place the selection <em>inside</em> the new quotations instead of replacing it. But our old single quotes are still there. Simply use your keyboard&#8217;s arrow keys and delete/backspace key to remove them the same way you would for one line. Now we can just arrow over to the end of the urls and type the rest of the url as we want it (/blog/article/) up to the number. To get the numbers we can arrow over to the hyperlink text that select those numbers, copy, then arrow back to the end of the urls and paste.</p>
<figure><img alt="" src="http://www.digitalsurgeons.com/wp-content/uploads/2013/01/multiple.gif" />An animation of the steps described above.</figure>
<p>Voila! You&#8217;ve just done some identical work on multiple lines with minimal tedium. Without multiple cursors we might have chosen to delete four of the lines, make our modifications then duplicate the new line four times. After which we would have had to individually increment the numbers in both the urls and the link text. All that in <em>addition</em> to the work we just did!</p>
<h2>More Control with Packages</h2>
<p>Our next order of business is to install <a href="http://wbond.net/sublime_packages/package_control">Package Control</a>. Package Control is a <a href="http://en.wikipedia.org/wiki/Package_management_system#Terminology">package manager</a> in the *nix style (like an &#8220;app store&#8221;, but in text mode and minus the purchases). Through it we install and manage upgrades for all of the other packages we use. Since it uses github as a backend, the packages are always fresh and the selection is well varied. We don&#8217;t use very many packages as the default functionality of ST2 is already very mature and capable, but there are a few essentials missing that every developer should have. Two of them expand the capabilities of fuzzy matching; These are Emmet (formerly known as ZenCoding) and Hayaku.</p>
<h3>Expanding HTML with Emmet</h3>
<p><a href="http://docs.emmet.io/">Emmet</a> allows us to use intuitive css-selector-like expressions to generate tedious boilerplate HTML. It&#8217;s hard to communicate just how awesome it is without experiencing it yourself. As an excersize, try opening an html file and pasting in the following:</p>
<figure>
<pre class='prettyprint lang-css linenums:1 linenumstrigger'>  #main.container&gt;(h2+p&gt;lorem20+ul&gt;(li&gt;a.blue[rel="alternate"]{Link $ - })*5)*2</pre><br />
</figure>
<p>Now press tab while your cursor is just after the final character and watch the magic unfold. If you haven&#8217;t, take a look at what the output looks like:</p>
<figure><img alt="" src="http://www.digitalsurgeons.com/wp-content/uploads/2013/01/htmlrulez.png" />What happens when you press tab after writing some Emmet selector-like abbreviations.</figure>
<p>There&#8217;s a lot going on here, but it should all be very intuitive to anyone who has delved into front-end development. But wait, that&#8217;s not all! We can also highlight text, press Ctrl-W and get a text box at the bottom of our editor. Just type a selector expression and it will wrap the highlighted text with the appropriate markup! For more detail on all the possibilities, we reccomend looking at the <a href="http://docs.emmet.io/">documentation</a>.</p>
<h3>Here is Hayaku. Type only letters needed. See it unfold fast.</h3>
<p><a href="http://hayakubundle.com/">Hayaku</a> greatly expands autocomplete for CSS files, letting us type just a few key letters and tab complete them into full style rules. Being able to type &#8220;dn&#8221; and get &#8220;display: none;&#8221;, or type &#8220;h20&#8243; and get &#8220;height: 20px;&#8221; by tab-completing really saves a lot of key strokes. The best part is you don&#8217;t have to memorize any abbreviations, just take your best guess as to what the key characters are in the rule and hit tab. Hayaku will amaze you at how well it can guess what you meant.</p>
<p>If you looked further into the Emmet documentation, then at this point you might be wondering &#8220;Hey! Emmet is supposed to do some of the Hayaku stuff too, won&#8217;t they congflict?!&#8221;. Fortunately, if both are present, Hayaku will supercede Emmet&#8217;s CSS features in favor of it&#8217;s own, resulting in a happy developer.</p>
<h3>Trapping Code Lint with SublimeLinter</h3>
<p>Another must-have package is <a href="https://github.com/SublimeLinter/SublimeLinter">SublimeLinter</a>, which applies code linting directly in the editor as you type for a multitude of web development languages including CSS, PHP, Ruby, Javascript, JSON, Perl and just about any language that either has a linter built in to its package or provided by another program. We do find however that CSSLint is too zealous and that SUblimeLinter&#8217;s default visual notification for errors was ugly, so we made the following modifications to Preferences &gt; Package Settings &gt; SublimeLinter &gt; Settings &#8211; User:</p>
<figure>
<pre class='prettyprint lang-js linenums:1 linenumstrigger'>
  "sublimelinter_mark_style": "none", 
  "sublimelinter_gutter_marks": true</pre><br />
</figure>
<p>By default SublimeLinter outlines the entire line if one or more errors is present. Using these settings, we replace the outline with a mark in the gutter immediately next to the line numbers, which is less intrusive but still visually informative. As a bonus we have a hint for the number/severity of errors on a line by the size of the mark in the gutter. The end result looks like this:</p>
<figure style="text-align: center;"><img alt="" src="http://www.digitalsurgeons.com/wp-content/uploads/2013/01/blah.png" />A nicer looking inline SublimeLinter.</figure>
<p>We tweak the csslint options to turn off many of the warnings mentioned in <a href="http://2002-2012.mattwilcox.net/archive/entry/id/1054/">Matt Wilcox&#8217;s criticisms of CSSLint</a>. We could turn it off entirely, but think that the remaining items (warnings to include the other vendor prefixes, fix outright errors etc.) are worth keeping around.</p>
<figure>
<pre class='prettyprint lang-js linenums:1 linenumstrigger'>  "csslint_options": {
      "adjoining-classes": false,
      "box-model": false,
      "box-sizing": false,
      "compatible-vendor-prefixes": "warning",
      "display-property-grouping": true,
      "duplicate-background-images": false,
      "duplicate-properties": true,
      "empty-rules": true,
      "errors": true,
      "fallback-colors": "warning",
      "floats": false,
      "font-faces": false,
      "font-sizes": false,
      "gradients": "warning",
      "ids": false,
      "import": "warning",
      "important": "warning",
      "known-properties": true,
      "outline-none": false,
      "overqualified-elements": "warning",
      "qualified-headings": false,
      "regex-selectors": "warning",
      "rules-count": "warning",
      "shorthand": "warning",
      "star-property-hack": "warning",
      "text-indent": "warning",
      "underscore-property-hack": "warning",
      "unique-headings": false,
      "universal-selector": "warning",
      "vendor-prefix": true,
      "zero-units": "warning"
  }</pre><br />
</figure>
<p>In addition to these, you can obtain syntax highlighting packages for just about any language out there, and certainly all of the commonly used languages in web development. You can also find additional color schemes (syntax highlighting coloration) and themes (skins for the program itself — <a href="https://github.com/buymeasoda/soda-theme/">Soda Theme</a> is the most polished in our opinion) to suit your preferences.</p>
<h2>That&#8217;s a Wrap!</h2>
<p>Despite the intimidating length of this article, we&#8217;ve only managed to go through some of the features Sublime Text 2 offers. We didn&#8217;t discuss, for example, the vi editing mode (&#8220;Vintage mode&#8221;) that one of our developers swears by (and to be fair, nothing beats Vim for terminal editing). But for many of us multiple cursors and tab completion engines are the compelling reason to stick with this editor. What do you think? Did we miss any blow-you-away features or packages that you use in your workflow? Drop us a line in the comments.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalsurgeons.com/blog/sublime-text-2-workflow-and-packages/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Why SnapChat Matters to Brands</title>
		<link>http://www.digitalsurgeons.com/blog/why-snapchat-matters-to-brands/</link>
		<comments>http://www.digitalsurgeons.com/blog/why-snapchat-matters-to-brands/#comments</comments>
		<pubDate>Mon, 14 Jan 2013 14:15:16 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Strategy]]></category>

		<guid isPermaLink="false">http://www.digitalsurgeons.com/?p=6656</guid>
		<description><![CDATA[What the hell is SnapChat you ask? It is a mobile application that allows for real time picture/video chatting with [...]]]></description>
				<content:encoded><![CDATA[<h2></h2>
<p>What the hell is SnapChat you ask? It is a mobile application that allows for real time picture/video chatting with friends. It is also the most demonized youth fad since&#8230;whatever the last thing was. It is widely accepted that Snapchat serves but one purpose: for millennials to spam pictures of their genitals to each other. Or so major media and blogging outlets would lead you to believe. Why are we even talking about this; is the team Digital Surgeons actually just a bunch of degenerate Snapchat sexting enthusiasts? Yes, but that’s not the only reason we are talking about Snapchat. Snapchat is not actually based around sexting. Snapchat is a force to be reckoned with in the social sphere and it is only a matter of time before brands begin utilizing it to create unique consumer experiences.</p>
<p><span id="more-6656"></span></p>
<h2>Why SnapChat?</h2>
<p>After only a year of existence, SnapChat processes over 50 million images and videos. Every single day. Yeah, give yourself a second to wrap your head around that statistic. For comparison, Instagram has 5 million photos uploaded to it daily. And since we are name dropping other social platforms, we might as well make mention of the David vs. Goliath battle that Snapchat recently came out ahead on. If imitation is the sincerest form of flattery, Snapchat should be blushing at how much Facebook admires their platform. Zuckerberg himself took 12 days to copy Snapchat’s entire platform and release it as “Poke”. The best part of the Poke application? What a failure it is. Snapchat remains in the top 5 free apps while Poke doesn’t crack the top 100. Yikes.</p>
<h2>A Sense of Intimacy</h2>
<p>Is there any greater connection in the world than a one-on-one face-to-face relationship? Is there anything more powerful than staring deeply into someone’s eyes? We have long believed that the best way for a brand to succeed is to form these relationships with consumers. Social media allows brands to easily become personal again. Marketers have often lauded the public nature of traditional social platforms; rallying around cries of “virality” and “earned impressions” from brands on social media. Snapchat is not designed to be socially shared or accessible to all. The interactions are one-on-one and fleeting, you know, like real human interactions. A platform such as Snapchat lets brands not only get personal, but have that real face-to-face contact. A campaign will prove definitively how engaged a brand&#8217;s fans really are. Are they engaged enough to hold a private conversation to unlock content?</p>
<h2>MMMMmmMillennials</h2>
<p>If there’s one word that get’s marketers drooling, it’s the mention of the oh-so-sought after millenial consumer. That rambunctious 13-21 year old consumer that is full of disposable income and also thinks your brand sucks. They hate your banner ads and hate your email blasts even more. They aren’t even watching your commercials on TV&#8230; they’re too busy taking pictures of themselves and sending it to their friends on Snapchat. What’s a brand to do? Keep buying the same old ineffective ad units but infuse them with “wacky humor”? Snapchat is an untouched platform inhabited almost entirely by millennials; the next move is obvious.</p>
<h2>Why we like Snapchat</h2>
<p>We like Snapchat for same reasons we liked Facebook and Twitter when they came onto the scene: they’re cool and possibilities are endless. Snapchat provides marketers and brands a platform for interacting with consumers in humorous and personal way. Imagine if you got a SnapChat from the Burger King King or the Michelin Man? It&#8217;s funny. It&#8217;s slightly unsettling. It&#8217;s a great brand experience.</p>
<p>The Facebook Poke platform was recently utilized by an Israeli Lingerie brand; sending a ten second titillating <a href="http://www.digitalbuzzblog.com/delta-lingerie-first-facebook-poke-campaign/">video</a> of a model putting on the brand&#8217;s tights. Clearly there is the safety of the Facebook name behind Poke but we believe the real success will be using the SnapChat platform. For a platform that has gained notoriety for being exclusively for sexting, wouldn&#8217;t it be interesting to see brand&#8217;s push the envelope?  We hope 2013 brings us a brand that is brave enough to connect with their customers in a bold, visual and 10-second manner.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalsurgeons.com/blog/why-snapchat-matters-to-brands/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Great Social Media Debate: In-House or Agency?</title>
		<link>http://www.digitalsurgeons.com/blog/the-great-social-media-debate-in-house-or-agency/</link>
		<comments>http://www.digitalsurgeons.com/blog/the-great-social-media-debate-in-house-or-agency/#comments</comments>
		<pubDate>Thu, 10 Jan 2013 19:26:24 +0000</pubDate>
		<dc:creator>Alex</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Strategy]]></category>

		<guid isPermaLink="false">http://www.digitalsurgeons.com/?p=6690</guid>
		<description><![CDATA[Historically as an agency, we have always believed that social media should be handled in-house. We recommend that if an [...]]]></description>
				<content:encoded><![CDATA[<h2></h2>
<p>Historically as an agency, we have always believed that social media should be handled in-house. We recommend that if an in-house social media team is possible, brands should pursue that option. It now seems that brands are finally catching on as Nike has recently moved all of its social media activity in-house and there are rumblings that other iconic brands are poised to do the same. We don’t believe there is any black and white definitive answer to the social media question such as “All brands should do social media in-house” or “All brands should hire agencies to handle every aspect of their social media strategy” or “social media is the devil”. We will, however, try to shine some light on the facts to making the decision to bring social in-house vs. hiring an agency.</p>
<p><span id="more-6690"></span></p>
<h2>Reasons why social media might not be possible to accomplish in-house</h2>
<p>There are two kinds of brands that cannot have internal social media teams: Brands that are too big for it to make sense and brands that are too small. Holding companies that have multiple and, in some cases, conflicting brands within their portfolios will always find it hard to act in real-time while being creative, conversational, and innovative. They are simply too big and often too corporate to pivot quickly, take on resources/risk internally and, more often then not, won&#8217;t have the core competencies to direct/manage social media teams. It makes more sense for them to just manage a roster of qualified agencies that ooze with communications prowess.</p>
<p><img class="alignnone" alt="" src="http://www.digitalsurgeons.com/wp-content/uploads/2013/01/corporate-lobby-cartoon.jpg" width="430" height="215" /></p>
<p>Small brands are a different story. Smaller brands are typically either short-handed or not willing to risk adding a head or two to their staff budget in order to bring social media in-house.  Time is usually their enemy in this case and they lack truly qualified experts or utility players that can set content strategy and goals, read and analyze data, gain insights, write, design, and manage multiple platforms and tools. In this scenario it becomes a much smarter investment to just find a strategic agency partnership.</p>
<p>There is also a big technology layer to social media so both big and small brands will need to have a firm understanding of how these platforms work, forecast how they will change and put the brand on the right track for sustained success.</p>
<h2>Five tips for bringing social media in house</h2>
<p><strong>1. Clear cut goals should be established beforehand</strong>: Think of the internet as the Sahara desert. Large, unknown, and unforgiving. Without setting clear goals for your social media activities, you might as well be hiking across the Sahara and hoping for the best. YOU’RE GOING TO HAVE A BAD TIME. You need to figure out which metrics are important and why. Do you want to increase followers? Why? What value will both parties obtain and how can you align your strategies to that. If you want to increase interactions volume may most likely not be the answer. Maybe the goal of these efforts is to drive traffic or media impressions to your brand or site. Figure these out ahead of time so you don’t end up in a situation where you need to kill and eat a co-worker to survive the oppressive desert conditions.</p>
<p><strong>2. Get the right people on the bus</strong>: If you’re going to keep social media in-house, you need to have the right dedicated resources for the job. It&#8217;s not an interns job, nor the job of a secretary part-time. Asking your already inundated brand manager to do it is not going to cut it either. Try to hire and match the credentials against capabilities within a communications agency. This person should be accustomed to writing within your brand voice and essence. They should be have a fundamental understanding of all social media platforms: the technology that powers them, the different ways in which users interact on them and how to track all of these activities. These hires should have a strategy on how to translate your brand style into a theme based on each platform (i.e What is the visual theme of your Instagram feed?).</p>
<p>Be forewarned, upon posting the social media position to the internet you will be inundated with responses from recent college grads who fancy themselves as &#8220;social media experts.&#8221; The sad truth is that just because someone reposts Mashable articles for their 200 followers to enjoy does not make them an expert. Likewise, steer clear of people that call themselves gurus (just because we hate that word here). Lastly, and most important, are the numbers. Just because a person has 10,000 followers or likes doesn&#8217;t mean they are popular or know social media. They could have easily bought the followers or joined a #followback club in an effort to boost their profile for people like you! Look at engagement metrics, look through their connections (likes, followers, etc) to make sure they are real and that their connections are real as well.</p>
<p><strong>3. Social media is not a “set it and forget it” solution:</strong> Why is social media popular? Because this generation is made up of sad, shut-in mole people who prefer digital friendship? Maybe, but also because it is entertaining, constantly fresh and easily digestible. We live in a real-time society. Whether it be research, reviews, feedback, whatever, you have to be prepared for anything and everything. An unexpected cultural event can be a great platform to pivot off of. Your brand’s content needs to be realtime. Tune in 24/7 because your consumers are. No brand that posts on Facebook and thinks “Phew, that should be good for the month,” will be successful.</p>
<p><strong>4. Proper tools should be purchased</strong>: Agencies don’t provide social media services powered by magic. Behind the curtain is a myriad of software solutions for listening, engagement, analytics, development, promotions and reporting. It generally won’t make financial sense for you to purchase all of these softwares for your in-house efforts, but you will certainly need to pick and choose the strongest offerings. Some platforms do more then others. Some integrate with other software like CRMs, marketing automation platforms or email systems. Do your research, go through the demos, and then do more research. Oh, there goes that time thing again.</p>
<p><strong>5. There needs to be buy-in at every level:</strong> Social media is the constant and public voice of your brand. For that reason, there needs to be input from every level, especially the highest level; yes, we’re talking about the Wizard of Oz him/herself. The CEO might understand why social media is important to a brand, but they also need to understand how valuable their input is. The biggest asset of having an in-house team is the close proximity to leadership; make sure you’re taking advantage of that close proximity to accurately disseminate the brand’s voice and to take the real-time value you&#8217;re getting from your consumers and turn them into actions. That is the magic and that will turn you into a truly social brand.</p>
<p>Remember, whichever approach you are taking or planning to take isn&#8217;t going to happen over night. There is no silver bullet to solving the social-media &#8220;problem&#8221; or everyone would be awesome at it. Social media is a constantly evolving communications landscape which requires dedication, expertise and a wide array of skills that cannot be done by one single person. In most cases, a mixture of in-house and partnerships with agencies, consultants or production houses end up being the lions share of how brands are resourcing this problem today.</p>
<p>We&#8217;d love to get your thoughts and philosophies on social media and how you are currently resourcing that.</p>
<p><em>Digital Surgeons offers social media services at every level&#8230; from consulting and building in-house teams and strategies to full content creation and community management services. <a title="digital social media agency" href="http://www.digitalsurgeons.com/blog/barneys-2012-awards/?utm_source=blog&amp;utm_medium=blog&amp;utm_term=socialmediainhouse&amp;utm_content=socialmediainhouse&amp;utm_campaign=socialmediainhouse" target="_blank">See us in action</a> or <a href="http://www.digitalsurgeons.com/contact/?utm_source=blog&amp;utm_medium=blog&amp;utm_term=socialmediainhouse&amp;utm_content=socialmediainhouse&amp;utm_campaign=socialmediainhouse" target="_blank">give us a shout</a>. Either way thanks for stopping by.<br />
</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalsurgeons.com/blog/the-great-social-media-debate-in-house-or-agency/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Touchless Interfaces: A Digital Reality</title>
		<link>http://www.digitalsurgeons.com/blog/the-lab/touchless-interfaces-a-digital-reality/</link>
		<comments>http://www.digitalsurgeons.com/blog/the-lab/touchless-interfaces-a-digital-reality/#comments</comments>
		<pubDate>Sat, 22 Dec 2012 03:23:15 +0000</pubDate>
		<dc:creator>aaron</dc:creator>
				<category><![CDATA[The Lab]]></category>

		<guid isPermaLink="false">http://www.digitalsurgeons.com/?p=6506</guid>
		<description><![CDATA[First: Some Science Information is an interesting thing. It is the glue that holds our reality together. Right now your [...]]]></description>
				<content:encoded><![CDATA[<h3>First: Some Science</h3>
<p>Information is an interesting thing. It is the glue that holds our reality together. Right now your mind is interpreting the flow of information that my mind has manifested as this article. The brain to brain link that is active was likely unrealized until just now. That&#8217;s reality for ya. Ignore the man behind the curtain.</p>
<p><span id="more-6506"></span></p>
<p>In the book <a title="The Grand Design" href="http://www.amazon.com/Grand-Design-Stephen-Hawking/dp/055338466X/ref=sr_1_1?s=books&amp;ie=UTF8&amp;qid=1356044600&amp;sr=1-1&amp;keywords=the+grand+design" target="_blank">The Grand Design</a>, Stephen Hawking and Leonard Mlodinow lay out the concept of Model-dependent realism. It defines the way in which the human brain receives, interprets, and processes sensory information. &#8220;Our perception-and hence the observation upon which our theories are based &#8211; is not direct, but rather is shaped by a kind of lens, the interpretive structure of our human brains.&#8221; The purpose of model-dependent realism is to overcome needing to know the meaning of our existence. We store experiences in memory and compare what we observe with what we know. Our interpretation is added to our model and our life goes on.</p>
<h3>Now: Marry that Science to Advertising</h3>
<p>Advertising&#8217;s aim is to integrate an alternate reality into the memory of the observer. It&#8217;s the craft of designing a realistic false reality to trigger an intended behavior in the user down the road. The internet has become a valuable tool for marketers to get their message in front of users, but the message is deformed by the user knowing they are looking at a screen.</p>
<p>The screen may not be the largest display medium available, but it’s analytical capabilities are vast. We can capture time on page, how often links are clicked, and where people came from. A successful campaign is largely based on how many users makes their way through the funnel, reach the end, and click on the call to action, or like the page. Metrics can establish the success or failure of a given campaign given the route a user takes.</p>
<h3>But how do you measure the success of out-of-home advertising?</h3>
<p>In the lab we work on side projects that we think could impact the future of advertising and push the bounds of what it means to work in this industry. We get the opportunity to think outside the box and work toward a more technologically rich future.</p>
<p>We wanted to build a silent interface between information and a participant&#8217;s observation of it. That means no mouse and keyboard, voice commands, or any direct knowledge by the user that a computer is involved. Its purpose should be to process body language, user focus, hesitation, and frustration in order to analyze the participant&#8217;s engagement with the information presented.</p>
<h3>Now we create.</h3>
<p>So that&#8217;s what we did. Using the Kinect we created a system for tracking an area that is cloned into a virtual replica of itself. We capture and analyse the skeletal position of the users within the area and detect activities that match our predefined list of potential interactions. By evaluating the surface topography around the skeletons, we determine several things such as body type, hips direction, shoulder direction, where the head is looking, and where the user is pointing. This goes into a formula that determines the level of participation and focus given by the user.</p>
<p>Our system also monitors a user&#8217;s joint angles over time in order to graph their body language over the course of their interaction. We can then tell you about the trends that have developed over the course of the campaign.</p>
<p>With this system we have created a new type of ad platform for Out of Home advertising. A previously thought “traditional” advertising unit is now taking on a digital identity with clearly defined metrics.</p>
<p><object width="560" height="315" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/zfaKeNBc1qk?version=3&amp;hl=en_US&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed width="560" height="315" type="application/x-shockwave-flash" src="http://www.youtube.com/v/zfaKeNBc1qk?version=3&amp;hl=en_US&amp;rel=0" allowFullScreen="true" allowscriptaccess="always" allowfullscreen="true" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalsurgeons.com/blog/the-lab/touchless-interfaces-a-digital-reality/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2013 Digital Marketing Predictions</title>
		<link>http://www.digitalsurgeons.com/blog/news/2013-digital-marketing-predictions/</link>
		<comments>http://www.digitalsurgeons.com/blog/news/2013-digital-marketing-predictions/#comments</comments>
		<pubDate>Fri, 21 Dec 2012 22:00:39 +0000</pubDate>
		<dc:creator>marissa</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Infographics]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Strategy]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.digitalsurgeons.com/?p=6580</guid>
		<description><![CDATA[Marketing: Video will get bigger as a medium People aren’t getting any less lazy in 2013. Why read a blog [...]]]></description>
				<content:encoded><![CDATA[<h2></h2>
<h2>Marketing:</h2>
<h3 style="font-size: 16px;">Video will get bigger as a medium</h3>
<p>People aren’t getting any less lazy in 2013. Why read a blog post when the same information can be conveyed to you in a 30 second video? With streaming quality increasing and camera prices decreasing, in 2013 it will be easier than ever to produce and then distribute content.</p>
<p><span id="more-6580"></span></p>
<h3 style="font-size: 16px;">Inbound marketing will grow within brands and businesses</h3>
<p>The role of the content strategist will rise in conjunction. Strategic content will drive inbound marketing efforts and increase the need for full-time employees to curate that content.</p>
<h3 style="font-size: 16px;">International will be the new domestic, for many</h3>
<p>The internet has made our very large world navigable from the comfort of our couches. The same will be said about ecommerce in 2013. With exciting young companies such as <a href="http://www.fiftyone.com">FiftyOne</a> making American brands easily attainable all over the world, the term “foreign markets” might begin to seem a bit dated in 2013.</p>
<p>The idea of thinking global and acting local will be turned on its side with businesses thinking local and acting global.</p>
<h3 style="font-size: 16px;">Experiential and brand experiences will be the new website</h3>
<p>The standard HTML homepage will increasingly be blown out of the water by interactive elements and experiences that surpass digital.</p>
<h3 style="font-size: 16px;">Mobile will finally start to be a real concern for marketers</h3>
<p>This will force us to be better at delivering better mobile experiences (responsive, adaptive, context driven): This 2013 prediction is nearing the ranking of “Broken Record” in the marketing world for how often it is discussed. The conversation keeps occuring because of the astronomical amount of data pointing towards mobile dominance in 2013. Morgan Stanley is predicting that there will be more mobile devices (tablets and phones) accessing the internet than traditional computers (laptops and desktops) in 2013 for the first time EVER.</p>
<h3 style="font-size: 16px;">The term big data will be abused as agencies promise magic insights based on analytics</h3>
<p>Data regarding demographics and reach will be the driving factor behind marketing decisions in every area. More media outlets will hire more statisticians, developers and computer scientists following the wild success of Nate Silver’s election coverage for the NY Times. Punditry will suffer at the hands of big, meaningful data.</p>
<h3 style="font-size: 16px;">Brands as platforms will be a big aspect of many brands content strategy</h3>
<p>The past few years have a seen a much bigger push for both content and innovation from brands. Brands that have pushed the envelope have consistently won both critical acclaim and increases in revenue. 2013 will show an increase in brands pushing the envelope in terms of product creation and new business units in an attempt to excite consumers.</p>
<h3 style="font-size: 16px;">Brands will start really listening to their customers</h3>
<p>And, thus, a new form of advertising will be born where the brands act as the facilitator for what the customers collectively agree they want. The importance of data and brand advocates as well as the amount of tools available will aid this trend.</p>
<h2>Social Media</h2>
<h3 style="font-size: 16px;">We will see more social media gurus</h3>
<p>As social media grows in popularity, so too grows the number of 20 somethings who claim to be experts. What exactly qualifies one as an expert, or a “guru”, is up for interpretation so in 2013 you will see an even larger amount of people “interpreting” themselves that way.</p>
<h3 style="font-size: 16px;">Social media agencies of record will grow</h3>
<p>The rationale will be a bigger need for social CRM support and influencer programs. As the importance of social media grows, the need for experts in the field will become equally important. No gurus here.</p>
<h3 style="font-size: 16px;">Pinterest will only get bigger</h3>
<p>Clearly written in the pinterest mission statement, it says: “There is always more room for cute cupcake recipes and shirtless Jake Gyllenhal pictures”. We kid, it doesn’t say that (but it should). For all of the potential knocks against Pinterest it is still a beautifully designed platform and concept that has miles to go before it sleeps (see: dies like friendster and myspace). Brands are currently struggling to use it for marketing purposes already without an available public API. Once a public API is released to developers in the coming year, the possibilities are endless.</p>
<h3 style="font-size: 16px;">Twitter will keep stepping on toes</h3>
<p>Twitter burned some bridges this year with moves like <span style="text-decoration: underline;"><a href="http://techcrunch.com/2012/11/28/peoplebrowsr-vs-twitter/">ending firehose access</a></span> and <span style="text-decoration: underline;"><a href="http://news.cnet.com/8301-1023_3-57558128-93/instagram-photos-disappear-from-twitter-feeds/">cutting itself from Instagram</a></span>.</p>
<h3 style="font-size: 16px;">Facebook will be a-ok</h3>
<p>It has been quite a tumultuous year for Facebook, but we’re still behind them 100%. Their innovation related to ad units as well as the addition of Gifts this year has shown the companies continued focus on sustainable, business minded innovation. It’s tactical moves such as these that will allow them to return to a share price over $30.</p>
<h3 style="font-size: 16px;">Brands social interactions will have to get more personal and creative in 2013</h3>
<p>This is due to the lack of polarizing global events (Olympics, Elections, etc.) News jacking will need to be a bit more inventive as the topics won&#8217;t be as predefined or dominating.</p>
<h3 style="font-size: 16px;">Retail outlets that stock products and brands voted on by its customers via social media</h3>
<p>Give the people what they want! Social media gives everyone a voice and in 2013 we will see retail outlets begin listening to that voice a lot more closely while stocking their shelves.</p>
<h2>Design:</h2>
<h3 style="font-size: 16px;">More Pinterest copycats</h3>
<p>We’re starting to see it already, the term “Pinterest-style” has infiltrated marketing vocabulary when discussing grid-like visual design. While we love Pinterest, we cannot promote additional copycat designs for EVERY situation. In addition, sites like <span style="text-decoration: underline;"><a href="http://www.thefancy.com">The Fancy</a></span> and <span style="text-decoration: underline;"><a href="http://wanelo.com">Wanelo</a></span> will continue to pop up and attempt to pull revenue away from Pinterest.</p>
<h3 style="font-size: 16px;">Infographics will have to step it up to maintain relevance</h3>
<p>The one page “factsheets” are a dime a dozen and won’t cut it anymore. Everyone and their mothers are creating infographics now. It’s hard to imagine a piece of information that hasn’t been visualized in some sort of goofy cartoon format. Audiences are now almost as blind to infographics as they are to the formalized studies that the data originated from. Data must be visualized in real time, interactive formats in 2013. With information changing so quickly, static content is no longer appropriate to create.</p>
<h3 style="font-size: 16px;">Web design will shift to a more app-like style</h3>
<p>And will, in turn, accommodate for responsive layouts.</p>
<h3 style="font-size: 16px;">Vertical and collapsible navigation will become more prominent.</h3>
<p>With a larger focus on the end user in modern design, choices need to be avaliable. Maybe someone doesn’t want to be able to navigate. Maybe they want their website to look uncluttered. Features such as collapsible navigation will become common place as the end users are given the tools to alter the design experience to their preference.</p>
<h3 style="font-size: 16px;">Minimal color blocked design will be the new trend</h3>
<p>Microsoft will (wrongly) get the credit. Color blocking has been a trend within digital and outside this season. We’ve seen color blocking gain momentum in fashion as well. Color blocking is great for breaking up content, categorizing information and creating more visually appealing design.</p>
<h2>Technology:</h2>
<h3 style="font-size: 16px;">Mobile Payment, not just for Starbucks anymore</h3>
<p>Even banks have hopped on this trend with new tools such as Chase Quick Pay and V.me from Visa. Not only will the exchange of money between friends become digital, but tools like Passbook will allows users to pay through their phone.</p>
<h3 style="font-size: 16px;">More home automation and sensor/app driven combinations</h3>
<p>The Nest is just one of many tools that will arrive in 2013 and force you to ask “How did I ever live without this?” From security measures to heating your place, your home will be just that much nicer when you walk through the door.</p>
<h3 style="font-size: 16px;">The year of Real-Time</h3>
<p>Bidding, consumer engagement, customer service. For better or worse, the internet has allowed for instant gratification and that is what consumers now expect. Digital technology will have to operate in real time or risk the backlash of the angry internet consumer.</p>
<h3 style="font-size: 16px;">One-click checkout will be the norm</h3>
<p>Amazon introduced it, the digital world adopted it. One-click checkout has become a minimum expectation for not only Amazon, but also Apple, Google and many other online retailers. More profit for retailers, more goodies shipped to your door!</p>
<h3 style="font-size: 16px;">The rise of Linux</h3>
<p>The Linux desktop (via Ubuntu) will finally start getting some recognition due to a perfect storm of Valve throwing it’s full weight behind it (in order to release it’s own Linux powered steam console), canonical working with hardware vendors and game developers, and the arrival of windows 8 driving some users away. It won’t become a major player, but all of a sudden people who wouldn’t have known about Linux will hear about it this year. The niche PC gaming enthusiasts may begin defecting. It will also continue to gain traction in foreign governments and education, but the U.S. won’t look away from its Android and iOS devices long enough to notice. Mostly, as mobile devices become more popular and gaming on Linux becomes more capable, this upcoming year will set the stage for revolution in the PC gaming that could revitalize the industry while simultaneously making Linux a big player for the consumer.</p>
<h3 style="font-size: 16px;">Saas (Software as a service) and Pass (platform as a service) will grow among business</h3>
<p>The ease of delivery and constant support will cause “____ as a service” offerings to continue to grow in 2013. Cloud based software is projected to double by 2015. Businesses have so many different options to choose from as well, with established companies in the space such as Oracle and Salesforce being outshined by a myriad of innovative startups.</p>
<h3 style="font-size: 16px;">The 10-foot user interface setup will start to become more commonplace as TV’s get smarter</h3>
<p>More than this, the multi-device experiences will become more common and it will be standard for the mobile device will supplement the content on your television. Companies will see this like they saw the world wide web &amp; try to abuse it for marketing.</p>
<h2>Misc:</h2>
<h3 style="font-size: 16px;">Second screen experience</h3>
<p>chatter will continue but the numbers still won’t catch up fast enough. It’s going to take a universally accepted platform for this phenomenon to become common place; hashtags on twitter just won’t cut it</p>
<h3 style="font-size: 16px;">Startups will be fewer and farther between</h3>
<p>We predict that investors will wise up and realize that so many of them have no business plan or plans for profitability. Current startups that offer free services will look to monetize.</p>
<h3 style="font-size: 16px;">Television manufacturers create a TV with a built-in motion sensor</h3>
<p>After the success of the Microsoft Kinect and Smart TVs in the past few years, it makes sense for television manufacturers to cut out the middle-man (Microsoft’s Xbox 360) and to begin offering motion sensing capabilities directly</p>
<h2>Up for Debate:</h2>
<p>You’ve heard our two cents (at least), but what do you forsee for 2013? Our office couldn’t decide on these major topics, so let’s hear it.</p>
<h3 style="font-size: 16px;">Instagram</h3>
<p>The social network had a fantastic 2012 with the $1 billion acquisition by Facebook and a user base surpassing 100 million. However, a recent Terms of Service chance (effective Jan. 16) gives considerable control over photos to Instagram and has the newly acquired 100 million ready to flock. Will Instagram overcome the negative press and suspicious users or will it fall into the social media graveyard?</p>
<h3 style="font-size: 16px;">Apple</h3>
<p>As rumors swirl of the next iPhone and the long-awaited Apple TV, our staff continues to remain undecided on Apple’s future. Some think the enormous stock value and 2013 iDevices will keep the loyal fanboys and girls, while others feel Samsung has made significant advances and Apple’s lack of innovation this year will cause the company to suffer. What does 2013 have in store for Apple?</p>
<h3 style="font-size: 16px;">QR Codes</h3>
<p>While we’ve never been fans of the QR code trend, we have seen them everywhere this year: in subway tunnels, on street signs, in magazines. We tend to prefer more enriching experiences (augmented reality anyone?) but meanwhile QR codes sneak their way in as a touchpoint for many campaigns. Will QR codes become more popular or fall short?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.digitalsurgeons.com/blog/news/2013-digital-marketing-predictions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
