<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.feedburner.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Josh Highland's Blog</title>
	
	<link>http://joshhighland.com/blog</link>
	<description>teh interwebz</description>
	<pubDate>Mon, 01 Dec 2008 01:25:52 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/joshhighland" type="application/rss+xml" /><item>
		<title>I love my friends</title>
		<link>http://feeds.feedburner.com/~r/joshhighland/~3/470782125/</link>
		<comments>http://joshhighland.com/blog/2008/11/30/i-love-my-friends/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 01:25:52 +0000</pubDate>
		<dc:creator>Josh Highland</dc:creator>
		
		<category><![CDATA[Friends]]></category>

		<category><![CDATA[music]]></category>

		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://joshhighland.com/blog/?p=447</guid>
		<description><![CDATA[
All of these guys are really good friends of mine. I love my friends, I love music, I love the redlands music scene.
]]></description>
			<content:encoded><![CDATA[<a href="http://joshhighland.com/blog/2008/11/30/i-love-my-friends/"><em>Click here to view the embedded video.</em></a>
<p>All of these guys are really good friends of mine. I love my friends, I love music, I love the redlands music scene.</p>
]]></content:encoded>
			<wfw:commentRss>http://joshhighland.com/blog/2008/11/30/i-love-my-friends/feed/</wfw:commentRss>
		<feedburner:origLink>http://joshhighland.com/blog/2008/11/30/i-love-my-friends/</feedburner:origLink></item>
		<item>
		<title>How I do layouts and views in CodeIgniter</title>
		<link>http://feeds.feedburner.com/~r/joshhighland/~3/447965514/</link>
		<comments>http://joshhighland.com/blog/2008/11/09/how-i-do-layouts-and-views-in-codeigniter/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 03:07:53 +0000</pubDate>
		<dc:creator>Josh Highland</dc:creator>
		
		<category><![CDATA[php]]></category>

		<category><![CDATA[software]]></category>

		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://joshhighland.com/blog/?p=445</guid>
		<description><![CDATA[I have been a loyal fan of the kick-ass php framework, codeIgniter, for some time now. A while back I made a post on how to improve the view handling of codeIgniter. I would like to retract that post. Through the comments on that post I found out about an undocumented parameter (as of version [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-443 alignleft" title="codeigniter_logo" src="http://joshhighland.com/blog/wp-content/uploads/2008/11/codeigniter_logo.jpg" alt="" width="91" height="101" />I have been a loyal fan of the kick-ass php framework, codeIgniter, for some time now. A while back I made a post on <a href="http://joshhighland.com/blog/2008/04/29/improving-codeigniters-view-handling/">how to improve the view handling of codeIgniter</a>. I would like to retract that post. Through the comments on that post I found out about an undocumented parameter (as of version 1.7, it has been <a href="http://codeigniter.com/user_guide/general/views.html">documented</a>) that allows view to be rendered into a variable. This changes everything, and totally negates any of the complaint I had about how CI handles layouts and views.</p>
<p>Below is an example of live code I have running at <a href="http://loudson.gs">loudson.gs</a>. It shows how I have been able to take advantage of of this powerful third parameter that stops CI from rendering a view to the screen when loading it.</p>
<p><strong>&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;<br />
</strong><strong>Inside of my controller</strong></p>
<p>function index()<br />
{<br />
$base_url = base_url();</p>
<p>//what the nav needs<br />
$navigation_data['navTab'] = &#8220;home&#8221;;</p>
<p>//basic info for the header<br />
$layout_data['pageTitle'] = &#8220;LoudSon.gs&#8221;;<br />
$layout_data['meta_description'] = &#8220;Under Ground Lyrics, hardcore, metal, emo, rock&#8221;;<br />
$layout_data['meta_keywords'] = &#8220;lyrics,song,songs,words,hardore,metal,emo,rock&#8221;;<br />
$layout_data['meta_url'] = &#8220;$base_url&#8221;;<br />
$layout_data['meta_classification'] = &#8220;home&#8221;;<br />
$layout_data['searchInput'] = &#8220;&#8221;;<br />
$layout_data['searchOptions'] = &#8220;&#8221;;</p>
<p>$this-&gt;load-&gt;model(&#8217;search&#8217;);<br />
$lastest_albums = $this-&gt;search-&gt;last_n_albumsAdded(10);<br />
$popular_songs = $this-&gt;search-&gt;popular_n_songs(10);</p>
<p>//get the featured Albums<br />
$featuredAlbums = $this-&gt;search-&gt;getFeaturedAlbums();</p>
<p>$body_data['featured'] = $featuredAlbums;<br />
$body_data['newest'] = $lastest_albums;<br />
$body_data['popular'] = $popular_songs;</p>
<p>//load the content variables<br />
$layout_data['content_navigation'] = $this-&gt;load-&gt;view(&#8217;navigation&#8217;, $navigation_data, true);<br />
$layout_data['content_body'] = $this-&gt;load-&gt;view(&#8217;home/homePage&#8217;, $body_data, true);</p>
<p>$this-&gt;load-&gt;view(&#8217;layouts/main&#8217;, $layout_data);<br />
}</p>
<p><strong>&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;</strong><br />
<strong>/views/navigation.php</strong></p>
<p>&lt;div id=&#8221;header&#8221;&gt;<br />
&lt;h1 title=&#8221;Loud Songs Logo&#8221;&gt;LoudSongs search - hard to find obscure lyrics&lt;/h1&gt;</p>
<p>&lt;ul title=&#8221;navigation&#8221;&gt;<br />
&lt;li &lt;? if($navTab == &#8220;about&#8221;){echo &#8221; id=\&#8221;active\&#8221;";}?&gt;&gt;&lt;a href=&#8221;&lt;?= base_url(); ?&gt;about&#8221; title=&#8221;About Page&#8221;&gt;About&lt;/a&gt;&lt;/li&gt;<br />
&lt;li &lt;? if($navTab == &#8220;add&#8221;){echo &#8221; id=\&#8221;active\&#8221;";}?&gt;&gt;&lt;a href=&#8221;&lt;?= base_url(); ?&gt;add&#8221; title=&#8221;Add Lyrics&#8221;&gt;Add Lyrics&lt;/a&gt;&lt;/li&gt;<br />
&lt;li &lt;? if($navTab == &#8220;home&#8221;){echo &#8221; id=\&#8221;active\&#8221;";}?&gt;&gt;&lt;a href=&#8221;&lt;?= base_url(); ?&gt;&#8221; title=&#8221;Home Page&#8221;&gt;Home&lt;/a&gt;&lt;/li&gt;<br />
&lt;/ul&gt;<br />
&lt;/div&gt;</p>
<p><strong>&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;</strong><br />
<strong>/views/home/homePage.php</strong></p>
<p>&lt;div&gt;<br />
Thanks for visiting LoudSongs<br />
&lt;br/&gt;<br />
We are trying to build a maintain a collection of punk rock, hardcore, emo, metal and other lyrics.<br />
This website is free and open to all.<br />
Please help us by &lt;a href=&#8221;http://www.LoudSon.gs/add&#8221;&gt;contributing to the collection&lt;/a&gt;.<br />
&lt;/div&gt;</p>
<p>&lt;div&gt;<br />
&lt;? $this-&gt;load-&gt;view(&#8217;home/featuredAlbums&#8217;); ?&gt;<br />
&lt;/div&gt;</p>
<p>&lt;div class=&#8221;middle_col_split&#8221;&gt;<br />
&lt;? $this-&gt;load-&gt;view(&#8217;home/recentlyAdded&#8217;); ?&gt;<br />
&lt;/div&gt;</p>
<p>&lt;div class=&#8221;middle_col_split&#8221;&gt;<br />
&lt;? $this-&gt;load-&gt;view(&#8217;home/mostPopularSongs&#8217;); ?&gt;<br />
&lt;/div&gt;</p>
<p><strong>&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;</strong><br />
<strong>/views/layouts/main.php</strong></p>
<p>&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Strict//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&#8221;&gt;<br />
&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;meta http-equiv=&#8221;Content-Type&#8221; content=&#8221;text/html;charset=us-ascii&#8221;&gt;<br />
&lt;meta name=&#8221;description&#8221; content=&#8221;&lt;?= $meta_description ?&gt;&#8221;&gt;<br />
&lt;meta name=&#8221;keywords&#8221; content=&#8221;&lt;?= $meta_keywords ?&gt;&#8221;&gt;<br />
&lt;meta http-equiv=&#8221;expires&#8221; content=&#8221;0&#8243; /&gt;<br />
&lt;meta name=&#8221;classification&#8221; content=&#8221;&lt;?= $meta_classification ?&gt;&#8221; /&gt;<br />
&lt;meta name=&#8221;Robots&#8221; content=&#8221;index,follow&#8221;&gt;<br />
&lt;meta name=&#8221;revisit-after&#8221; content=&#8221;2 Days&#8221;&gt;<br />
&lt;meta name=&#8221;language&#8221; content=&#8221;en-us&#8221;&gt;</p>
<p>&lt;link href=&#8221;&lt;?= base_url() ?&gt;includes/styles/lyrics.css&#8221; rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; media=&#8221;screen&#8221; title=&#8221;default&#8221;&gt;</p>
<p>&lt;script language=&#8221;javascript&#8221; type=&#8221;text/javascript&#8221; src=&#8221;&lt;?= base_url() ?&gt;includes/scripts/jquery-1.2.6.min.js&#8221;&gt;&lt;/script&gt;</p>
<p>&lt;title&gt;&lt;?= $pageTitle ?&gt;&lt;/title&gt;<br />
&lt;/head&gt;</p>
<p>&lt;body id=&#8221;home&#8221;&gt;<br />
&lt;div id=&#8221;nav&#8221;&gt;<br />
&lt;?= $content_navigation; ?&gt;<br />
&lt;/div&gt;</p>
<p>&lt;div id=&#8221;middle_column&#8221;&gt;</p>
<p>&lt;?= $content_body ?&gt;</p>
<p>&lt;/div&gt;<br />
&lt;/body&gt;</p>
<p>&lt;/html&gt;</p>
<p><strong>&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;&amp;</strong></p>
<p>wow, ok, so that might be a lot to digest. The bottom line is this, CI doesnt have &#8220;layouts&#8221; like other frameworks, so you have to become creative and use a view AS a layout by using the mythical 3rd parameter when loading a view. We load data into the navigation view and store all of that into the $layout_data array, then we load a view named homePage and pass data into it, and stor it into the $layout_data array. When we are done loading all of the views into the array, we pass that array into another view. This view acts as our layout. easy as that! check it out below:</p>
<p>//load the content variables<br />
$layout_data['content_navigation'] = $this-&gt;load-&gt;view(&#8217;navigation&#8217;, $navigation_data, true);<br />
$layout_data['content_body'] = $this-&gt;load-&gt;view(&#8217;home/homePage&#8217;, $body_data, true);</p>
<p>$this-&gt;load-&gt;view(&#8217;layouts/main&#8217;, $layout_data);</p>
<p>I hope this helps someone understand how codeigniter does have layout and view functionality, you just have to structure it that way in your code.</p>
<p>post some comments if you need more clarification.</p>
]]></content:encoded>
			<wfw:commentRss>http://joshhighland.com/blog/2008/11/09/how-i-do-layouts-and-views-in-codeigniter/feed/</wfw:commentRss>
		<feedburner:origLink>http://joshhighland.com/blog/2008/11/09/how-i-do-layouts-and-views-in-codeigniter/</feedburner:origLink></item>
		<item>
		<title>Highland’s Island</title>
		<link>http://feeds.feedburner.com/~r/joshhighland/~3/441845662/</link>
		<comments>http://joshhighland.com/blog/2008/11/04/highlands-island/#comments</comments>
		<pubDate>Tue, 04 Nov 2008 08:12:34 +0000</pubDate>
		<dc:creator>Josh Highland</dc:creator>
		
		<category><![CDATA[Friends]]></category>

		<category><![CDATA[funny]]></category>

		<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://joshhighland.com/blog/?p=438</guid>
		<description><![CDATA[I love halloween. Halloween is my favorite. This year was extra special because my costume was part of a group. I have done halloween costumes with my former band, and with xFLORIDAx in the past, but this year my wife, Amy got involved.
Together we went as the cast of  &#8220;Giligan&#8217;s Island&#8221;. I was gilligan, florida [...]]]></description>
			<content:encoded><![CDATA[<p>I love halloween. Halloween is my favorite. This year was extra special because my costume was part of a group. I have done <a href="http://joshhighland.com/blog/2004/11/01/oh-i-remember-halloween/">halloween costumes with my former band</a>, and with <a href="http://joshhighland.com/blog/2006/10/29/super-mario-bros-mosh/">xFLORIDAx in the past</a>, but this year my wife, Amy got involved.</p>
<p>Together we went as the cast of  &#8220;Giligan&#8217;s Island&#8221;. I was gilligan, florida was the skipper and amy was mary ann.</p>
<p><a href="http://joshhighland.com/blog/wp-content/uploads/2008/11/highlandisland.jpg"><img class="alignnone size-full wp-image-439" title="highlands island" src="http://joshhighland.com/blog/wp-content/uploads/2008/11/highlandisland.jpg" alt="" width="400" height="479" /></a></p>
<p>We all wet to a party and had a great time there. I was actually suprised by the general lack of knowledge about Gilligan&#8217;s Island, but then again I am a geek with tons of usless knowledge in my head.</p>
<p>If you want to see more party pictures, please check out the <a href="http://flickr.com/photos/joshamyhighland/sets/72157608595534790">Halloween 2008 Photo Set on flickr</a></p>
]]></content:encoded>
			<wfw:commentRss>http://joshhighland.com/blog/2008/11/04/highlands-island/feed/</wfw:commentRss>
		<feedburner:origLink>http://joshhighland.com/blog/2008/11/04/highlands-island/</feedburner:origLink></item>
		<item>
		<title>LoudSon.gs : i </title>
		<link>http://feeds.feedburner.com/~r/joshhighland/~3/423281323/</link>
		<comments>http://joshhighland.com/blog/2008/10/16/loudsongs-i/#comments</comments>
		<pubDate>Fri, 17 Oct 2008 02:40:30 +0000</pubDate>
		<dc:creator>Josh Highland</dc:creator>
		
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://joshhighland.com/blog/?p=431</guid>
		<description><![CDATA[
LoudSon.gs is a website that I recently threw together in my attempt to tighten my strangle hold on teh interwebz (by the way, I&#8217;m losing)
LoudSon.gs is a lyrics website that focuses on hard to find album artwork and lyrics, mostly for punk, hardcore and emo bands, but the door is open for all types of [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://loudson.gs"><img class="alignnone size-full wp-image-432" title="loudsongsbanner1" src="http://joshhighland.com/blog/wp-content/uploads/2008/10/loudsongsbanner1.gif" alt="" width="468" height="60" /></a></p>
<p><a href="http://LoudSon.gs">LoudSon.gs</a> is a website that I recently threw together in my attempt to tighten my <a href="http://joshhighland.com">strangle hold</a> on teh interwebz (by the way, I&#8217;m losing)</p>
<p>LoudSon.gs is a lyrics website that focuses on hard to find album artwork and lyrics, mostly for punk, hardcore and emo bands, but the door is open for all types of music.</p>
<p>On the technical site, the site is built using PHP, MySQL, and is the first site that I have built using the <a href="http://codeigniter.com/">codeIgniter</a> framework. There is also some code integration with amazon for the album art, along with some other code wizardry.</p>
<blockquote><p>But isn&#8217;t the internet full of lyric sites already?</p></blockquote>
<p>Yeah, it is, but none of them specialize in the kind of music that speaks to me, so I built one.</p>
<p>The project started out as something personal for myself in 2004, then became part of notpopular.com in 2005. The original version lived for years at <a href="http://notPopular.com/lyrics">notPopular.com/lyrics</a>, and was build out of some really bad php code and used a really sketch database. Instead of taking it down, I allow it to live on, but all new additions get added to LoudSon.gs.</p>
<p>I also decided to do some different things with this site. In an attempt to make the domain name a bit more memorable, I bought a non .com domain, sort of like <a href="http://del.icio.us">del.icio.us</a>. For easy, and for n00bz, you can also get to the site from LoudSongs.com. I also used some SES (search engine safe) URLS. The CodeIgniter framwork made that really easy to do.</p>
<p>Overall, this was probably one if the funnest projects I have worked on in a while. It&#8217;s a real labor of love on my part. The site takes time every day to maintain, the only way I will ever mak money from the site is throught the google ads.</p>
<p>Music is a huge part of my life. You can see the &#8220;<a href="http://www.loudson.gs/about">about section</a>&#8221; of LoudSon.gs to read more about that. LoudSon.gs sums up a lot about me, code, the internet and music.</p>
<p><a href="http://loudson.gs"><img class="alignnone size-full wp-image-432" title="loudsongsbanner1" src="http://joshhighland.com/blog/wp-content/uploads/2008/10/loudsongsbanner1.gif" alt="" width="468" height="60" /><br />
</a></p>
]]></content:encoded>
			<wfw:commentRss>http://joshhighland.com/blog/2008/10/16/loudsongs-i/feed/</wfw:commentRss>
		<feedburner:origLink>http://joshhighland.com/blog/2008/10/16/loudsongs-i/</feedburner:origLink></item>
		<item>
		<title>Great Depression 2.0?</title>
		<link>http://feeds.feedburner.com/~r/joshhighland/~3/417285962/</link>
		<comments>http://joshhighland.com/blog/2008/10/10/great-depression-20/#comments</comments>
		<pubDate>Sat, 11 Oct 2008 00:04:14 +0000</pubDate>
		<dc:creator>Josh Highland</dc:creator>
		
		<category><![CDATA[Friends]]></category>

		<category><![CDATA[comic]]></category>

		<category><![CDATA[money]]></category>

		<guid isPermaLink="false">http://joshhighland.com/blog/?p=429</guid>
		<description><![CDATA[I saw this comic, and I really think it hits the nail on the head. My friend Henrik Joreteg is smart with financial type stuff and has been giving me some insight to the economic mess the world has gotten itself into&#8230; crazy stuff. Henrik has decided to start blogging about the state of the [...]]]></description>
			<content:encoded><![CDATA[<p>I saw this comic, and I really think it hits the nail on the head. My friend <a href="http://www.google.com/search?hl=en&amp;q=henrik+joreteg">Henrik Joreteg</a> is smart with financial type stuff and has been giving me some insight to the economic mess the world has gotten itself into&#8230; crazy stuff. Henrik has decided to start blogging about the state of the economy, and once he gives me the green light I will post some links to hims new site.</p>
<p>For now, enjoy the comic and LOL. (click for a larger version)</p>
<p><a href="http://joshhighland.com/blog/wp-content/uploads/2008/10/grapes_of_wrath2008.gif"><img class="alignnone size-medium wp-image-428" title="grapes_of_wrath2008" src="http://joshhighland.com/blog/wp-content/uploads/2008/10/grapes_of_wrath2008-224x300.gif" alt="" width="224" height="300" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://joshhighland.com/blog/2008/10/10/great-depression-20/feed/</wfw:commentRss>
		<feedburner:origLink>http://joshhighland.com/blog/2008/10/10/great-depression-20/</feedburner:origLink></item>
		<item>
		<title>iPhone 2.1 SMS Reminder Annoyances</title>
		<link>http://feeds.feedburner.com/~r/joshhighland/~3/413257716/</link>
		<comments>http://joshhighland.com/blog/2008/10/06/iphone-21-sms-reminder-annoyances/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 23:50:03 +0000</pubDate>
		<dc:creator>Josh Highland</dc:creator>
		
		<category><![CDATA[hardware]]></category>

		<category><![CDATA[iPhone]]></category>

		<category><![CDATA[mac]]></category>

		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://joshhighland.com/blog/?p=423</guid>
		<description><![CDATA[
There was a new feature introduced with the iPhone 2.1 firmware update that is driving me crazy and making me curse apple an my iPhone daily. I am talking about the SMS multi reminder.
The SMS multi reminder is designed to notify you with an alert if you have an unread SMS (text) message. Sounds good [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://joshhighland.com/blog/wp-content/uploads/2008/10/smsreminder.jpg"><img class="alignnone size-full wp-image-424" title="iphone sms reminder" src="http://joshhighland.com/blog/wp-content/uploads/2008/10/smsreminder.jpg" alt="" width="400" height="300" /></a></p>
<p>There was a new feature introduced with the iPhone 2.1 firmware update that is driving me crazy and making me curse apple an <a href="http://joshhighland.com/blog/category/iphone/">my iPhone</a> daily. I am talking about the <strong>SMS multi reminder</strong>.</p>
<p>The SMS multi reminder is designed to notify you with an alert if you have an unread SMS (text) message. Sounds good in theory, but trust me, it horrible in practice.</p>
<p>When you receive a new SMS message to your iPhone, the first few lines are displayed in what I can best describe as a pop up box. Often if the message is short, &#8220;hey I&#8217;m running late&#8221;, you see the entire message. This is where the trouble lies. If you get an SMS message and you don&#8217;t unlock the phone, open the SMS app, then open the specific SMS thread, the iPhone thinks you haven&#8217;t gotten the message, so it will remind you 5 minutes later, and 10 minutes later that you have an unread message, for a total of 3 alerts in 10 minutes for a message you might have already seen.</p>
<p><em>Example of why this is annoying:</em><br />
I&#8217;m sitting here working on my blog, &#8220;PING!&#8221;, ah I have a new SMS message on my iPhone, the screen is lit up and the preview box is showing. &#8220;From TWITTER: xFLORIDAx - I look like a shaved ape&#8221;. Ok, no response needed, I set my phone down. 5 minutes later &#8220;PING!&#8221; ah! I must have a new SMS message&#8230; strange my screen isnt lit up, turn on the screen. no new SMS messages, weird. 5 minutes after that, &#8220;PING!&#8221;&#8230;. so in 10 minutes, I have been alerted 3 times for a message I have already read. ANNOYING! I don&#8217;t want to unlock my phone for every little message that is sent to me.</p>
<p>I understand how this could be useful for someone who gets 1-5 text message a day&#8230; I average over 200 a day. Most messages come from <a href="http://twitter.com/joshhighland">twitter</a> and don&#8217;t require a response. I would disable the multi reminder if I could, but apple doesn&#8217;t allow you to change the setting for it. It&#8217;s just on, like it or not. The only way to prevent the SMS multi reminder is to disable text notifications all together, and I&#8217;m not going to do that. I like getting one and only one notification when I get a new message.</p>
<p>If im in a meeting, should my pocket buzz 6 times in 20 minutes to let me know I have 2 text messages? GTFO! I should only be notified two times.</p>
<p>I really hope that Apple allows people to turn the SMS multi reminder on and off in the next update. I can&#8217;t imagine it&#8217;s to hard to do.</p>
]]></content:encoded>
			<wfw:commentRss>http://joshhighland.com/blog/2008/10/06/iphone-21-sms-reminder-annoyances/feed/</wfw:commentRss>
		<feedburner:origLink>http://joshhighland.com/blog/2008/10/06/iphone-21-sms-reminder-annoyances/</feedburner:origLink></item>
		<item>
		<title>Auto Suggested?</title>
		<link>http://feeds.feedburner.com/~r/joshhighland/~3/409611402/</link>
		<comments>http://joshhighland.com/blog/2008/10/02/auto-suggested/#comments</comments>
		<pubDate>Thu, 02 Oct 2008 20:53:45 +0000</pubDate>
		<dc:creator>Josh Highland</dc:creator>
		
		<category><![CDATA[Friends]]></category>

		<category><![CDATA[geek]]></category>

		<category><![CDATA[internet]]></category>

		<category><![CDATA[personal]]></category>

		<category><![CDATA[web 2.0]]></category>

		<guid isPermaLink="false">http://joshhighland.com/blog/?p=420</guid>
		<description><![CDATA[
My friend Kalen Gibbons pointed this out. Insanity if you ask me.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://joshhighland.com/blog/wp-content/uploads/2008/10/autosuggest2.gif"><img class="alignnone size-full wp-image-419" title="autosuggest2" src="http://joshhighland.com/blog/wp-content/uploads/2008/10/autosuggest2.gif" alt="" width="458" height="196" /></a></p>
<p>My friend <a href="http://www.kalengibbons.com/">Kalen Gibbons</a> pointed this out. Insanity if you ask me.</p>
]]></content:encoded>
			<wfw:commentRss>http://joshhighland.com/blog/2008/10/02/auto-suggested/feed/</wfw:commentRss>
		<feedburner:origLink>http://joshhighland.com/blog/2008/10/02/auto-suggested/</feedburner:origLink></item>
		<item>
		<title>29 And Doing Fine</title>
		<link>http://feeds.feedburner.com/~r/joshhighland/~3/408612168/</link>
		<comments>http://joshhighland.com/blog/2008/10/01/29-and-doing-fine/#comments</comments>
		<pubDate>Wed, 01 Oct 2008 21:01:12 +0000</pubDate>
		<dc:creator>Josh Highland</dc:creator>
		
		<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://joshhighland.com/blog/?p=401</guid>
		<description><![CDATA[
My birthday is September 25th, I just turned 29 years old. I don&#8217;t feel 29 years old.
My good friend Eric Raj has connections over at the E! television network. For a birthday present, he arranged for us to go see our favorite E! show being taped, The Soup.

To celebrate my 29th, I took a half [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://joshhighland.com/blog/wp-content/uploads/2008/10/305-happy_birthday_balloon.jpg"><img class="alignnone size-medium wp-image-413" title="305-happy_birthday_balloon" src="http://joshhighland.com/blog/wp-content/uploads/2008/10/305-happy_birthday_balloon-300x300.jpg" alt="" width="300" height="300" /></a></p>
<p>My birthday is September 25th, I just turned 29 years old. I don&#8217;t feel 29 years old.</p>
<p>My good friend Eric Raj has connections over at the E! television network. For a birthday present, he arranged for us to go see our favorite E! show being taped, The Soup.</p>
<p><a href="http://joshhighland.com/blog/wp-content/uploads/2008/10/425soupbimbos041608.jpg"><img class="alignnone size-medium wp-image-412" title="425soupbimbos041608" src="http://joshhighland.com/blog/wp-content/uploads/2008/10/425soupbimbos041608-300x222.jpg" alt="" width="300" height="222" /></a></p>
<p>To celebrate my 29th, I took a half day off of work and hung out with my wife. The E! channel is in Los Angeles, so we headed down there early to beat traffic. We hung out on Melrose for a while, didn&#8217;t buy anything. After shopping we ate vegan hot dogs and drank cokes at the world famous pinks.</p>
<p><a href="http://joshhighland.com/blog/wp-content/uploads/2008/10/img_0246.jpg"><img class="alignnone size-medium wp-image-410" title="img_0246" src="http://joshhighland.com/blog/wp-content/uploads/2008/10/img_0246-300x231.jpg" alt="" width="300" height="231" /></a></p>
<p><a href="http://joshhighland.com/blog/wp-content/uploads/2008/10/dsc02394.jpg"><img class="alignnone size-medium wp-image-404" title="dsc02394" src="http://joshhighland.com/blog/wp-content/uploads/2008/10/dsc02394-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p><a href="http://joshhighland.com/blog/wp-content/uploads/2008/10/img_0247.jpg"><img class="alignnone size-medium wp-image-403" title="Vegan Hot Dogs" src="http://joshhighland.com/blog/wp-content/uploads/2008/10/img_0247-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>We got to the E! studios about an hour early, so we hung out and walked around. I was blown away that the channel G4 and E! are in the same building. I love G4 even though it has been going down hill for years. I would love to be a host on x-play or attack of the show, or heck, even have my own show! I looked high and low for Olivia Mund, but came up empty.</p>
<p><a href="http://joshhighland.com/blog/wp-content/uploads/2008/10/dsc02402.jpg"><img class="alignnone size-medium wp-image-406" title="dsc02402" src="http://joshhighland.com/blog/wp-content/uploads/2008/10/dsc02402-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p><a href="http://joshhighland.com/blog/wp-content/uploads/2008/10/dsc02400.jpg"><img class="alignnone size-medium wp-image-405" title="dsc02400" src="http://joshhighland.com/blog/wp-content/uploads/2008/10/dsc02400-225x300.jpg" alt="" width="225" height="300" /></a></p>
<p>Finally one of the Soup staff members came into the waiting area and told us that the crew was having difficulties, and it would be another hour. We waited patiently, and our patience paid off! Joel McHale, the host of The Soup came out and hung out with everyone. It was awesome watching him make fun a a drunk guy and his wife to their faces, and not have them realize it because they were so star struck/drunk. The drunk dude took our picture with Joel though.</p>
<p><a href="http://joshhighland.com/blog/wp-content/uploads/2008/10/dsc02404.jpg"><img class="alignnone size-medium wp-image-407" title="dsc02404" src="http://joshhighland.com/blog/wp-content/uploads/2008/10/dsc02404-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>I talked to Joel about how our dogs, Moose and Samson are friends with the producers dog, Lou, on myspace. It was a totally random conversation. Amy and I were both bummed out when we found out that Lou wasn&#8217;t going to be on the set for our taping. Amy had plans to steal him away when no one was looking. It was going to be the perfect crime.</p>
<p><a href="http://joshhighland.com/blog/wp-content/uploads/2008/10/425mchalelou050508.jpg"><img class="alignnone size-medium wp-image-411" title="425mchalelou050508" src="http://joshhighland.com/blog/wp-content/uploads/2008/10/425mchalelou050508-300x222.jpg" alt="" width="300" height="222" /></a></p>
<p>They finally let us in and the taping began. It reminded me a lot of how Florida and I record the <a href="http://notpopular.com/podcast">notpop podcast</a>. They didn&#8217;t really stop unless something really went wrong. That made recording the 20 minute show take only about an hour to film.</p>
<p><a href="http://joshhighland.com/blog/wp-content/uploads/2008/10/dsc02414.jpg"><img class="alignnone size-medium wp-image-409" title="dsc02414" src="http://joshhighland.com/blog/wp-content/uploads/2008/10/dsc02414-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>Over all we had a great time, and I look forward to doing it again if we get the chance. Maybe the next time that I go back to the studio, it will be for a show on G4. ha!</p>
<p>I don&#8217;t look 29&#8230; do I?</p>
<p><a href="http://joshhighland.com/blog/wp-content/uploads/2008/10/dsc02410.jpg"><img class="alignnone size-medium wp-image-408" title="dsc02410" src="http://joshhighland.com/blog/wp-content/uploads/2008/10/dsc02410-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>Thank you Eric Raj for the rad birthday present!</p>
]]></content:encoded>
			<wfw:commentRss>http://joshhighland.com/blog/2008/10/01/29-and-doing-fine/feed/</wfw:commentRss>
		<feedburner:origLink>http://joshhighland.com/blog/2008/10/01/29-and-doing-fine/</feedburner:origLink></item>
		<item>
		<title>more blogging is required</title>
		<link>http://feeds.feedburner.com/~r/joshhighland/~3/400353846/</link>
		<comments>http://joshhighland.com/blog/2008/09/22/more-blogging-is-required/#comments</comments>
		<pubDate>Tue, 23 Sep 2008 02:17:11 +0000</pubDate>
		<dc:creator>Josh Highland</dc:creator>
		
		<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://joshhighland.com/blog/?p=394</guid>
		<description><![CDATA[
Dear blog,
I have been very busy lately trying to get my new business launched and off the ground. In the last few months I have not been spending as much time with you as I should be. Please let me apologize. You have been there for me for the last 4+ years now (my how [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-395" title="the-computer-demands-a-blog" src="http://joshhighland.com/blog/wp-content/uploads/2008/09/the-computer-demands-a-blog.gif" alt="" width="436" height="316" /></p>
<p>Dear blog,</p>
<p>I have been very busy lately trying to get my <a href="http://www.HoldFastHair.com">new business</a> launched and off the ground. In the last few months I have not been spending as much time with you as I should be. Please let me apologize. You have been there for me for the last <a href="http://joshhighland.com/blog/2004/09/">4+ years now</a> (my how time flies). There is a lot of topics that I am planning to blog about very soon. Here is a short list:</p>
<ul>
<li>My new lyrics site <a href="http://LoudSon.gs">LoudSon.gs</a></li>
<li>My trip to <a href="http://mindshare.la/">mind share</a> in LA last month</li>
<li><a href="http://www.adagio.com/">Adagio Teas</a></li>
<li>My theory on how <a href="http://www.mcapozzolijr.com/pictures/gdoo.jpg">Glen Danzig</a> is the Elvis of punk rock</li>
<li>How <a href="http://twitter.com/JoshHighland">twitter</a> is awesome and I am obsessed with it</li>
<li>How my wii is fun (and in violation of the <a href="http://en.wikipedia.org/wiki/Dmca">DMCA</a> now)</li>
</ul>
<p>I will get to these blogs, and more like them very shortly. Again, I apologize for your neglect and lack of updates. Who knows, I may just give you an entire makeover and a new theme! Only time will tell my friend.</p>
<p>Yours truly,<br />
Josh Highland</p>
]]></content:encoded>
			<wfw:commentRss>http://joshhighland.com/blog/2008/09/22/more-blogging-is-required/feed/</wfw:commentRss>
		<feedburner:origLink>http://joshhighland.com/blog/2008/09/22/more-blogging-is-required/</feedburner:origLink></item>
		<item>
		<title>Hold Fast Pomade - Another Josh Highland Company</title>
		<link>http://feeds.feedburner.com/~r/joshhighland/~3/396766749/</link>
		<comments>http://joshhighland.com/blog/2008/09/18/hold-fast-pomade-another-josh-highland-company/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 01:51:41 +0000</pubDate>
		<dc:creator>Josh Highland</dc:creator>
		
		<category><![CDATA[Friends]]></category>

		<category><![CDATA[money]]></category>

		<category><![CDATA[personal]]></category>

		<guid isPermaLink="false">http://joshhighland.com/blog/?p=386</guid>
		<description><![CDATA[
In high school, my physics teacher/computer mentor told me something that stuck with me, &#8220;Josh, one day you are going to make a million dollars, or serve a million days in prison&#8221;. He of course was talking about my computer activities, but I think it still applies in this situation.
I have started another new business! [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://joshhighland.com/blog/wp-content/uploads/2008/09/holdfastlogo_400.jpg"><img class="alignnone size-full wp-image-389" title="holdfastlogo_400" src="http://joshhighland.com/blog/wp-content/uploads/2008/09/holdfastlogo_400.jpg" alt="" width="400" height="400" /></a></p>
<p>In high school, my physics teacher/computer mentor told me something that stuck with me, &#8220;Josh, one day you are going to make a million dollars, or serve a million days in prison&#8221;. He of course was talking about my computer activities, but I think it still applies in this situation.</p>
<p>I have started another new business! Unlike my <a href="http://notpopular.com">pervious envevors</a>, this one has a business model, and tangible items for sale. I have developed and started to sell my own brand of pomade for men! &#8220;pomade, you mean hair grease?&#8221; That&#8217;s exactly what I mean!</p>
<p><a href="http://holdfasthair.com">Hold Fast Premium Water Based Pomade</a></p>
<p>So here is the story&#8230;.</p>
<p>My good friend, <a href="http://www.myspace.com/kidridiculous1981">Dylan Johnson</a> is a classically trained barber (straight razor shaves and all that). I have been going to him for years to get my hair cut. Over all, I have been using pomade in my hair for almost 6 years now.</p>
<p>I&#8217;ve tried <a href="http://men.style.com/images/upgrader/style/products/hair-stuff/murrays-superior-hair_h.jpg">Murray&#8217;s</a> and other petroleum based pomades. They gave me acne, got on my clothes and my pillow, and most of all they were very hard to wash out of my hair. Water based pomades are the alternative, they don&#8217;t give you acne and they wash out with just water.</p>
<p>Clubman made an awesome water based pomade that I loved, but they stopped making it. In response to that, other water based pomades came out, and I used them. I thought they were okay at best. I didn&#8217;t like the smell of most of them, or how they would dry out and become stiff like gel as the day went on.</p>
<p>Upset by the hair products and some other situations in my life, I grew my hair out for 2 years. Once I realized I looked stupid with long hair, I went to Dylan and had him make me look like a man again.</p>
<p><a href="http://joshhighland.com/blog/wp-content/uploads/2008/09/reinventingthesteel.jpg"><img class="alignnone size-medium wp-image-388" title="reinventingthesteel" src="http://joshhighland.com/blog/wp-content/uploads/2008/09/reinventingthesteel-300x191.jpg" alt="" width="300" height="191" /></a></p>
<p>With short hair once again, I was back using pomade. I was really disappointed with my pomade options, so I started sampling various water based pomades again, to try to find the one I really liked. In every pomade I tired, there was something that I liked, and something that I hated.</p>
<p>Over time I became so frustrated by the lack of options, that I decided to take the best parts of the various pomades I had tried and create my own premium pomade.</p>
<p>I hired some scientists to create a pomade with the qualities and scent that I wanted (I wish I knew how to cook this stuff in my bathtub!)</p>
<p>After a year of research and tons of samples, I found what i believe to be the winning formula.</p>
<p><em>A few of the highlights:</em></p>
<ul>
<li>It smells good (slight citrus scent)</li>
<li>Holds your hair all day</li>
<li>Stays soft and comb-able</li>
<li>Washes out with water</li>
<li>Contains proteins and vitamins (its good for your hair!)</li>
</ul>
<p>The packaging art and design are original works by the legendary <a href="http://myspace.com/davequiggle">Dave Quiggle</a></p>
<p>It&#8217;s a gamble, but I&#8217;m very happy and proud of my product.</p>
<p>I really don&#8217;t care if I don&#8217;t sell a single jar of my pomade, I&#8217;m just happy that I have a hair product to use that has all the qualities that I want. Maybe some other people will will feel the same way about it and buy a few.</p>
<p>That&#8217;s the story of Hold Fast Pomade.  Pick some up, try it out.,,, I need a new computer, and a house <img src='http://joshhighland.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<a href="http://holdfasthair.com"><img class="alignnone size-full wp-image-387" title="banner1" src="http://joshhighland.com/blog/wp-content/uploads/2008/09/banner1.gif" alt="" width="468" height="60" /></a></p>
<p><a href="http://www.HoldFastHair.com">http://www.HoldFastHair.com<br />
http://www.HoldFastHair.com<br />
http://www.HoldFastHair.com<br />
http://www.HoldFastHair.com<br />
http://www.HoldFastHair.com<br />
http://www.HoldFastHair.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://joshhighland.com/blog/2008/09/18/hold-fast-pomade-another-josh-highland-company/feed/</wfw:commentRss>
		<feedburner:origLink>http://joshhighland.com/blog/2008/09/18/hold-fast-pomade-another-josh-highland-company/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic Page Served (once) in 0.846 seconds --><!-- Cached page served by WP-Cache -->
