<?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>VR Interactive</title>
	<atom:link href="http://www.vrinteractive.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vrinteractive.net</link>
	<description>Website Development and Marketing in Jackson Hole, Wyoming</description>
	<lastBuildDate>Fri, 18 May 2012 20:42:11 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>What you need to know about the Viewport Meta Tag</title>
		<link>http://www.vrinteractive.net/2012/05/what-you-need-to-know-about-the-viewport-meta-tag/</link>
		<comments>http://www.vrinteractive.net/2012/05/what-you-need-to-know-about-the-viewport-meta-tag/#comments</comments>
		<pubDate>Fri, 18 May 2012 20:37:54 +0000</pubDate>
		<dc:creator>jay</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Industry News]]></category>
		<category><![CDATA[Responsive Design]]></category>
		<category><![CDATA[Tips + Tricks]]></category>
		<category><![CDATA[meta]]></category>
		<category><![CDATA[mobile design]]></category>
		<category><![CDATA[responsive design]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[viewport]]></category>
		<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://www.vrinteractive.net/?p=3387</guid>
		<description><![CDATA[Chances are, if you&#8217;re reading this, you are a web developer getting into responsive design. Here is what I&#8217;ve found out about after a lot of trial and error. It was created by apple to allow developers to specify the default size of the page for mobile devices. In researching the viewport meta tag I&#8217;ve [...]]]></description>
			<content:encoded><![CDATA[Chances are, if you&#8217;re reading this, you are a web developer getting into responsive design.  Here is what I&#8217;ve found out about <pre class="brush: xml; light: true; title: code; notranslate">&lt;meta name=&quot;viewport&quot;&gt;</pre> after a lot of trial and error.  It was created by apple to allow developers to specify the default size of the page for mobile devices.

In researching the viewport meta tag I&#8217;ve found people use different parameters that change how the webpage acts on mobile browsers.

The &#8216;barebones&#8217; version of the viewport meta tag is: <pre class="brush: xml; light: true; title: code; notranslate">&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width&quot;&gt;</pre>
Other information can be passed via the content parameter like initial scale, maximum-scale, minimum-scale and scalable.  In theory they should work as you&#8217;d imagine but on different mobile browsers there are varying results.  So here I am going to break down different scenarios, with different viewport meta tag combinations to give you as much information as possible.
<br/><br/>
<h3>meta name=&#8221;viewport&#8221; content=&#8221;width=device-width&#8221;</h3>

It is NOT a good idea to include this meta tag with any website built from here on out.  Only if you have a mobile version via media queries should you include it.  If you include the viewport meta tag for a site that views as the desktop version of the site on a mobile screen, it&#8217;s best to just leave it because the viewport meta tag will just mess everything up.  Here&#8217;s an example:

<img src="http://www.vrinteractive.net/wp-content/uploads/2012/05/viewport1.png" alt="" title="viewport1" width="530" height="480" class="aligncenter size-full wp-image-3399" />

I think having your site look like the desktop version on a phone is ok&#8230; A mobile user is used to it and can zoom in where they need to read content or view pictures.  I think the KISS principle rules here, less is more and all those other sayings apply to this situation.

<br/><br/>
<h3>content=&#8221;initial-scale=1, maximum-scale=1&#8243;</h3>
So, in theory, this:

<pre class="brush: xml; light: true; title: code; notranslate">&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1, maximum-scale=1&quot;&gt;</pre>

Should give you everything you need to display your responsive website on all devices properly.  But there are some quirky issues that you should know about and it seems you have to choose for yourself how to configure you viewport meta tag because I haven&#8217;t found any perfect solution yet.  Most of the issues come from turning your phone or tablet from portrait to landscape. And some developers won&#8217;t care about the subtle issues that occur, but I&#8217;m here to make you at least aware of them.

Here are some examples:<br/>

Here is a properly coded responsive website with the barebones viewport meta tag like this:
<pre class="brush: xml; light: true; title: code; notranslate">&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width&quot;&gt;</pre>

<img src="http://www.vrinteractive.net/wp-content/uploads/2012/05/viewport2.png" alt="" title="viewport2" width="530" height="378" class="aligncenter size-full wp-image-3401" />

This works great on droid devices.  And it still allows mobile users to zoom as they like, which I&#8217;m a fan of because that&#8217;s what people are used to.  But, on apple iPhones and iPads there is an issue.  The site doesn&#8217;t scale properly when rotating from portrait mode to landscape mode.  The browser zooms in on the site to have it fill the width in landscape mode.  So all the text is bigger, some images become blurry and spacing isn&#8217;t right.

Some people may stop here and say, ehhhhhh that&#8217;s close enough.  But if you wanna dig deeper like I did, lets try something else.

<pre class="brush: xml; light: true; title: code; notranslate">&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1&quot;&gt;</pre>

<img src="http://www.vrinteractive.net/wp-content/uploads/2012/05/viewport31.png" alt="" title="viewport3" width="530" height="378" class="aligncenter size-full wp-image-3408" />

This is kind of 2 steps forward, one step back.  On all devices in portrait view, the site looks great.  On droid devices, when rotating to landscape, the site looks great.  But on apple devices the viewport messes up when switching from portrait to landscape as seen here (wait, apple released this meta tag and all the issues are on apple products?  wtf?):

If you load the site in landscape on apple devices, the site will look fine.  If you then rotate it to portrait and back to landscape, the viewport will get messed.  Let&#8217;s take a look at another option:<br/>

<pre class="brush: xml; light: true; title: code; notranslate">&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1, maximum-scale=1&quot;&gt;</pre>

<img src="http://www.vrinteractive.net/wp-content/uploads/2012/05/viewport4.png" alt="" title="viewport4" width="530" height="378" class="aligncenter size-full wp-image-3403" />

Now, we&#8217;re getting somewhere.  Immediately, there is one downfall in my eyes.  By adding &#8216;maximum-scale=1&#8242; you loose the ability to zoom on only apple devices.  Layout wise, with this viewport setup, we&#8217;re in really good shape on all devices.  EXCEPT on iPhones.  Now I&#8217;m not sure if this is intentional because of the loss of the zoom functionality but in landscape view on the iPhone, the text is waaay zoomed in.  Seen here:

<br/><br/>
<h3>Conclusion</h3>
There you have it.  Feel free to comment if you have anything to offer or any other veiwport configurations that offer anything different.  In my eyes, the last configuration is the best:

<pre class="brush: xml; light: true; title: code; notranslate">&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1, maximum-scale=1&quot;&gt;</pre>

And I have to believe that apple did the text zoom feature on purpose in landscape mode because the zoom feature is lost.  Hit us up if you&#8217;ve found anything better!]]></content:encoded>
			<wfw:commentRss>http://www.vrinteractive.net/2012/05/what-you-need-to-know-about-the-viewport-meta-tag/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Part 1: Introduction to Responsive Web Design</title>
		<link>http://www.vrinteractive.net/2012/04/responsive-web-design-intro/</link>
		<comments>http://www.vrinteractive.net/2012/04/responsive-web-design-intro/#comments</comments>
		<pubDate>Fri, 27 Apr 2012 21:24:13 +0000</pubDate>
		<dc:creator>Galen Strasen</dc:creator>
				<category><![CDATA[Responsive Design]]></category>

		<guid isPermaLink="false">http://www.vrinteractive.net/?p=3278</guid>
		<description><![CDATA[Anyone with the slightest idea of the world around them should not be surprised to hear that there is a new, potentially groundbreaking development in the web world. Every facet of the World Wide Web is in a constant state of evolution, from the algorithms used by search engines to the way people share content. [...]]]></description>
			<content:encoded><![CDATA[<p>Anyone with the slightest idea of the world around them should not be surprised to hear that there is a new, potentially groundbreaking development in the web world. Every facet of the World Wide Web is in a constant state of evolution, from the algorithms used by search engines to the way people share content.</p>
<span id="more-3278"></span>
<img alt="" src="http://speckycdn.sdm.netdna-cdn.com/wp-content/uploads/2012/05/resp_101_01.jpg" title="responsive design" class="alignnone" width="646" height="275" style="margin: 10px 0;"/>

<h3>What&#8217;s Changed Now?</h3>
<p>It takes one look at a shiny new iPad, a hyper-intelligent cellphone or a massive LCD monitor to recognize that the way individuals access and subsequently view web content has evolved. Formerly, any responsible web developer, concerned with how their fixed width website might render on a mobile device, was forced to build and redesign a second site that would comfortably display content in a phone’s browser window. But now with the variety of Wi-Fi capable devices on the market, what is a responsible web developer to do?</p>

<h3>Two Words: Responsive Design</h3>
<p><strong>Responsive design</strong> is not some new-fangled technology, but rather, a series of techniques and processes that when followed, enable the layout of a webpage to adjust and adapt according to the size of the screen it is viewed on.</p>
<ol>
	<li>The site structure must consist of a fluid or flexible grid foundation.</li>
	<li>Images on the site (whether background or hard-coded) must be fluid as well.</li>
	<li>The layout of the web pages must adapt according to the screen resolution using media queries.</li>
</ol>
<img alt="" src="http://johnpolacek.github.com/scrolldeck.js/decks/responsive/img/devices.png" title="Devices" class="alignnone" width="600" />
<h3>Responsive Design in Action</h3>
<p>Want to see <strong>responsive design</strong> in action? Slowly reduce the size of your browser window and watch as this page reconfigures as the window decreases in width.</p>
<h3>A Step in the Right Direction</h3>
<p>Over the past few months both VR’s design and development teams have been consumed with the notion of responsive design. Although us designers don’t always seem to be speaking the same language as the developers (could someone please define &#8220;cookie&#8221;!?), we seem to be in agreement: Responsive design represents a step towards consistency and continuity in the world of web.</p>

<p>Over the next few weeks VR plans to publish a variety of articles that take a closer look at many of the issues, techniques and even controversies surrounding responsive design. So stay tuned!</p>
<h3>Don&#8217;t Miss These Articles:</h3>
<p><a href="http://www.alistapart.com/articles/responsive-web-design" target="_blank">Responsive Web Design</a>, Ethan Marcotte &mdash; May 25th, 2010<br/>

<a href="http://coding.smashingmagazine.com/2011/01/12/guidelines-for-responsive-web-design/" target="_blank">Responsive Web Design: What it is and How to Use it</a>, Kayla Knight &mdash; January 12th, 2011<br/>

<a href="http://sixrevisions.com/web_design/understanding-the-elements-of-responsive-web-design/" target="_blank">Understanding the Elements of Responsive Web Design</a>, Jason Gross &mdash; March 14th, 2011<br/>

<a href="http://thinkvitamin.com/design/beginners-guide-to-responsive-web-design/" target="_blank">Beginner&#8217;s Guide to Responsive Web Design</a>, Nick Pettit &mdash; August 9th, 2011<br/>

<a href="http://webdesign.tutsplus.com/articles/design-theory/designing-for-a-responsive-web/" target="_blank">Designing for a Responsive Web</a>, Max Luzuriaga &mdash; August 9th, 2011<br/>

<a href="http://www.webdesignerdepot.com/2011/09/the-ultimate-responsive-web-design-roundup/" target="_blank">The Ultimate Responsive Web Design Roundup</a>, Cameron Chapman &mdash; September 1st, 2011</p>]]></content:encoded>
			<wfw:commentRss>http://www.vrinteractive.net/2012/04/responsive-web-design-intro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>13 Ways to Secure Your WordPress Website</title>
		<link>http://www.vrinteractive.net/2012/04/13-ways-to-secure-your-wordpress-website/</link>
		<comments>http://www.vrinteractive.net/2012/04/13-ways-to-secure-your-wordpress-website/#comments</comments>
		<pubDate>Fri, 20 Apr 2012 19:51:40 +0000</pubDate>
		<dc:creator>Charlie Jonas</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Tips + Tricks]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[hacking WordPress]]></category>
		<category><![CDATA[malicious code]]></category>
		<category><![CDATA[Secure WordPress site]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[WordPress blog security]]></category>
		<category><![CDATA[WordPress plug in]]></category>
		<category><![CDATA[WordPress Security]]></category>

		<guid isPermaLink="false">http://www.vrinteractive.net/?p=3242</guid>
		<description><![CDATA[WordPress is a wonderful open-source publishing software that can be used to build beautiful websites or blogs. However, you have to be prepared and have the know-how to keep it secure or it can pose a risk for your website or even the server it&#8217;s hosted on. Check out these thirteen tips (from a programmer&#8217;s [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress is a wonderful open-source publishing software that can be used to build beautiful websites or blogs. However, you have to be prepared and have the know-how to keep it secure or it can pose a risk for your website or even the server it&#8217;s hosted on. Check out these thirteen tips (from a programmer&#8217;s perspective) to help you <strong>secure you WordPress website</strong>.</p>

<span id="more-3242"></span>

<h4>1: Check for now vulnerabilities on any plug-ins and themes:</h4>
<p>Using a popular frameworks like WordPress is a double edge sword. On one side, theses frameworks provide perfect targets for hackers who want to deliver widespread destruction, and on the other hand there is a massive community of developers and security experts constantly working to close these holes. If there is a well-known security issue with a plug-in or theme, someone has probably documented it in a blog or a forum. Finding it can be as simple as typing “_plugin_name_ Security” into Google.</p>  

<h4>2. Move wp-config to the directory above the root</h4>
<p>This will help prevent hackers from making changes to your WordPress configuration.</p>

<h4>3. Remove any unnecessary plug-ins</h4>
<p>Each <a href="http://wordpress.org/extend/plugins/" target="_blank">plugin</a> is a potential hole for hackers to exploit. Keep only the most necessary plugins and immediately delete ones that are no longer in use.</p> 

<h4>5. Keep all components up-to-date</h4>
<p>This is obvious. Take advantage of the hard work put into improving WordPress.</p>

<h4>6. Never hack the wp-core</h4>
<p>Two very good reasons for this:</p>
<ol>
<li>You’ll be more reluctant to push new updates, knowing any changes you’ve made will be overwritten.</li>
<li>Your code is likely be less secure than the peer-reviewed WordPress source.</li>
</ol>

<h4>7. Add a server-side authentication to wp-admin:</h4>
<p>A few ways this can be implemented:</p>
<ul>
<li>Whitelist of IP address that are allowed to access wp-admin (<a href="http://support.microsoft.com/kb/324066" target="_blank">IIS</a> | <a href="http://httpd.apache.org/docs/2.2/howto/access.html" target="_blank">Apache</a>)</li>
<li><a href="http://en.wikipedia.org/wiki/Basic_access_authenticationhttp://" target="_blank">BasicAuth</a> username/password login</li>
<li><a href="http://codex.wordpress.org/Administration_Over_SSL" target="_blank">HTTPS SSL</a></li>
</ul>
 

<h4>8. Change the URL of wp-admin</h4>

<p>One of the biggest threats to WordPress sites are brute-force attempts on password cracking. Even a strong password may fail if the hacker is determined enough. One way to limit these attacks is to change the &#8220;/wp-admin&#8221; URL to something less obvious.</p>

<h4>10. Restrict File Permissions</h4>

<p>Your server should only have write access inside the wp-content directory. WordPress officially recommends to give write access to this entire folder, but it is more secure to give write access to only the uploads folder and any folder required by a specific plugin (ex. a gallery plugin may require write access to a galleries folder).</p>

<h4>11. Grep you file structure for suspicious code</h4>

<p>Using a plug-in such as <a href="http://wordpress.org/extend/plugins/ultimate-security-checker/" target="_blank">Ultimate Security Checker</a> you can easily scan your system for potentially malicious code. This tool will return a lot of ‘false negatives’ so it is importaint to carefully examine each line. DO NOT just start deleting every line it returns. Look out for calls to “gzinflate()”, “base64_decode()”, eval(), pre_replace(), and strrev(). These functions are often chained to hide and evaluate malicious code.</p>
<div id="attachment_3257" class="wp-caption alignleft" style="width: 634px"><a href="http://www.vrinteractive.net/wp-content/uploads/2012/02/image0021.jpg"><img src="http://www.vrinteractive.net/wp-content/uploads/2012/02/image0021.jpg" alt="Example of malicious code found by Ultimate Security Checker." title="Example of malicious code found by Ultimate Security Checker." width="624" height="111" class="size-full wp-image-3257" /></a><p class="wp-caption-text">Example of malicious code found by Ultimate Security Checker.  This line uses preg_replace() with the ‘eval’ flag to execute malicious code.  The code is compressed and base64 encoded to try and conceal its functionality.  </p></div>

<h4>12. Change the SQL table prefix</h4>

<p>Changing the SQL table prefix can keep your site safe for WordPress specific SQL Injection attacks.</p>
<div id="attachment_3261" class="wp-caption alignleft" style="width: 520px"><a href="http://www.vrinteractive.net/wp-content/uploads/2012/02/wp.png"><img src="http://www.vrinteractive.net/wp-content/uploads/2012/02/wp.png" alt="SQL Injection" title="SQL Injection" width="510" height="143" class="size-full wp-image-3261" /></a><p class="wp-caption-text">Example of SQL Injection that can be used to change a user’s password so a hacker can retrieve it.</p></div>

<h4>13. Update and Secure your PHP configuration</h4>

<p>Not all PHP builds are created equal. Some php.ini configurations can provide hackers with additional fire power. Use a tool like <a href="http://phpsec.org/projects/phpsecinfo/" target="_blank">PHPSecInfo</a> to identify and remove any issues.</p>
<div id="attachment_3258" class="wp-caption alignleft" style="width: 635px"><a href="http://www.vrinteractive.net/wp-content/uploads/2012/02/image004.jpg"><img src="http://www.vrinteractive.net/wp-content/uploads/2012/02/image004.jpg" alt="PHPSecInfo" title="PHPSecInfo" width="625" height="421" class="size-full wp-image-3258" /></a><p class="wp-caption-text">Use a tool like PHPSecInfo to identify and remove any issues.</p></div>

]]></content:encoded>
			<wfw:commentRss>http://www.vrinteractive.net/2012/04/13-ways-to-secure-your-wordpress-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VR Interactive Team Building Day</title>
		<link>http://www.vrinteractive.net/2012/04/vr-interactive-team-building-day/</link>
		<comments>http://www.vrinteractive.net/2012/04/vr-interactive-team-building-day/#comments</comments>
		<pubDate>Thu, 05 Apr 2012 23:36:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[VR News]]></category>
		<category><![CDATA[Jackson Hole]]></category>
		<category><![CDATA[Jackson Hole Snowmobile Tours]]></category>
		<category><![CDATA[nerds gone wild]]></category>
		<category><![CDATA[nerds in the backcountry]]></category>
		<category><![CDATA[nerds on sleds]]></category>
		<category><![CDATA[Polaris]]></category>
		<category><![CDATA[slednecks]]></category>
		<category><![CDATA[snowmobiles]]></category>
		<category><![CDATA[Team Building]]></category>
		<category><![CDATA[VR Interactive team]]></category>
		<category><![CDATA[web development firm]]></category>
		<category><![CDATA[WY]]></category>

		<guid isPermaLink="false">http://www.vrinteractive.net/?p=3128</guid>
		<description><![CDATA[VR Interactive Team Become Slednecks to Build Comaraderie Urban dictionary defines a sledneck as &#8220;a person from a mountain state, no flatlanders, who tears it up on a snowmobile.&#8221; And, tear it up we did. Last week, the VR Interactive Team (sans co-founder, Brian, who had to have shoulder surgery ) headed out into the [...]]]></description>
			<content:encoded><![CDATA[<h3>VR Interactive Team Become Slednecks to Build Comaraderie</h3>
<p>Urban dictionary defines a sledneck as &#8220;<em>a person from a mountain state, no flatlanders, who tears it up on a snowmobile</em>.&#8221; And, tear it up we did. Last week, the <a href="http://www.vrinteractive.net/2011/12/vr-interactive-team/" target="_blank">VR Interactive Team</a> (sans co-founder, Brian, who had to have shoulder surgery <img src='http://www.vrinteractive.net/wp-includes/images/smilies/icon_sad.gif' alt=':-(' class='wp-smiley' /> ) headed out into the Wyoming backcountry south of Jackson for a day of team building on snowmobiles. Even those of us who had never been on a &#8220;sled,&#8221; quickly were grinning ear to ear and getting sore thumbs from laying on the throttle (even though, we were told to keep our Polaris 550&#8242;s and 600&#8242;s under 100mph by our guide, Mike McCloud). Yep, nerds turned into slednecks pretty quickly.</p>
<span id="more-3128"></span>
<h4>Using Transceivers to Team Build</h4>
<p>We stopped about half way in to our destination, Granite Hot Springs, in a snowy meadow to refresh our transceiver, or <strong><a href="http://www.cleansnipe.com/SearchResults.aspx?q=avalanche-beacon&amp;t=All" target="_blank">avalanche beacon</a></strong>, skills. Project Manager, Chris Hanson, and VR co-founder, Jed Frumkin, gave us a welcomed refresher on how to properly use our beacons. We then ran through some buried beacon finding drills in small teams. Our guide, Mike, gave us some additional tips that he got at a recent avalanche course he took for his other job as a <a href="http://www.snowking.com/default.aspx" target="_blank">Snow King</a> ski patroller.</p>

<p>These tips definitely came in handy in our final skills test in the afternoon. Jed asked Mike to go bury a beacon in a meadow while we were gaping in wonder at the Granite Creek waterfall and driving our sleds up steep hills. Next, we split up into teams of two by last name and were told to find the buried beacon, which had a substantial amount of money attached to it! We used some of the skills we had learned earlier to quickly communicate with our team member to make a search plan and then execute it (without crashing into each other).</p>

<p>The teams took different directions in searching the large meadow atop our &#8216;biles, transceivers in hand. But, we all came together as a team once the Frumkin-Hanson team pinpointed the area where the beacon was buried. Digging furiously alongside other team members, Chuck Trout recovered the beacon and the cash prize for himself and his partner Web Designer, Galen Strasen. They promised to buy drinks later and donate the rest of the money to charity!</p>

<h4>Some Team Achievements:</h4>
<div id="attachment_3141" class="wp-caption alignright" style="width: 220px"><a href="http://www.vrinteractive.net/wp-content/uploads/2012/02/photo.jpg"><img class=" wp-image-3141 " title="&quot;Top Speed&quot; Jay Cogen on his Polaris 600" src="http://www.vrinteractive.net/wp-content/uploads/2012/02/photo-300x300.jpg" alt="&quot;Top Speed&quot; Jay Cogen on his Polaris 600" width="210" height="210" /></a><p class="wp-caption-text">&quot;Top Speed&quot; Jay Cogen on his 600</p></div>
<ul>
	<li>The whole team came together as a whole by helping each other and having fun outside the office</li>
	<li>Web Designer, Jay Cogen, hit the top speed (78mph!) for the VR folks</li>
	<li>Six out of eight team members survived minor snowmobile crashes</li>
	<li>Six out of eight team members perfected newly learned &#8220;powder turns&#8221;</li>
	<li>Two team members learned to drive sleds and quickly adopted the &#8220;need for speed&#8221;</li>
	<li>All eight snowmobiles survived the VR team (for the most part)</li>
	<li>All eight of us were &#8220;tuckered out&#8221; and some us even &#8220;hit the hay&#8221; really early that night</li>
</ul>

<h4>Granite Hot Springs, Wyoming</h4>
<p>If you&#8217;ve never been to <a href="http://www.jacksonholenet.com/nature/granite_hot_springs.php" target="_blank">Granite Hot Springs</a>, then go. It&#8217;s located 30 miles from Jackson, WY in the Gros Ventre mountain range in the Bridger-Teton National Forest. We snowmobiled about ten miles in from HWY 191 and changed into swimsuits to soak for about an hour in the natural, hot spring pool (just be glad that there are no pictures of this since our bodies all so white from being layered up for months). It&#8217;s the pool that Travis Rice snowboards into from a rocky cliff above it in the movie, <em><strong><a href="http://www.cleansnipe.com/SearchResults.aspx?q=that-s-it--that-s-all&amp;t=All" target="_blank">That&#8217;s It, That&#8217;s All</a></strong></em>. After our soak in the 93°F to 112°F thermal bath, we were called to our five-star lunch prepared by our awesome guide.</p>

<h4>About our Guide: Mike McCloud</h4>
<div id="attachment_3191" class="wp-caption alignright" style="width: 220px"><a href="http://www.vrinteractive.net/wp-content/uploads/2012/02/photo2.jpg"><img class=" wp-image-3191 " title="VR Team and our guide Mike" src="http://www.vrinteractive.net/wp-content/uploads/2012/02/photo2-300x300.jpg" alt="VR Team and our guide Mike" width="210" height="210" /></a><p class="wp-caption-text">VR Team and our guide Mike</p></div>

<p>We certainly lucked out with our snowmobile guide from <a href="http://www.jacksonholesnowmobile.com/" target="_blank">Jackson Hole Snowmobile Tours</a>. Not only was he a wealth of knowledge about all things snowmobile, avalanche safety and the Jackson Hole area, but he&#8217;s an awesome cook!</p>

<p>He made us a wonderful (<em>and huge!</em>) steak cooked to order and served it up with pasta salad, baked beans, marinated mushrooms, garlic-stuffed bread and brownies. Pretty deluxe for eating in the Wyoming backcountry, huh?</p>
<h4>From the <a href="http://www.jacksonholesnowmobile.com/index.php" target="_blank">Jackson Hole Snowmobile Tours Website</a>:</h4>
<p>&#8220;<em>Mike has been in Jackson Hole working ski patrol, snowmobiling and running river trips for over a decade. Mike has guided commercial raft trips on 3 different rivers for 17 years and counting, been on the Snow King Ski Patrol for over 10 years, and has been guiding commercial snowmobile tours for over 5 years. Mike has an AAS Degree in Business, and is a NOLS Graduate. He currently holds an Outdoor Emergency Care Certificate and is a member of the National Ski Patrols Pro Division</em>.&#8221;</p>]]></content:encoded>
			<wfw:commentRss>http://www.vrinteractive.net/2012/04/vr-interactive-team-building-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook Pages Timeline for Procrastinators</title>
		<link>http://www.vrinteractive.net/2012/03/facebook-pages-timeline-for-procrastinators/</link>
		<comments>http://www.vrinteractive.net/2012/03/facebook-pages-timeline-for-procrastinators/#comments</comments>
		<pubDate>Tue, 27 Mar 2012 19:43:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Tips + Tricks]]></category>
		<category><![CDATA[Facebook Timeline for Pages]]></category>
		<category><![CDATA[VR Interactive Social Media Services]]></category>

		<guid isPermaLink="false">http://www.vrinteractive.net/?p=2732</guid>
		<description><![CDATA[Update your Facebook Page for Timeline If you&#8217;ve been procrastinating updating your brand&#8217;s Facebook page to comply with the changes in Facebook Timeline, good job: It&#8217;s only a few days until it goes into effect on March 30th. But, if it weren&#8217;t for the last minute nothing would ever get done. Don&#8217;t panic. It&#8217;s not [...]]]></description>
			<content:encoded><![CDATA[<h3>Update your Facebook Page for Timeline</h3>
<p>If you&#8217;ve been procrastinating updating your brand&#8217;s Facebook page to comply with the changes in Facebook Timeline, good job: It&#8217;s only a few days until it goes into effect on March 30th.</p>
<span id="more-2732"></span>
<a href="http://www.vrinteractive.net/wp-content/uploads/2012/02/FacebookTimelineImageDimensions21-560x1909.png"><img class="alignright  wp-image-2999" style="border: 1px solid black;" title="Facebook Timeline Image Dimensions" src="http://www.vrinteractive.net/wp-content/uploads/2012/02/FacebookTimelineImageDimensions21-560x1909-300x1024.png" alt="Facebook Timeline Image Dimensions" width="180" height="614" /></a>
<p>But, if it weren&#8217;t for the last minute nothing would ever get done. Don&#8217;t panic. It&#8217;s not as big a deal (for most businesses) as you might think and you can make a few important changes pretty quickly.</p>
<h4>Focus on Telling your Brand&#8217;s Story Visually</h4>
Timeline can enhance your brand since it&#8217;s more visual in nature, so you can tell a better story of your brand with carefully orchestrated images. Do five (5) things to your page before timeline launches on March 30th and it could have a positive effect for your business.
<ol>
	<li>Add a cover photo image (851 x 315 pixels) that either leads the user&#8217;s eye to the most viewed app (notice how <a href="https://www.facebook.com/livestrong" target="_blank">Livestrong</a> leads the user&#8217;s eye to the blog app, which is located in the most-viewed area) or tells the story of your business.</li>
	<li>Make a profile picture (180 x 180) that your users identify with (since <a href="https://www.facebook.com/Starbucks" target="_blank">Starbucks</a> is instantly recognizable, they can just use the icon portion of the logo, but if your business is small you may want to consider using a text logo, or both icon and text).</li>
	<li>Add some milestones to your timeline such as important dates for the business with photos. <a href="https://www.facebook.com/cocacola?__adt=5" target="_blank">Coca Cola</a> added a testimonial from 1892 that the customer said, &#8220;<em>this is going to be big.</em>&#8220;</li>
	<li>Organize your apps or views so that the most important ones are the four (4) that are showing on the top level of the apps. You can post up to twelve (12) apps or views. The Captain Morgan page has the &#8220;Rumpedia&#8221; app in the best spot to feature tantalizing recipes that may encourage you, well, to drink more of the Captain.</li>
	<li>Devise a plan for your pinned post, which is the first post (on the left under the profile picture) that stays up for a week. You could choose to use a current event or keep re-pinning something you always want to show. <a href="https://www.facebook.com/redbull" target="_blank">Red Bull</a> used a picture of Red Bull athlete Lindsey Vonn after she set a record for World Cup points since they knew it would generate interaction from her fans.</li>
</ol>
Devote a bit of time creating images that are the right dimensions for Timeline, so that they don&#8217;t get distorted when they&#8217;re uploaded to Facebook. Click on the great <a href="http://www.jonloomer.com/2012/03/07/dimensions-for-facebook-timeline-for-pages-infographic/" target="_blank">infographic above (to make it bigger) from Jon Bloomer</a> that shows the exact dimensions for each focus area. Some sizes are listed below for quick reference:
<ul>
	<li>Cover photo: 851 by 315 pixels</li>
	<li>Profile picture: 180 by 180 pixels</li>
	<li>App and Views image: 111 by 74 pixels</li>
	<li>Thumbnail: 32 by 32 pixels</li>
	<li>Images within wall posts: 404 by 404 pixels</li>
	<li>Highlighted and milestone images: 843 by 403 pixels</li>
</ul>
<h4>Good Examples of Timeline Pages</h4>
<p style="text-align: center;"><a href="http://www.vrinteractive.net/wp-content/uploads/2012/02/timlineexamples.gif"><img class="aligncenter size-full wp-image-3007" style="border: 1px solid black;" title="Timline examples" src="http://www.vrinteractive.net/wp-content/uploads/2012/02/timlineexamples.gif" alt="Timline examples" width="900" height="491" /></a></p>

<ul>
	<li><a href="https://www.facebook.com/livestrong" target="_blank">Livestrong</a> &#8211; cover photo leads the user&#8217;s eyes to the blog app</li>
	<li><a href="https://www.facebook.com/CaptainMorganUSA" target="_blank">Captain Morgan USA</a> &#8211; clever way to incorporate profile picture into cover photo and centering the apps (since the size went from 520 to 810 this looks better than the left-justified default</li>
	<li><a href="https://www.facebook.com/cocacola?__adt=5" target="_blank">Coca-Cola</a> &#8211; Good use of milestones (including an image of a hand-written testimony from 1892!)</li>
	<li><a href="https://www.facebook.com/Starbucks" target="_blank">Starbucks</a> &#8211; Simple look with branded apps</li>
	<li><a href="https://www.facebook.com/redbull" target="_blank">Red Bull</a> &#8211; Customized apps displayed prominently and pinned post encouraging interaction</li>
</ul>
<h4>Facebook Timeline Resources:</h4>
<ul>
	<li><a href="https://www.facebook.com/marketing" target="_blank">Facebook Marketing Solutions page</a></li>
	<li><a href="http://mashable.com/2012/02/29/facebook-brand-timelines-changes-marketing/" target="_blank">Facebook Brand Timelines: 6 Big Changes Every Marketer Needs to Understand</a></li>
	<li><a href="http://socialmediatoday.com/pammoore/476234/15-must-know-tips-rock-your-new-facebook-timeline-business-page?ref=node_related_posts" target="_blank">15 Must Know Tips to Rock Your New Facebook Timeline Business Page</a></li>
	<li><a href="http://mashable.com/2011/12/29/eyetracking-study-new-vs-old-profiles/#40303Facebook-Average-Time-to-First-Fixation" target="_blank">Facebook Eye-Tracking Study: Profile Timeline vs. Old Style</a></li>
	<li><a href="http://www.verdepr.com/blog/2012/03/understanding-facebook-timeline-what-it-is-and-isnt/" target="_blank">Understanding Facebook Timeline: What It Is (and Isn’t)</a></li>
	<li><a href="http://business.transworld.net/91264/features/introducing-facebooks-timeline-for-brands/2/" target="_blank">Making the Most of Facebook&#8217;s Timeline for Brands</a></li>
	<li><a href="http://www.jonloomer.com/2012/03/07/dimensions-for-facebook-timeline-for-pages-infographic/" target="_blank">Reference of Dimensions for Facebook Timeline For Pages [Infographic]</a></li>
	<li><a href="http://www.allfacebook.com/facebook-timeline-video-2012-03" target="_blank">How To Customize Timeline On A Facebook Page</a></li>
	<li><a href="http://www.allfacebook.com/facebook-marketing-mistakes-no-2012-03" target="_blank">The Top 3 Facebook Marketing Mistakes Right Now</a></li>
</ul>
<h4>Need Help or Customized Applications?</h4>
If you need help with your brand&#8217;s Facebook page or need any customized applications built, then you&#8217;re in the right place. VR Interactive offers expert <a href="http://www.vrinteractive.net/services/seo-web-marketing/social-media/" target="_blank">Social Media Services</a> tailored to your business and has Facebook-savvy developers who can customize applications and more for you.
&nbsp;
&nbsp;
&nbsp;]]></content:encoded>
			<wfw:commentRss>http://www.vrinteractive.net/2012/03/facebook-pages-timeline-for-procrastinators/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Job Offer: ASP .Net Web Developer</title>
		<link>http://www.vrinteractive.net/2012/02/job-offfer-asp-net-web-developer-2/</link>
		<comments>http://www.vrinteractive.net/2012/02/job-offfer-asp-net-web-developer-2/#comments</comments>
		<pubDate>Sun, 12 Feb 2012 22:58:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Job Posting]]></category>

		<guid isPermaLink="false">http://www.vrinteractive.net/?p=1732</guid>
		<description><![CDATA[Position : Web Developer VR Interactive is a full service website design shop located in Jackson Hole, WY. This is a great opportunity to jump into a fast paced established and growing web design firm. A large portion of our client base is outdoor, travel, and action sports oriented clients. The Ideal Candidate: We are [...]]]></description>
			<content:encoded><![CDATA[<strong>Position : Web Developer</strong>

<p>VR Interactive is a full service website design shop located in Jackson Hole, WY. This is a great opportunity to jump into a fast paced established and growing web design firm. A large portion of our client base is outdoor, travel, and action sports oriented clients.</p>
<span id="more-1732"></span>
<h4>The Ideal Candidate:</h4>
<p>We are looking for someone with 2+ years experience in web development. The ideal candidate shall display sincere attention to detail, the ability to self-motivate, creativity in solving problems, leadership, the ability to work with other developers, and shall demonstrate a comprehensive understanding of ground-up website deployment and web programming. Additionally, as we are a .Net shop, an understanding of visual studio is preferred, and PHP/RUBY/Coldfusion programming is a plus.</p>

The Ideal candidate will be competent in all of the following topics:
<ul>

<li>Object Orient Programing in ASP .Net</li>
	<li> WebServer Maintenance and Deployment</li>

<li>CSS/HTML standards	</li>

	<li>AJAX/Advanced JavaScript implementation, JQuery</li>

	<li>Database Development</li>
</ul>



<h4>Position Responsibilities:</h4>
<ul>

	<li>This position requires the ability to multi-task and meet deadlines, while being detail-oriented, and showing the ability to work in a fast paced environment.</li>

	<li>Foster a collaborative working environment, and encourage new ideas from the team for both internal and external projects.</li>


	<li>Build out .NET / PHP components for Content Management systems</li>

	<li>Design and Deploy mobile applications</li>
</ul>



<h4>QUALIFICATIONS REQUIRED:</h4>
<ul>

	<li>Ability to hand code W3C compliant – HTML, CSS, XHTML, XML</li>

	<li>Solid understanding and expertise with XHTML, CSS, cross-browser/platform issues</li>

	<li>Experience managing webservers and webserver technologies</li>

	<li>Experience in JavaScript and JavaScript libraries (Prototype, JQuery).</li>

	<li>2 + years experience with ASP.NET</li>

	<li>Experience with PHP and MySql</li>


	<li>Knowledge of Office applications (Word, Excel, Access)</li>
</ul>



<h4>PLUS FACTORS:</h4>

<ul>
	<li>Previous experience with implementations of large-scale business web sites</li>

	<li>Previously working for an interactive agency, design studio or adverting agency.</li>

	<li>Passion for Web 2.0. – Social Media outlets and social media marketing</li>

	<li>Experience with Flash and Action Script</li>

	<li>Experience developing and deploying mobile applications</li>

	<li>Experience with web services and WCF</li>
</ul>



<strong>For more information or to apply, email careers@vrinteractive.net</strong>]]></content:encoded>
			<wfw:commentRss>http://www.vrinteractive.net/2012/02/job-offfer-asp-net-web-developer-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VR Interactive Team</title>
		<link>http://www.vrinteractive.net/2011/12/vr-interactive-team/</link>
		<comments>http://www.vrinteractive.net/2011/12/vr-interactive-team/#comments</comments>
		<pubDate>Thu, 15 Dec 2011 19:26:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[VR News]]></category>
		<category><![CDATA[employees]]></category>
		<category><![CDATA[team]]></category>
		<category><![CDATA[VR Interactive]]></category>

		<guid isPermaLink="false">http://www.vrinteractive.net/?p=1818</guid>
		<description><![CDATA[Good news! The VR Interactive team is growing. If you&#8217;re a client or prospect, this means better customer service and more efficient turnaround time for projects or quotes. With the depth of talent now in house, VR Interactive will step up to even higher levels of technological innovation. It&#8217;s exciting for us and hopefully for [...]]]></description>
			<content:encoded><![CDATA[<p>Good news! The VR Interactive team is growing. If you&#8217;re a client or prospect, this means better customer service and more efficient turnaround time for projects or quotes. With the depth of talent now in house, VR Interactive will step up to even higher levels of technological innovation. It&#8217;s exciting for us and hopefully for you, as well!</p>
<span id="more-1818"></span>
<p>The VR Interactive team has a unique blend of skills and talents in the web development field. Stop by our office upstairs in Buffalo Junction in Jackson, Wyoming to chat with us anytime.</p>
<br/>
<h2>The VR Interactive Dream Team:</h2>
<br/>
<h3>Brian Modena</h3>
<p><strong>Co-Owner/Web Developer</strong> Brian Modena dreams in divs. As a CSS expert and programmer, he makes websites and applications <em>and</em> makes them look good! When he&#8217;s not styling the code at work, you can find him styling on his Santa Cruz mountain bike up on Teton Pass or skiing the famous JH powder.</p>

<h3>Jed Frumkin</h3>
<p>After graduating from Brown University in 1999, Jed founded VR Interactive and began developing for a number of clients in the action sports, real estate, and lodging industries. Since then the firm has grown, but you can still find this <strong>Co-Owner/Web Developer</strong> of VR Interactive standing (yes, <em>standing</em>) at his computer programming all day long. When he finally does leave his stand-up workstation, he&#8217;s usually playing bass guitar in the popular JH band <a href="http://www.thedeadlocks.com/" target="_blank">The Deadlocks</a>, biking, or skiing.</p>

<h3>Charles Trout</h3>
<p>Originally from Lancaster, Pennsylvania, <strong>Lead Programmer</strong> Chuck Trout is known for finding creative and elegant solutions to programming and development problems. When he&#8217;s not solving the problems in the VR dev world, he likes to ride his motorcycles, hunt, ski, etc.</p>

<h3>Galen Strasen</h3>
<p><strong>SEO Guru/Web Designer</strong> Galen Strasen makes beautiful websites and gets them to rank high in search engines. When she&#8217;s away from the code, keywords, and analysis, she likes to travel (she just returned from a backpacking stint in Southeast Asia), spend time with her pet bunny, rock climb, and paint her fingernails obnoxious colors.</p>
<h3>Chris Hanson</h3>
<p><strong>Project and Account Manager</strong> juggles all the VR projects with complete composure. When he&#8217;s not keeping online projects in line, he spends his free time in the mountains fishing, skiing, and hunting. He just tagged and processed this year&#8217;s elk (yum!).</p>
<h3>Myke Myers</h3>
<p>Myke is our new <strong>.NET Developer</strong> with ten years of professional web development experience under his belt. He&#8217;s still getting used to Jackson&#8217;s fresh and clean mountain air since he just moved from the upper east side of Manhattan, but once his lungs get used to it, he&#8217;ll be shredding the slopes on his snowboard. He wanted to get back to mountain living after having lived in South Lake Tahoe before the &#8220;Big Apple.&#8221;</p>
<h3>Jay Cogen</h3>
<p>Originally from Tuxedo, NY, Jay&#8217;s a <strong>WordPress/PHP Developer and Web Designer</strong> who rode his motorcycle all the way from South Carolina to start working at VR Interactive in late October. Since the tank only holds three gallons, he had to stop every 120 miles across the US. A graduate of Northeastern University in Boston, he&#8217;s been traveling for the past 3.5 years living in the Caribbean, Colorado, New Zealand, and Montana. In his spare time he likes rock climbing, free diving, skiing, and motorcycling.</p>

<h3>Christine Mychajliw</h3>
<p><strong>Content Management/E-Marketing Specialist</strong> Christine Mychajliw (say, &#8220;<em>Me-Hi-Leave</em>&#8220;) likes to ride bikes, ski, hike, and cook when she&#8217;s not wrangling content, blogging or communicating in 140 characters or less at VR Interactive.</p>

<h3>Charlie Jonas</h3>
<p><strong>Junior Programmer</strong> Charlie is joining the development team as a recent computer science graduate and brings a fresh perspective on new technology with him.</p>


<h4>VR Interactive Expert Partners and Agencies:</h4>
<p>VR Interactive also works with a number of expert partners such as contractors and agencies further increasing what can be achieved. A few notable partners are <strong>Scott Wood, John Pansewicz, Massie&#8217;s Studio, and Champ Internet,</strong> among others. This means we have the expert resources on call if we ever need to respond more quickly to our customers&#8217; needs.</p>]]></content:encoded>
			<wfw:commentRss>http://www.vrinteractive.net/2011/12/vr-interactive-team/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VR Interactive Releases BuyBtn Affiliate Button Generator</title>
		<link>http://www.vrinteractive.net/2011/12/vr-interactive-releases-buybtn-affiliate-button-generator/</link>
		<comments>http://www.vrinteractive.net/2011/12/vr-interactive-releases-buybtn-affiliate-button-generator/#comments</comments>
		<pubDate>Thu, 15 Dec 2011 17:48:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Affiliate Marketing]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[Plug-in + App Development]]></category>
		<category><![CDATA[VR News]]></category>
		<category><![CDATA[affiliate marketing]]></category>
		<category><![CDATA[avantlink]]></category>
		<category><![CDATA[blog post]]></category>
		<category><![CDATA[blogger tools]]></category>
		<category><![CDATA[Buy Now buttons]]></category>
		<category><![CDATA[BuyBtn]]></category>
		<category><![CDATA[web design tools]]></category>

		<guid isPermaLink="false">http://www.vrinteractive.net/?p=1860</guid>
		<description><![CDATA[BuyBtn will make linking buttons and searches easier for AvantLink affiliate marketers VR Interactive announces the launch of Buy Button (BuyBtn), an easy and exciting new way for affiliate marketers to generate cutting-edge “Buy Now” direct link buttons and product searches with all of their AvantLink affiliate info embedded. This will revolutionize the traditional methods [...]]]></description>
			<content:encoded><![CDATA[<h3>BuyBtn will make linking buttons and searches easier for AvantLink affiliate marketers</h3>
<p>VR Interactive announces the launch of <strong><a href="http://www.avantlink.com/click.php?tt=cl&#038;mi=11177&#038;pw=11193&#038;ctc=VRBlog&#038;url=http%3A%2F%2Fwww.avantlink.com%2Faffiliates%2Faffiliate-tool-center%2Fapp-market%2F" target="_blank">Buy Button (BuyBtn)</a></strong>, an easy and exciting new way for affiliate marketers to generate cutting-edge “Buy Now” direct link buttons and product searches with all of their <a href="http://www.avantlink.com/click.php?tt=cl&#038;mi=10048&#038;pw=11193&#038;ctc=VRBlog&#038;url=http%3A%2F%2Fwww.avantlink.com%2F" target="_blank">AvantLink</a> affiliate info embedded. This will revolutionize the traditional methods that web designers and bloggers have used to write code and create fancy yet functional buttons that properly reflects affiliate identification numbers and tracking codes.</p><span id="more-1860"></span>

<p>The easy-to-use “wizard,” found in the AvantLink “Affiliate” section under &#8220;Tools,&#8221; steps users through a series of easy decisions that even for someone with no coding knowledge will find easy to quickly create a button or a product search. The clean interface stores the encoded buttons inside a list for each of their websites with a preview of how the button looks, the type of button (direct link or product search), the name of the button and the Get Code link. This allows bloggers and web designers to come back any time and click on the Get Code link and copy/paste it into their blog or website.</p>

<div id="attachment_1889" class="wp-caption center" style="width: 506px"><a href="http://www.vrinteractive.net/wp-content/uploads/2011/12/BuyBtnScreen2.png"><img class="size-full wp-image-1889 " style="border: 1px solid black;" title="BuyBtn Screenshot" src="http://www.vrinteractive.net/wp-content/uploads/2011/12/BuyBtnScreen2.png" alt="BuyBtn Screenshot" width="496" height="220" /></a><p class="wp-caption-text">BuyBtn makes attractive yet functional &quot;Buy Now&quot; buttons</p></div>

<p>Affiliate marketing is a marketing practice in which a business rewards one or more affiliates for each visitor or customer brought about by the affiliate&#8217;s own marketing efforts. Many bloggers use affiliate marketing to earn income based on the content that they push.</p>

<p><strong><a href="http://www.avantlink.com/click.php?tt=cl&#038;mi=11177&#038;pw=11193&#038;ctc=VRBlog&#038;url=http%3A%2F%2Fwww.avantlink.com%2Faffiliates%2Faffiliate-tool-center%2Fapp-market%2F" target="_blank">BuyBtn</a></strong> will streamline the process that a blogger would use to “get rewarded” for writing about a company’s product. For example, an outdoor gear blogger could write a story about the best type of soft shell jackets for backcountry skiing. After identifying the product to promote, the blogger could log into their AvantLink Affiliate account and quickly generate a fancy, yet functional “Buy Now” button that would include their affiliate ID and tracking info and simply copy/paste the code into the back end of the blog post. The result, an attractive but code-compliant button that would take the reader to a merchant to buy the product and would allow for the blogger to get credit, where credit is due.</p>

<p>Likewise, the blogger could highlight a search of products that would fit their post. So, say the blogger is writing about the best type of softshell jacket that a backcountry skier would want, he/she could use BuyBtn to generate the code that would reveal the results of the search. So, it could show numerous jackets from one brand in one attractive window that would open from the Buy Now button. See an example of this in the <a title="Gear Review: Stoic Outerwear" href="http://thedeal.cleansnipe.com/gear-review-stoic-outerwear/" target="_blank">Stoic Outerwear Gear Review</a> on the blog, <a title="The Deal" href="http://thedeal.cleansnipe.com/" target="_blank">The Deal</a> from <a title="CleanSnipe Outdoor Gear Tracker" href="http://www.cleansnipe.com/" target="_blank">CleanSnipe</a>.</p>

<div id="attachment_1881" class="wp-caption alignright" style="width: 489px"><a href="http://www.vrinteractive.net/wp-content/uploads/2011/12/BuyBtn_search.png"><img class="size-full wp-image-1881 " style="border: 1px solid black;" title="BuyBtn search" src="http://www.vrinteractive.net/wp-content/uploads/2011/12/BuyBtn_search.png" alt="BuyBtn search" width="479" height="771" /></a><p class="wp-caption-text">An example of BuyBtn search results for Stoic gear</p></div>

“<em>We’re excited to add Buy Button to AvantLink’s suite of industry-leading tools for affiliate marketers</em>,” said VR Interactive co-owner and web developer Jed Frumkin. “<em>It will substantially increase the efficiency and eloquence with which bloggers and designers implement &#8216;Buy Now&#8217; buttons. It saves a couple of steps, really, and looks classier than a lot of homemade image buttons.</em>”

<h3>Buttons, Buttons, Buttons</h3>
The current button options are grey (default), blue, magenta, red, orange and yellow. <strong>However, VR Interactive can customize the buttons to match the branding of an affiliate by e-mailing <a href="mailto:info@vrinteractive.net" target="_blank">info@vrinteractive.net</a>.</strong>

<div id="attachment_1872" class="wp-caption aligncenter" style="width: 468px"><a href="http://www.vrinteractive.net/wp-content/uploads/2011/12/BuyBtnScreenshot1.png"><img class="size-full wp-image-1872  " style="border: 1px solid black;" title="BuyBtn Screenshot" src="http://www.vrinteractive.net/wp-content/uploads/2011/12/BuyBtnScreenshot1.png" alt="BuyBtn Screenshot" width="458" height="342" /></a><p class="wp-caption-text">There are 6 current button color options, but they can be customized.</p></div>

<p>BuyBtn is easy to use, but here&#8217;s a <a title="BuyBtn help doc" href="http://www.vrinteractive.net/wp-content/uploads/2011/12/BUYBTN_Help_Doc.pdf" target="_blank">Help Document PDF</a> just in case you need it. Follow <strong><a href="https://twitter.com/#!/buybtn" target="_blank">BuyBtn on Twitter</a></strong><a href="https://twitter.com/#!/buybtn" target="_blank"></a> for more juicy tidbits including user tips, button-in-use examples and upgrade information.</p>

<h3>About Avantlink</h3>
<p><a href="http://www.avantlink.com/click.php?tt=cl&amp;mi=10048&amp;pw=11193&amp;ctc=VRBlog&amp;url=http%3A%2F%2Fwww.avantlink.com%2F" target="_blank">AvantLink (www.avantlink.com) </a>has created an efficient and productive platform for serious Affiliates &amp; Web Retailers. They are unique because they only work with high-value merchants with substantial catalogs on a percentage of sale. This particular advertiser segment can best utilize the industry-leading Affiliate Tools AvantLink is known for.</p>

<h3>About <a href="http://www.avantlink.com/click.php?tt=cl&#038;mi=11177&#038;pw=11193&#038;ctc=VRBlog&#038;url=http%3A%2F%2Fwww.avantlink.com%2Faffiliates%2Faffiliate-tool-center%2Fapp-market%2F" target="_blank">AvantLink App Market</a></h3>
<p>Recently, AvantLink launched the groundbreaking and, frankly, freaking awesome <strong><a href="http://www.avantlink.com/click.php?tt=cl&#038;mi=11177&#038;pw=11193&#038;ctc=VRBlog&#038;url=http%3A%2F%2Fwww.avantlink.com%2Faffiliates%2Faffiliate-tool-center%2Fapp-market%2F" target="_blank">AvantLink App Market</a></strong><a href="http://www.avantlink.com/click.php?tt=cl&#038;mi=11177&#038;pw=11193&#038;ctc=VRBlog&#038;url=http%3A%2F%2Fwww.avantlink.com%2Faffiliates%2Faffiliate-tool-center%2Fapp-market%2F" target="_blank"></a>. The concept is simple&#8211;they opened our network up to third party developers who have great ideas for affiliate marketing tools, allowed them to build those tools, and then make them available to all of the affiliates on our network. Think “iPhone App Store for affiliate marketing,” except all of the tools in its market are completely free to AvantLink members!</p>

<p>Check out the <strong>AvantLink App Market</strong><a href="http://www.avantlink.com/click.php?tt=cl&#038;mi=11177&#038;pw=11193&#038;ctc=VRBlog&#038;url=http%3A%2F%2Fwww.avantlink.com%2Faffiliates%2Faffiliate-tool-center%2Fapp-market%2F" target="_blank"></a> accessible via the &#8220;Tools&#8221; page of your Affiliate account. They feature specific applications now via a blog post series.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.vrinteractive.net/2011/12/vr-interactive-releases-buybtn-affiliate-button-generator/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google +1 for AdWords</title>
		<link>http://www.vrinteractive.net/2011/07/google-1-for-adwords/</link>
		<comments>http://www.vrinteractive.net/2011/07/google-1-for-adwords/#comments</comments>
		<pubDate>Fri, 08 Jul 2011 21:27:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Tips + Tricks]]></category>

		<guid isPermaLink="false">http://www.vrinteractive.net/?p=1636</guid>
		<description><![CDATA[Will you be Google&#8217;s +1? Google hopes so. They recently introduced Google +1 for AdWords, which is similar to the Facebook Like button, but if someone &#8220;+1&#8242;s&#8221; your site or ad it ends up in the Google search results page (if they&#8217;re logged into their Google account). Here’s how Google +1 for AdWords works: An [...]]]></description>
			<content:encoded><![CDATA[<p>Will you be Google&#8217;s +1? Google hopes so. They recently introduced Google +1 for AdWords, which is similar to the Facebook Like button, but if someone &#8220;+1&#8242;s&#8221; your site or ad it ends up in the Google search results page (if they&#8217;re logged into their Google account).</p><span id="more-1636"></span>
<h3>Here’s how Google +1 for AdWords works:</h3>
<p><strong>An example from Google&#8217;s e-mail to AdWords users</strong><br/>
Let’s say you own a hotel in Madrid. Brian had a lovely stay at your hotel last summer. When Brian starts researching accommodations for his next trip to Spain, he searches on Google while signed into his Google account, and sees your ad. He clicks the +1 button on the ad to recommend it to his contacts.</p>

<a href="http://www.vrinteractive.net/wp-content/uploads/2011/07/GoogleAdExample11.jpg"><img class="size-full wp-image-1642 aligncenter" title="GoogleAdExample1" src="http://www.vrinteractive.net/wp-content/uploads/2011/07/GoogleAdExample11.jpg" alt="Googel AdWords +1 Example" width="290" height="121" /></a>

<p>When Brian’s friend Ann plans her trip to Spain, she signs in to her Google account, searches, and also sees your ad – plus the personalized annotation that Brian +1’d it. Knowing that Brian recommends your hotel helps Ann decide where to stay during her travels.</p>

<a href="http://www.vrinteractive.net/wp-content/uploads/2011/07/GoogleAdWords22.jpg"><img class="size-full wp-image-1655 aligncenter" title="GoogleAdWords2" src="http://www.vrinteractive.net/wp-content/uploads/2011/07/GoogleAdWords22.jpg" alt="Googel AdWords +1 Example 2" width="288" height="125" /></a>

<p>Think of the +1 button as a way for fans of your business to recommend what you offer, for all their friends and contacts to see. By helping searchers see more personal, relevant ads, we believe you’ll see more qualified traffic. You can also add the +1 button to your site to give your customers the opportunity to +1 your site after visiting it.</p>
<h3>Are you engaged?</h3>
<p>Google thinks that you&#8217;ll definitely use this &#8220;word of click&#8221; advertising. In their introductory video (below), Google says it saves you time since you can +1 something that you wouldn&#8217;t necessarily send an e-mail to a friend or write a post about and the results will show up right when it&#8217;s most useful &#8212; on Google search (as long as their logged in).</p><p> According to the <a title="Google AdWords Innovations Page" href="http://www.google.com/ads/innovations/+1button.html" target="_blank">Google AdWords Innovations Page</a>, &#8220;As results become more personal and relevant, we believe that users are not only more likely to click, but they&#8217;re more likely to act as well. +1 annotations bring you pre-qualified users, who just received recommendations from their friends and are actively looking for your content. This powerful combination may result in more conversion and deeper engagement with your site overall.&#8221;</p>
<iframe width="560" height="349" src="http://www.youtube.com/embed/4RyY2-ofP4g" frameborder="0" allowfullscreen></iframe><br />
<h3>What else do I need to know?</h3>
<p>The +1 button shows up for signed-in users of Google.com using a modern browser. Since it&#8217;s tied to your Google account, you can&#8217;t click the button numerous times to &#8220;ballot-stuff&#8221; an ad because it will only allow you to click it once (we tried it, and it changed the number briefly then adjusted it).</p>

<p>According to the <a title="HubSpot Blog" href="http://blog.hubspot.com/blog/tabid/6307/bid/18477/What-Every-Marketer-Needs-to-Know-About-Google-1-for-AdWords.aspx" target="_blank">HubSpot Blog</a>, it can impact the score of your ads and increase your click-through rate, &#8220;Since your ads gain more credibility the more they are +1’ed, it increases the likely hood of other users enaging with your ads. This extra level of engagement can increase your ad’s CTR (click through rate). Although +1’s are not part of the quality score of your ads, the historical CTR of your ads is. So, +1’s can most certainly impact the quality score of your ads.&#8221;</p>

<p>The <a title="ROI Revolution Blog " href="&lt;http://www.roirevolution.com/blog/2011/04/google_plus_one_adwords_gets_social.php&gt;" target="_blank">ROI Revolution Blog</a> suggests using canonicalization in your HTML header since it can help you retain your +1 data across pages. Learn more about this at the <a title="Google Webmaster Help Center" href="http://www.google.com/support/webmasters/bin/answer.py?answer=139066" target="_blank">Google Webmaster Central Help Center</a>.</p>

<p>Whether you will you click the +1 button is up to you, but the impact on your site is more favorable than not, so get some more info and add your button!</p>
<h3>More info:</h3>
<ul>
	<li><a title="Google AdWords Help Center" href="https://adwords.google.com/support/aw/bin/topic.py?hl=en&#038;topic=1152956" target="_blank">AdWords Help Center </a></li>
	<li><a title="How to add the +1 Button" href="http://www.google.com/webmasters/+1/button/" target="_blank">How to add the +1 Button</a></li>
	<li><a title="Free AdWords phone support" href="http://googleblog.blogspot.com/2011/04/free-phone-support-for-adwords.html" target="_blank">Free phone support for AdWords </a></li>
</ul>]]></content:encoded>
			<wfw:commentRss>http://www.vrinteractive.net/2011/07/google-1-for-adwords/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Job Offer: Experienced WordPress Developer</title>
		<link>http://www.vrinteractive.net/2011/05/job-offer-experienced-wordpress-developer/</link>
		<comments>http://www.vrinteractive.net/2011/05/job-offer-experienced-wordpress-developer/#comments</comments>
		<pubDate>Fri, 13 May 2011 21:37:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Job Posting]]></category>

		<guid isPermaLink="false">http://www.vrinteractive.net/?p=1580</guid>
		<description><![CDATA[Effective Dates: Immediately VR Interactive is a full service web site design shop located in Jackson Hole, WY. This is a great opportunity to jump into a fast paced established and growing web design firm. A large portion of our client base is outdoor, travel and action sports oriented clients. The Ideal Candidate: We are [...]]]></description>
			<content:encoded><![CDATA[<h4>Effective Dates: Immediately</h4>

<p>VR Interactive is a full service web site design shop located in Jackson Hole, WY. This is a great opportunity to jump into a fast paced established and growing web design firm. A large portion of our client base is outdoor, travel and action sports oriented clients.</p>
<span id="more-1580"></span>
<h4>The Ideal Candidate:</h4>

<p>We are looking for a WordPress developer who is experienced in building and supporting custom WordPress themes and plugins. The ideal candidate should display attention to detail, show creativity in solving problems, and shall demonstrate a thorough understanding of php, mySql and website design. The ideal candidate may also have knowledge of ASP.Net. This position is in-house only.</p>

<h4>Qualifications Required:</h4>
<ul>

	<li>PHP</li>


	<li>mySQL</li>


	<li>jQuery</li>


	<li>HTML</li>


	<li>CSS</li>


	<li>Design</li>
</ul>



<h4>Position Responsibilities:</h4>
<ul>

	<li>This position requires the ability to work well in a team setting, while being detail-oriented and self-motivated.</li>


	<li>Foster a collaborative working environment, accept and encourage new ideas from the team for both internal and external projects.</li>


	<li>Special consideration will be given to any candidate with experience in Object Oriented Programming.</li>
</ul>



<p>For more information or to apply, please send resume, cover letter and include links to top 3 sites you have built in WordPress and top 3 plugins you have built to Natalie@vrineractive.net.</p>]]></content:encoded>
			<wfw:commentRss>http://www.vrinteractive.net/2011/05/job-offer-experienced-wordpress-developer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

