<?xml version="1.0" encoding="iso-8859-1"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">

<channel>
<title>Jish.Lubaway.com: </title>
<link>http://jish.lubaway.com</link>
<description>Jish.Lubaway.com Recent Blog Entries</description>

<language>en-us</language>
<managingEditor>Josh@Lubaway.com (Josh Lubaway)</managingEditor>
<webMaster>Josh@Lubaway.com (Josh Lubaway)</webMaster>
<item>
<title>Stylish</title>
<link>http://jish.lubaway.com/permalink390</link>
<comments>http://jish.lubaway.com/comments390</comments>
<description><![CDATA[
<p>I've heard of Stylish before, heck I've even used it before. Still, I never really got that into it.</p>
<p>LifeHacker told me to use it to change Firefox 3's chrome. I messed around with it for a while, but changing Firefox's chrome wasn't really my cup of tea.</p>
<p>Recently, I read an article by Jon Hicks (who I've always looked up to as a web-designer). For some reason after reading his article it clicked.</p>
<p>Now I'm changing styles left and right. I can't help myself. I used to get annoyed when websites did something slightly silly, or something I didn't like. Now, I just change it! Problem solved.</p>
<p>Hi, my name is Josh, and I'm addicted to Stylish.</p>]]></description>
<dc:date>2008-12-11T10:50:53-05:00</dc:date>
</item>

<item>
<title>Apple's Orbital Free Fall</title>
<link>http://jish.lubaway.com/permalink389</link>
<comments>http://jish.lubaway.com/comments389</comments>
<description><![CDATA[
<p>Apparently Apple is being bossed around by AT&amp;T. It used to take less than three minutes to activate an iPhone from the comfort of your own home. Now, it takes more than twelve minutes, and you have to go to an AT&amp;T store to do it... lame.</p>
<p>(Airbag)</p>
<p>&lt;ThinkingOutLoud&gt;Hmmm... maybe I should make a link board so I can post random links on here. Then again, maybe I should get ruby on rails running on hostrocket first...&lt;/ThinkingOutLoud&gt;</p>]]></description>
<dc:date>2008-06-11T01:44:09-05:00</dc:date>
</item>

<item>
<title>The Downfall of U-Scan</title>
<link>http://jish.lubaway.com/permalink388</link>
<comments>http://jish.lubaway.com/comments388</comments>
<description><![CDATA[
<p>I remember when U-Scan first came out. (Ya know, the magic computer machines at grocery stores that let you check out without talking to a human.)</p>
<p>Nobody was ever in line. It was new and confusing to most people, and like other new confusing things... people avoided the U-Scan. This meant that I could bypass all of the long person-powered lines, walk right up to a machine, scan my three items, swipe my credit card, and be on my way.</p>
<p>Last summer, I actually had to wait in a line for a U-Scan once. It wasn't that bad though; everyone who used the U-Scan was an early adopting, technology embracing 18-26 year old. They moved through the U-Scan process quickly and effortlessly. Sadly, I fear the glory days of the U-Scan, have come to an end. Why?</p>
<p>Old people have overcome their fear of the U-Scan! I saw some of them in the U-Scan line yesterday. Yes, you read that correctly, the U-Scan line. One was digging for her savings club card the entire time I was in line. She was still there when I left. Holding one U-Scan machine hostage for more than ten minutes.</p>
<p>What can be done about this epidemic? Bump up the number of U-Scans per store from four to eight? Card people before they use the U-Scan? You must be this old to buy alcohol, and this young to use the U-Scan?? I don't know. I don't have all the answers.</p>]]></description>
<dc:date>2008-06-11T01:31:51-05:00</dc:date>
</item>

<item>
<title>Sweet Firefox Addon</title>
<link>http://jish.lubaway.com/permalink386</link>
<comments>http://jish.lubaway.com/comments386</comments>
<description><![CDATA[
<p>I got this in an e-mail today:</p>
<p>https://addons.mozilla.org/en-US/firefox/addon/6067</p>]]></description>
<dc:date>2008-06-08T18:39:12-05:00</dc:date>
</item>

<item>
<title>NIN Supports Torrents</title>
<link>http://jish.lubaway.com/permalink385</link>
<comments>http://jish.lubaway.com/comments385</comments>
<description><![CDATA[
<p>Wow, NIN just released their new album over BitTorrent. How cool is that? It's soo cool to see a band actually supporting technology because it's technology. I'm not usually that big into quotes, but this one is awesome:</p>
<p>In the release notes the band writes: "Now that we're no longer constrained by a record label, we've decided to personally upload Ghosts I, the first of the four volumes, to various torrent sites, because we believe BitTorrent is a revolutionary digital distribution method, and we believe in finding ways to utilize new technologies instead of fighting them."</p>
<p>Check it - via The Pirate Pay</p>]]></description>
<dc:date>2008-03-04T12:30:54-05:00</dc:date>
</item>

<item>
<title>SSH Nicknames</title>
<link>http://jish.lubaway.com/permalink384</link>
<comments>http://jish.lubaway.com/comments384</comments>
<description><![CDATA[
<p>At work, I'm constantly using ssh to connect to different servers. At home, I ssh into my iPhone (among other things), which means typing out an IP address each time I want to connect. Who wants to type out long server names or all those numbers every time? Not me.</p>
<p>I just figured out how to give ssh hosts "nicknames". If you put a file called config in the .ssh directory of your home folder (~/.ssh/config) then you can specify lots of different options for your ssh connections.</p>
<p>The options I'm interested in right now are Host and HostName. If you specify these, you can essentially give your ssh hosts nicknames. So, open up your favorite text editor and type the following:</p>
<p>
Host nickname
  HostName somereallylongservername.com

Host iphone
  HostName 192.168.1.69
</p>
<p>PS - Make sure the file is in the ~/.ssh/ directory.<p>
<p>Ok, that's great. What does giving an ssh host a "nickname" do? It saves you time when you're typing out somereallylongservername.com or an IP address numerous times each day. Essentially, it turns this:</p>
<p>
ssh user@somereallylongservername.com
ssh somebody@192.168.1.69
</p>
<p>Into this:</p>
<p>
ssh you@nick
ssh me@iphone
</p>
<p>If you feel like it, you can set the User option to save yourself even more typing (ssh x). You can also specify the type of encryption to use, and all sorts of other things. Right now, I'm only interested in HostName, but you can find out about all the other options if you RTFM  ;) Happy ssh'ing!</p>]]></description>
<dc:date>2008-03-03T03:03:42-05:00</dc:date>
</item>

<item>
<title>The Design of Everyday Things</title>
<link>http://jish.lubaway.com/permalink383</link>
<comments>http://jish.lubaway.com/comments383</comments>
<description><![CDATA[
<p>I was recommended this book by a co-worker. It seems like an interesting read, and at the low price of only four dollars on Amazon.com, I couldn't pass it up.</p>
<p>The book basically talks about... well, like the title states, "The Design of Everyday Things." Take a door for example. When you come across a door, you need to successfully accomplish one task and one task only, you need to open the door. Once it's opened, you pass through and go on with your day. However, designers everywhere seem to over complicate this very simple object.</p>
<p>Think about this: How many times have you come across a door that required an instruction manual? "Never," you may say to yourself. Think again. You do almost every day. Most doors have their instruction manual printed in large lettering and in plain view, for everyone to see.</p>
<p>The door may have a sign attached to itself that says "PUSH" or "PULL". This is the doors one word instruction manual. Don't you think society could design such a simple object in a manner that it did not require an instruction manual? So do I, and that's why I can't wait to get my hands on The Design of Everyday Things.</p> 
<p>]]></description>
<dc:date>2008-02-27T11:48:00-05:00</dc:date>
</item>

<item>
<title>Twitter</title>
<link>http://jish.lubaway.com/permalink382</link>
<comments>http://jish.lubaway.com/comments382</comments>
<description><![CDATA[
<p>What is Twitter and why do people use it?</p>
<p>As far as I can tell it's just like updating your status on facebook, but that's all it does...</p>
<p>Oh yea, speaking of facebook, what the hell is this beacon thing?</p>
<p>Wow, this post sounds angry. I promise I'm not in a bad mood or anything... it just seems like that for some reason! =o</p>
<p>PS - note to self: enable comments again sometime so people can actually answer these random questions I ask.</p>]]></description>
<dc:date>2008-02-11T00:32:54-05:00</dc:date>
</item>

<item>
<title>iPhone send-mail woes</title>
<link>http://jish.lubaway.com/permalink381</link>
<comments>http://jish.lubaway.com/comments381</comments>
<description><![CDATA[
<p>Today, I was having troubles sending e-mail from my iPhone. So, I got to work searching around for a solution. However, after verifying that I had set up my phone correctly, and browsing numerous online discussions, I was still receiving the same error:</p>
<p>Cannot send mailThe connection to the outgoing server &quot;smtp.gmail.com&quot; failed.</p>
<p>Here is an explanation of what happened, and how I remedied the situation:</p>
<p>When I composed the e-mail in question I started to type my friend's name into the &apos;to:&apos; field, like I normally do when sending an e-mail in my browser of choice. Soon, his name popped up on the screen, just as it would if I were composing the e-mail in a web browser. So, naturally, I clicked on his name, and went on my merry way composing my message.</p>
<p>After spending way too much time trying to figure out why my message would not send, I finally figured out that it used the contact stored in my iPhone, not the contact stored in my gmail contact list. The problem with that was, I did not have my friend&apos;s e-mail address stored in my iPhone contact list, only his phone number.</p>
<p>So, I went to my iPhone contact list and added his e-mail address. However, the e-mail still would not send. In the end, I actually had to delete the e-mail and re-write it again after adding his e-mail address in my iPhone contact list. Once his address was added, and I deleted and re-composed the message, it worked like a charm!</p>
<p>Yes, I know, a silly mistake. Hopefully this post can save someone out there the headache I just went through.</p>]]></description>
<dc:date>2008-01-06T22:42:07-05:00</dc:date>
</item>

<item>
<title>iPhone Friendly</title>
<link>http://jish.lubaway.com/permalink380</link>
<comments>http://jish.lubaway.com/comments380</comments>
<description><![CDATA[
<p>Well, I threw together a real quick iPhone friendly website. If you navigate to jish.lubaway.com using your handy-dandy iPhone you can check it out.</p>
<p>(or you can just go to http://jish.lubaway.com/iphone/).</p>
<p>Like I said, it's not the greatest thing in the world, but it does the trick for now. A real light weight page, and all you have to do is poke, hit the back button, and repeat. Happy surfing!</p>]]></description>
<dc:date>2008-01-03T00:03:06-05:00</dc:date>
</item>

</channel>
</rss>
