<?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>Guhru Studio &#187; Blog</title>
	<atom:link href="http://guhru.com/category/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://guhru.com</link>
	<description>Awesome Wordpress Coding</description>
	<lastBuildDate>Sat, 11 May 2013 22:44:07 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Split Layouts and WordPress</title>
		<link>http://guhru.com/split-layouts-and-wordpress/</link>
		<comments>http://guhru.com/split-layouts-and-wordpress/#comments</comments>
		<pubDate>Tue, 04 Dec 2012 20:19:54 +0000</pubDate>
		<dc:creator>Anthony Santarosa</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[Portfolio]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[bones]]></category>
		<category><![CDATA[Custom Post Type]]></category>

		<guid isPermaLink="false">http://guhru.com/?p=1114</guid>
		<description><![CDATA[<p>Recently I was reading the article &#8220;Understanding the Split Layout in Web Design&#8221; on WebdesignTuts+ and since I needed to update the portfolio section on my own website, I thought I would layout the Portfolio entries in the zig-zag pattern they discuss. The great thing about WordPress and its PHP/MySQL backend is that you can...  <a href="http://guhru.com/split-layouts-and-wordpress/" title="Read Split Layouts and WordPress">Read more &#187;</a></p><p>The post <a href="http://guhru.com/split-layouts-and-wordpress/">Split Layouts and WordPress</a> appeared first on <a href="http://guhru.com">Guhru Studio</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Recently I was reading the article <a href="http://webdesign.tutsplus.com/articles/design-theory/understanding-the-split-layout-in-web-design/" target="_blank"><em>&#8220;Understanding the Split Layout in Web Design&#8221;</em></a> on <a href="http://webdesign.tutsplus.com/" target="_blank">WebdesignTuts+</a> and since I needed to update the portfolio section on my own website, I thought I would layout the <a href="http://guhru.com/portfolio/" title="Portfolio">Portfolio</a> entries in the zig-zag pattern they discuss.</p>
<p>The great thing about WordPress and its PHP/MySQL backend is that you can access all the data and manipulate it any way you choose.</p>
<p>For this task, I already had a custom post type where I could enter the description of my Portfolio projects and upload multiple pictures. I decided to create the layout with the featured image and description alternating sides while the extra pictures float below the description.</p>
<p>Here is how I did it: </p>
<div class="alert alert-info">FYI: I use <a href="http://twitter.com/eddiemachado" target="_blank">Eddie Mochado&#8217;s</a> <a href="http://themble.com/bones/" target="_blank">Bones template</a> for the creation of all my WordPress themes.</div>
<p>First I created a custom Portfolio page layout my portfolio entries.  Then I began to modify the loop on this page.</p>
<p>Now I set up a new query for my custom post type:</p>
<pre>&lt;?php $the_query = new WP_Query( 'post_type=custom_portfolio_post_type' ); ?&gt;</pre>
<p>Now I modify the loop for my new query:</p>
<pre>&lt;?php if ( have_posts() )
{
   while( $the_query->have_posts() )
{
   $the_query->the_post(); ?&gt;</pre>
<p>Now I start the layout for posts:</p>
<pre>&lt;article id="post-&lt;?php the_ID(); ?&gt;" &lt;?php post_class('clearfix'); ?&gt; role="article"&gt;
&lt;section class="post-content"&gt;</pre>
<p>Now I start the layout for odd and even posts:</p>
<pre>&lt;?php if ( 0 === $the_query->current_post %2 )
{ 
// do stuff for even posts
?&gt;</pre>
<p>Put all your layout html for the even numbered posts here.  Depending on your framework, layout your content according to column classes you are using. Once, that is done, we continue on to the odd numbered posts.  For example I used the &#8220;3col&#8221; and &#8220;9col&#8221; classes to layout the content in my <a href="http://guhru.com/portfolio/" title="Portfolio">Portfolio</a>.</p>
<pre>&lt;?php
// Jump to next post in the loop
continue;
} 
// do stuff for odd posts ?&gt;
}
?&gt;</pre>
<p>These posts are using a layout with the columns and content switched from the even posts.</p>
<pre>Example:  Odd Posts are 3col -&gt; 9col and Even Posts are 9col -&gt; 3col</pre>
<p>That&#8217;s it!  Now you have zig zagging content and all the work is done for you.</p>
<p>The post <a href="http://guhru.com/split-layouts-and-wordpress/">Split Layouts and WordPress</a> appeared first on <a href="http://guhru.com">Guhru Studio</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://guhru.com/split-layouts-and-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Those dreaded three words..</title>
		<link>http://guhru.com/those-dreaded-three-words/</link>
		<comments>http://guhru.com/those-dreaded-three-words/#comments</comments>
		<pubDate>Fri, 28 Sep 2012 17:47:49 +0000</pubDate>
		<dc:creator>Anthony Santarosa</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[communication]]></category>
		<category><![CDATA[telecommute]]></category>

		<guid isPermaLink="false">http://guhru.com/?p=1060</guid>
		<description><![CDATA[<p>As a freelance WordPress developer I scour the internet seeking opportunities to help digital creatives bring their works to life on the WordPress platform.  As I do this I am constantly faced with those three words that haunt me. &#160; &#8220;MUST BE LOCAL&#8221; &#160; If your company is of the mindset that you must have...  <a href="http://guhru.com/those-dreaded-three-words/" title="Read Those dreaded three words..">Read more &#187;</a></p><p>The post <a href="http://guhru.com/those-dreaded-three-words/">Those dreaded three words..</a> appeared first on <a href="http://guhru.com">Guhru Studio</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>As a freelance <a href="http://wordpress.org" target="_blank">WordPress</a> developer I scour the internet seeking opportunities to help digital creatives bring their works to life on the <a href="http://wordpress.org" target="_blank">WordPress</a> platform.  As I do this I am constantly faced with those three words that haunt me.</p>
<p>&nbsp;</p>
<h2 style="text-align: center;">&#8220;MUST BE LOCAL&#8221;</h2>
<p>&nbsp;</p>
<p>If your company is of the mindset that you must have every individual work directly in your office or at least within the same zip code, this is how I imagine your office to be.  Yes, that is where your thinking is based.  In the past.</p>
<p style="text-align: center;"><img class="wp-image-1061 aligncenter" style="margin-top: 10px; margin-bottom: 10px;" title="Old-Fashioned-office" src="http://guhru.com/gsresp/wp-content/uploads/2012/09/Old-Fashioned-office.png" alt="" width="560" height="364" /></p>
<p>Without getting into how this mindset developed, lets just say that it is time to get over it.</p>
<p>There are lots of great companies that utilize a mobile and remote workforce to create wildly successful businesses. Speaking of WordPress, <a href="http://automattic.com/" target="_blank">Automattic</a>, the company behind <a href="http://wordpress.com" target="_blank">WordPress.com</a> and many other web technologies, <strong>HAS NO OFFICES!</strong>  All their amazing creations and contributions to the internet community are done by an amazing workforce located all over the world. The same goes for <a href="http://37signals.com/" target="_blank">37 Signals</a>, the company behind the popular <a href="http://basecamp.com/" target="_blank">Basecamp</a>, <a href="http://highrisehq.com/" target="_blank">Highrise</a> and <a href="http://campfirenow.com/" target="_blank">Campfire</a> collaboration software suites.</p>
<p>Have you ever flown <a href="http://www.jetblue.com/" target="_blank">JetBlue</a> airlines? Their customer service and booking agents work from home.</p>
<p>To borrow a line of thought from <a href="http://www.ted.com/speakers/jason_fried.html" target="_blank">Jason Fried</a>, the best work and brainstorming is done when you are out of the office.</p>
<p><object width="526" height="374" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" bgcolor="#ffffff"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="wmode" value="transparent" /><param name="bgColor" value="#ffffff" /><param name="flashvars" value="vu=http://video.ted.com/talk/stream/2010X/Blank/JasonFried_2010X-320k.mp4&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/JasonFried-2010X.embed_thumbnail.jpg&amp;vw=512&amp;vh=288&amp;ap=0&amp;ti=1014&amp;lang=en&amp;introDuration=15330&amp;adDuration=4000&amp;postAdDuration=830&amp;adKeys=talk=jason_fried_why_work_doesn_t_happen_at_work;year=2010;theme=not_business_as_usual;event=TEDxMidwest;tag=business;tag=creativity;tag=culture;tag=design;tag=technology;tag=work;&amp;preAdTag=tconf.ted/embed;tile=1;sz=512x288;" /><param name="src" value="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" /><param name="pluginspace" value="http://www.macromedia.com/go/getflashplayer" /><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><embed width="526" height="374" type="application/x-shockwave-flash" src="http://video.ted.com/assets/player/swf/EmbedPlayer.swf" allowFullScreen="true" allowScriptAccess="always" wmode="transparent" bgColor="#ffffff" flashvars="vu=http://video.ted.com/talk/stream/2010X/Blank/JasonFried_2010X-320k.mp4&amp;su=http://images.ted.com/images/ted/tedindex/embed-posters/JasonFried-2010X.embed_thumbnail.jpg&amp;vw=512&amp;vh=288&amp;ap=0&amp;ti=1014&amp;lang=en&amp;introDuration=15330&amp;adDuration=4000&amp;postAdDuration=830&amp;adKeys=talk=jason_fried_why_work_doesn_t_happen_at_work;year=2010;theme=not_business_as_usual;event=TEDxMidwest;tag=business;tag=creativity;tag=culture;tag=design;tag=technology;tag=work;&amp;preAdTag=tconf.ted/embed;tile=1;sz=512x288;" pluginspace="http://www.macromedia.com/go/getflashplayer" allowfullscreen="true" allowscriptaccess="always" bgcolor="#ffffff" /></object></p>
<p>So now its up to you to bring the mindset to your workplace.  There is a lot of talent our there, and not all of them are interested in spending 8 hours a day where the forecast is &#8220;72 and fluorescent&#8221;.</p>
<img class="aligncenter size-full wp-image-1070" title="REMOTEWORKER" src="http://guhru.com/gsresp/wp-content/uploads/2012/09/REMOTEWORKER.jpeg" alt="" width="800" height="3223" />
<p>&nbsp;</p>
<p>The post <a href="http://guhru.com/those-dreaded-three-words/">Those dreaded three words..</a> appeared first on <a href="http://guhru.com">Guhru Studio</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://guhru.com/those-dreaded-three-words/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding mobile menus to responisve WordPress themes without plugins **UPDATED 4/10/13</title>
		<link>http://guhru.com/mobile-menus-responisve-wordpress/</link>
		<comments>http://guhru.com/mobile-menus-responisve-wordpress/#comments</comments>
		<pubDate>Tue, 24 Jul 2012 16:19:09 +0000</pubDate>
		<dc:creator>Anthony Santarosa</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[bones]]></category>
		<category><![CDATA[tinynav]]></category>

		<guid isPermaLink="false">http://guhru.com/?p=1021</guid>
		<description><![CDATA[<p>The best tool I have found for creating themes in WordPress is the Bones template by Eddie Mochado at Themble. The latest version of Bones was completely updated using the latest web standards. It has always been an HTML5/CSS3 template. Originally based on the 960 grid, the new version is completely responsive with a twelve...  <a href="http://guhru.com/mobile-menus-responisve-wordpress/" title="Read Adding mobile menus to responisve WordPress themes without plugins **UPDATED 4/10/13">Read more &#187;</a></p><p>The post <a href="http://guhru.com/mobile-menus-responisve-wordpress/">Adding mobile menus to responisve WordPress themes without plugins **UPDATED 4/10/13</a> appeared first on <a href="http://guhru.com">Guhru Studio</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>The best tool I have found for creating themes in WordPress is the <a href="http://themble.com/bones/" target="_blank">Bones template</a> by Eddie Mochado at Themble.</p>
<p>The latest version of Bones was completely updated using the latest web standards.  It has always been an HTML5/CSS3 template.  Originally based on the 960 grid, the new version is completely responsive with a twelve column grid based on Twitter bootstrap.</p>
<p>In addition to the new responsive layout, the template comes with both SASS and LESS stylesheets allowing the end user to choose their preferred platform.</p>
<p>I was comfortable with the original template and created many sites with it. Now it was time to jump into the &#8220;Responsive&#8221; deep end.  It has taken some time trying to wrap my head around the whole &#8220;mobile first&#8221; idea.  Previously I let the WP-Touch plugin handle the mobile stuff.  Now it was time to build my own site with this latest methodology.</p>
<p>The community that works with Eddie on Github has been great.  I have had nothing but extremely helpful interactions in trying to figure out what was going on.</p>
<p>What I was trying to accomplish was to have the main navigation replaced with a drop down menu.  Based on this great post by <a href="http://www.jgrietveld.com/2012/05/06/tinynav-js-for-responsive-menus/" target="_blank">Jerry G. Reitfield</a>, here is my solution.</p>
<h2>Step 1</h2>
<p>Add the tinynav.min.js to the /library/lib/js/ folder</br><br />
Using the tinynav.js found here -&gt; <a href="https://github.com/viljamis/TinyNav.js" target="_blank">https://github.com/viljamis/TinyNav.js</a> (This tutorial was written with version 1.1)</p>
<h2>Step 2</h2>
<p>In the bones.php file, directly below the line that enqueues jQuery and before the line that enqueues the scripts.js file add these lines:</p>
<pre>wp_register_script( 'bones-tinynav', get_stylesheet_directory_uri() . '/library/js/libs/tinynav.min.js', array(), '1.1', false );
wp_enqueue_script('bones-tinynav');</pre>
<h3>Step 3</h2>
<p>In the scripts.js file add this below the section that states //add your scripts here</p>
<pre>$(function () {
      $('#menu-main-menu').tinyNav({
        header: 'Menu' // Writing any title with this option triggers the header
      });
    });
</pre>
<p>The #main-menu is the title that you give your menu in WordPress menus.  If you name it Top Menu, then change this to #top-menu</p>
<p>The word &#8216;Menu&#8217; can be changed to read whatever you want.</p>
<p>Read the docs on tiny nav if you want to set other features such as having the current selected page displayed in the menu.</p>
<p>If you want the &#8220;active&#8221; class to display the current page instead of the word &#8216;Menu&#8217; use these options -> active: &#8216;current_page_item&#8217;, header: false<br />
You will need to tinynav.min.js and change &#8220;selected&#8221; to &#8220;current_page_item&#8221; for this feature.</p>
<h2>Step 4</h2>
<p>Finally I add the styling to turn it on and off.<br/><br />
in base.less or base.scss<br/></p>
<pre>
.tinynav { display: block; margin: 160px auto 0 auto; width:100%; }
#menu-main-menu { display: none }
</pre>
<p>in 768up.less or 768up.scss</p>
<pre>.tinynav { display: none;}
#menu-main-menu {display:inline-block;}
</pre>
<p>Just remember to change #menu-main-menu to #menu-&#8221;whatever you call your main menu&#8221;</p>
<p>To see what this looks like, just resize your browser screen and watch my main menu disappear and the mobile menu appear.</p>
<p>The post <a href="http://guhru.com/mobile-menus-responisve-wordpress/">Adding mobile menus to responisve WordPress themes without plugins **UPDATED 4/10/13</a> appeared first on <a href="http://guhru.com">Guhru Studio</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://guhru.com/mobile-menus-responisve-wordpress/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Customizing the NextGen Gallery Plugin (WordPress)</title>
		<link>http://guhru.com/customizing-the-next-gen-plugin/</link>
		<comments>http://guhru.com/customizing-the-next-gen-plugin/#comments</comments>
		<pubDate>Thu, 20 Oct 2011 20:01:05 +0000</pubDate>
		<dc:creator>Anthony Santarosa</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Custom]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[nextgen]]></category>

		<guid isPermaLink="false">http://guhru.com/?p=939</guid>
		<description><![CDATA[<p>While working on a client solution, I needed to customize an already great plugin NextGen Gallery. The client wanted a staff directory, and I thought it would look good as a gallery with the staff bio fully visible in the lightbox. That part was easy, just put the staff bio in the description box in...  <a href="http://guhru.com/customizing-the-next-gen-plugin/" title="Read Customizing the NextGen Gallery Plugin (WordPress)">Read more &#187;</a></p><p>The post <a href="http://guhru.com/customizing-the-next-gen-plugin/">Customizing the NextGen Gallery Plugin (WordPress)</a> appeared first on <a href="http://guhru.com">Guhru Studio</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>While working on a client solution, I needed to customize an already great plugin <a href="http://wordpress.org/extend/plugins/nextgen-gallery/" target="_blank">NextGen Gallery</a>.</p>
<p>The client wanted a staff directory, and I thought it would look good as a gallery with the staff bio fully visible in the lightbox. That part was easy, just put the staff bio in the description box in the gallery.</p>
<p>Now my goal was to have just a snippet of the bio visible on the directory. Therefore we have to trim the bio down for the gallery view and through CSS magic rearrange it so that it does not appear below the gallery image, but to the right.</p>
<p>First the code. We need to modify one of the next-gen files. Make sure you back these changes up, because they will get written over if you upgrade the plugin.</p>
<p>The file needed to modify the gallery-caption.php file and is located in your plugins directory. nextgen-gallery &#8211;&gt; view &#8211;&gt; gallery-caption.php</p>
<p>We are going to replace this line of code:</p>
<pre>&lt;?php echo $image->caption ?&gt;</pre>
<p>with the following lines of code:</p>
<pre>&lt;?php echo $image->alttext ?>
	&lt;?php $longcap=$image->caption;
	$shortcap=substr($longcap,0,150); ?>

&lt;?php echo $shortcap; ?>&lt;a href="&lt;?php echo $image->imageURL ?>" title="&lt;?php echo $image->description ?>" &lt;?php echo $image->thumbcode ?> > &lt;br />[MORE]&lt;/a></pre>
<p>This takes our caption and shortens it to 150 characters for our purposes.  Just change the 150 to whatever length you want.</p>
<p>Now we play with the CSS to get the caption over to the location we want.  For my purposes, I have a two column gallery and I moved the new caption sipper to the right of the thumbnail.</p>
<pre>
.ngg-gallery-thumbnail span {
	/* Images description */
	font-size:80%;
	padding-left:5px; 
	display:block;
	float:right;
	text-align:left;
	position:relative;
	left:-20px;
	top:-170px;
	width:300px;
}</pre>
<p>The results look like this&#8230;</p>
<a href="http://guhru.com/wpguhru/wp-content/uploads/2011/10/staff.jpg"><img src="http://guhru.com/wpguhru/wp-content/uploads/2011/10/staff.jpg" alt="" title="staff" width="620" height="310" class="aligncenter size-full wp-image-969" /></a>
<p>The post <a href="http://guhru.com/customizing-the-next-gen-plugin/">Customizing the NextGen Gallery Plugin (WordPress)</a> appeared first on <a href="http://guhru.com">Guhru Studio</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://guhru.com/customizing-the-next-gen-plugin/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How well do you communicate?</title>
		<link>http://guhru.com/how-well-do-you-communicate/</link>
		<comments>http://guhru.com/how-well-do-you-communicate/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 22:17:26 +0000</pubDate>
		<dc:creator>Anthony Santarosa</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[communication]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[reading]]></category>
		<category><![CDATA[texting]]></category>

		<guid isPermaLink="false">http://guhru.com/?p=911</guid>
		<description><![CDATA[<p>I know that you believe you understand what you think I said, but I&#8217;m not sure you realize that what you heard is not what I meant.” &#8211;Robert McCloskey Effective communication is an essential skill for anyone in business. I am always amazed when I receive emails with requests that are not clearly defined and...  <a href="http://guhru.com/how-well-do-you-communicate/" title="Read How well do you communicate?">Read more &#187;</a></p><p>The post <a href="http://guhru.com/how-well-do-you-communicate/">How well do you communicate?</a> appeared first on <a href="http://guhru.com">Guhru Studio</a>.</p>]]></description>
				<content:encoded><![CDATA[<blockquote><p>I know that you believe you understand what you think I said, but I&#8217;m not sure you realize that what you heard is not what I meant.” &#8211;Robert McCloskey</p></blockquote>
<p>Effective communication is an essential skill for anyone in business.  I am always amazed when I receive emails with requests that are not clearly defined and somehow I feel like the idiot when I am asking for clarification.</p>
<p>I read the message over and over and over, but sometimes I just have no clue what the writer is asking.  I know they did not intentionally provide confusing information.  However some people make the assumption when they are communicating that you are completely in tune with their thought process.</p>
<p>People in technology are the worst in this category.  Somehow there is the assumption that the audience for their message is as fluent about the subject as they are.  If they were, then why would you provide any information at all?  Typical tutorials in the tech sector follow this pattern.</p>
<ul>
<li style="margin-left:50px;">Step A &#8211; Start</li>
<li style="margin-left:50px;">Step B through X glossed over because they assume you know this already</li>
<li style="margin-left:50px;">Step Y &#8211; Our amazing new step</li>
<li style="margin-left:50px;">Step Z &#8211; Confusion</li>
</ul>
<h4>How to be an effective communicator</h4>
<p>First and foremost, read.  Read a lot.  Nothing improves your communication skills more than getting a better understanding of our language.  Fortunately for us, many authors are excellent at communicating thoughts, moods, feelings and environments.  The second hand benefit of this is that you absorb some of these skills as well.</p>
<p>Secondly, read what you type.  We have all done this.  You type an email to someone and then realize later that your message reads like a 3 year old trying to grasp basic language skills.  Before you hit that send button, take a break.  Walk away from the email and come back and read it.  I am certain there are very few emails that are so essential they could not wait another few minutes before sending.</p>
<h4>Do you talk or text?</h4>
<p>My wife and I argue about this all the time.  I hate talking on the phone.  I am much happier sending a brief text message that communicates everything I need to say.</p>
<p>Keeping with that motto, that is the end of this blog post.</p>
<p><img src="http://visually.visually.netdna-cdn.com/37_infographic.jpg" alt="Texting Infographic"></p>
<p>The post <a href="http://guhru.com/how-well-do-you-communicate/">How well do you communicate?</a> appeared first on <a href="http://guhru.com">Guhru Studio</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://guhru.com/how-well-do-you-communicate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Welcome to Guhru Studio</title>
		<link>http://guhru.com/welcome-to-guhru-studio/</link>
		<comments>http://guhru.com/welcome-to-guhru-studio/#comments</comments>
		<pubDate>Mon, 01 Aug 2011 13:15:11 +0000</pubDate>
		<dc:creator>Anthony Santarosa</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[news]]></category>

		<guid isPermaLink="false">http://guhru.com/?p=786</guid>
		<description><![CDATA[<p>Today we have re-branded Studio ten69 as Guhru Studio!  We have a new look, a new logo and a new website. Check out the new website, and our new look. Keep coming back because we are not done remodeling around here.  There will be more services and more useful information available to help you look...  <a href="http://guhru.com/welcome-to-guhru-studio/" title="Read Welcome to Guhru Studio">Read more &#187;</a></p><p>The post <a href="http://guhru.com/welcome-to-guhru-studio/">Welcome to Guhru Studio</a> appeared first on <a href="http://guhru.com">Guhru Studio</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><a href="http://guhru.com/wpguhru/wp-content/uploads/2011/07/GuhruStudioFinal_150h1.png"><img class="alignleft size-full wp-image-787" title="GuhruStudioFinal_150h" src="http://guhru.com/wpguhru/wp-content/uploads/2011/07/GuhruStudioFinal_150h1.png" alt="" width="251" height="150" /></a>Today we have re-branded Studio ten69 as Guhru Studio!  We have a new look, a new logo and a new website.</p>
<p>Check out the new website, and our new look.</p>
<p>Keep coming back because we are not done remodeling around here.  There will be more services and more useful information available to help you look your best on the internet.</p>
<p>&nbsp;</p>
<p>The post <a href="http://guhru.com/welcome-to-guhru-studio/">Welcome to Guhru Studio</a> appeared first on <a href="http://guhru.com">Guhru Studio</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://guhru.com/welcome-to-guhru-studio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Living with an iPad</title>
		<link>http://guhru.com/living-with-an-ipad/</link>
		<comments>http://guhru.com/living-with-an-ipad/#comments</comments>
		<pubDate>Tue, 26 Apr 2011 12:44:02 +0000</pubDate>
		<dc:creator>Anthony Santarosa</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[Computing]]></category>

		<guid isPermaLink="false">http://www.studioten69.com/blog/?p=31</guid>
		<description><![CDATA[<p>I am not sure why I waited so long to do this. Last fall I purchased two original iPads, one for my wife and one for my daughter. My intentions were to provide a platform for my daughter to do her school work on without having to borrow my wife&#8217;s laptop and to provide my...  <a href="http://guhru.com/living-with-an-ipad/" title="Read Living with an iPad">Read more &#187;</a></p><p>The post <a href="http://guhru.com/living-with-an-ipad/">Living with an iPad</a> appeared first on <a href="http://guhru.com">Guhru Studio</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><img src="http://guhru.com/gsresp/wp-content/uploads/2011/04/ipad-2-61-300x199.jpg" alt="" title="ipad-2-61" width="300" height="199" class="alignleft size-medium wp-image-1188" />I am not sure why I waited so long to do this. Last fall I purchased two original iPads, one for my wife and one for my daughter. My intentions were to provide a platform for my daughter to do her school work on without having to borrow my wife&#8217;s laptop and to provide my wife with a portable address/datebook/todo platform and book reader.</p>
<p>&nbsp;</p>
<p>I played games and browsed the web with their iPads but nothing more than that. It was a fun toy. Flash forward to today and I have now had my own iPad 2 for 3 weeks. I cannot believe how much it has changed my computing habits and my hardware outlook.</p>
<p>&nbsp;</p>
<p>I have found that I now use my iPad for more of my everyday computing functions than I would have imagined. Reading and responding to email, browsing the web, reading RSS feeds, Twitter, interacting with clients, and remote desktop management are now primarily the function of my iPad. I am even writing this blog post on the iPad.</p>
<p>&nbsp;</p>
<p>Up until this point, my primary tools were my 13&#8243; Powerbook connected to a 23&#8243; monitor while on my desk and my iPhone. If I went out of the office, typically my Powerbook was with me and my iPhone loaded with apps to make life easier.</p>
<p>&nbsp;</p>
<p>I have since removed many iPhone apps and relegated their use to the larger screen of the iPad. So, these are the apps that I currently use to make my digital life a little easier:</p>
<h2>Business / Productivity</h2>
<p>&nbsp;</p>
<p><a href="http://www.marketcircle.com/daylite/">Daylite</a> &#8211; Daylite by Marketcircle is a great app for the solo entrepreneur and small enterprise for tracking projects and client interaction. It syncs with my desktop, so I am keep my projects, contacts and to do&#8217;s up to date.</p>
<p>&nbsp;</p>
<p><a href="http://www.apple.com/iwork/">Apple iWork Suite</a> &#8211; Apple&#8217;s iWork suite which are available as individual apps are great tools for writing (Pages), working with spread sheets (Numbers) and presentations (Keynote).</p>
<p>&nbsp;</p>
<p><a href="http://agilewebsolutions.com/products/1Password">1 Password</a> &#8211; 1 Password is the best utility for keeping track of the many passwords and logins to the many client websites, FTP, cPanel and other information I need to have on both my desktop and remotely.</p>
<p>&nbsp;</p>
<h2>Social Media / News</h2>
<p><a href="http://reederapp.com/ipad/">Reeder for iPad</a> &#8211; the Reeder app for iPad has become my primary tool for keeping track of my Google Reader RSS feeds.</p>
<p>&nbsp;</p>
<p><a href="itms-apps://phobos.apple.com/WebObjects/MZStore.woa/wa/viewSoftware?mt=8&amp;id=333903271&amp;cc=us&amp;alreadyRedirected=1">Twitter for iPad</a> &#8211; I have found Twitter&#8217;s own app for the iPad to be a great interface for keeping up with my Twitter feed.</p>
<p>&nbsp;</p>
<h2>Other Utilities</h2>
<p><a href="http://www.teamviewer.com">TeamViewer</a> &#8211; I use TeamViewer on my clients computers in order to remotely manage their machines when necessary. The iPad app is great for basic functions when you just have to look at an issue or change a small setting. For heavier tasks, the desktop app is truly the only way to go. I recently successfully removed some malware from a clients computer remotely. This task required several restarts and the uploading of software to the client from my own machine because the malware was blocking any attempt to download or install the software required to remove it.</p>
<p>&nbsp;</p>
<p><a href="http://www.skyfire.com/en/product/ipad">Skyfire Browser</a> &#8211; Skyfire brings Flash Video to your iPad. You can finally watch The Daily Show and other video sites that refuse to accommodate the millions of iPad users out here. The only issue is that you cannot pause the video. So make sure that you are ready to watch it in full with no interruptions.</p>
<p>&nbsp;</p>
<p>There are many other apps on my iPad for entertainment and other news and information purposes. Many companies have gone through the process to deliver extremely high quality apps for their customer base. My favorite has been the NHL Game Center. During the regular season I was able to watch non blacked out games on the iPad live with my subscription. As a hockey nut, this is fantastic. They also provide tons of video highlights of games after the fact.</p>
<p>&nbsp;</p>
<p>My iPad, paired with my Verizon MiFi make for a formidable duo with regard to remote productivity. Personally, I would recommend a MiFi type unit instead of getting a bundled 3G iPad. This provides a better platform for your multiple mobile devices that both you and your family members constantly have in tow. If you want one without a long term contract, check out Virgin Mobile&#8217;s offering.</p>
<p>&nbsp;</p>
<p>So if you have been on the fence about the value of spending $500+ for an iPad, I highly recommend getting one and using it. It will surprise you with its versatility.</p>
<p>&nbsp;</p>
<p>The post <a href="http://guhru.com/living-with-an-ipad/">Living with an iPad</a> appeared first on <a href="http://guhru.com">Guhru Studio</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://guhru.com/living-with-an-ipad/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spam, spam, spam, spam, email, spam, spam and spam!</title>
		<link>http://guhru.com/spam-spam-spam-spam-email-spam-spam-and-spam/</link>
		<comments>http://guhru.com/spam-spam-spam-spam-email-spam-spam-and-spam/#comments</comments>
		<pubDate>Mon, 04 Apr 2011 14:12:36 +0000</pubDate>
		<dc:creator>Anthony Santarosa</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[Epsilon]]></category>
		<category><![CDATA[junk mail]]></category>
		<category><![CDATA[spam]]></category>

		<guid isPermaLink="false">http://www.studioten69.com/blog/?p=10</guid>
		<description><![CDATA[<p>To borrow one of the great Monty Python lines, today we are going to talk about email and spam.  In light of the recent email theft at Epsilon, the big email marketing firm, I thought I would revisit my thoughts on email and spam. &#160; First off, if you have not heard yet, Epsilon, a...  <a href="http://guhru.com/spam-spam-spam-spam-email-spam-spam-and-spam/" title="Read Spam, spam, spam, spam, email, spam, spam and spam!">Read more &#187;</a></p><p>The post <a href="http://guhru.com/spam-spam-spam-spam-email-spam-spam-and-spam/">Spam, spam, spam, spam, email, spam, spam and spam!</a> appeared first on <a href="http://guhru.com">Guhru Studio</a>.</p>]]></description>
				<content:encoded><![CDATA[<p><img src="http://guhru.com/gsresp/wp-content/uploads/2011/04/family_guy_internet-150x150.jpeg" alt="" title="family_guy_internet" width="150" height="150" class="alignleft size-thumbnail wp-image-1185" />To borrow one of the great Monty Python lines, today we are going to talk about email and spam.  In light of the recent <a href="http://techcrunch.com/2011/04/03/email-breach-at-epsilon-affects-major-brands/?utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+Techcrunch+%28TechCrunch%29">email theft at Epsilon</a>, the big email marketing firm, I thought I would revisit my thoughts on email and spam.</p>
<p>&nbsp;</p>
<p><span>First off, if you have not heard yet, Epsilon, a very large email marketing firm had been hacked last week.  So if you use a bank, shop, sleep or eat, chances are your email address was in Epsilon&#8217;s database and was compromised.  So make sure if you receive an email from one of your trusted vendors that any link from that email takes you to an actual website of their own.</span></p>
<p><span><br />
</span></p>
<p><span>Now back to spam. </span></p>
<p><span><br />
</span></p>
<p>Spam filters are wonderful things, even if they prevent me from viewing all the male organ enlargement pills that might be available to me.  However spam filters are not perfect and sometimes they send the wrong messages to the junk pile.</p>
<p>&nbsp;</p>
<p>Last fall I was attempting to look at the website of a friend of a friend.  I say attempting because the site was not viewable.  As a web designer and all around geek, I poked around to find out what the problem was.  I figured it out and determined that the problem could be easily fixed with a simple code edit.  I emailed the site owner, introducing myself as a friend of their friend, and told them about the problem.  I offered to fix the problem free of charge as a courtesy to my friend.  After all, I knew what the problem was and determined it would take a whole 30 seconds to fix if I stopped for a coffee break.</p>
<p>&nbsp;</p>
<p>I mentioned my email contact to my friend so that he would be aware if an inquiry about me arose.  A week went by, I heard nothing.  Another week, still no response.  At the end of week three, I asked my friend if his friend ever contacted him about my email.  ”Nope!”</p>
<p>&nbsp;</p>
<p>Checking the website, it was still broken.  I forwarded my original email to my friend and he forwarded it to his friend.  Finally I get a response.  They apologized and said that my email went to their junk filter.  No big deal, but how often were you checking your website?  Did you know it was not visible?</p>
<p>&nbsp;</p>
<p>I only mention this because the website was attempting to market more than $6.5 million dollars in real estate and no one could see it!  If I have that kind of inventory, I am not only checking it regularly, I want to see who came to my site, from where, and what they looked at.</p>
<p>&nbsp;</p>
<p>More recently I met a wonderful executive at a high technology company.  After their product demonstration, which was impressive, I mentioned that I had executive contacts at a couple businesses that might find their product useful.  My attempt to follow up with them to provide the contact information and introduction went unanswered.  I can only assume that my email is getting funneled to their junk mail box.</p>
<p>&nbsp;</p>
<p>I check my junk mail box regularly and find stuff that probably should not be there.</p>
<p>&nbsp;</p>
<p>Go ahead and check yours.  You may find a customer lurking in there or maybe someone who can help your business.</p>
<p><span><br />
</span></p>
<p>The post <a href="http://guhru.com/spam-spam-spam-spam-email-spam-spam-and-spam/">Spam, spam, spam, spam, email, spam, spam and spam!</a> appeared first on <a href="http://guhru.com">Guhru Studio</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://guhru.com/spam-spam-spam-spam-email-spam-spam-and-spam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
