<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" xml:lang="en" xml:base="http://www.jaygeiger.com/wp-atom.php">
	<title type="text">Geiger</title>
	<subtitle type="text">Geiger, you don't know me! (Yet)</subtitle>

	<updated>2009-10-29T14:10:09Z</updated>
	<generator uri="http://wordpress.org/" version="2.8.2">WordPress</generator>

	<link rel="alternate" type="text/html" href="http://www.jaygeiger.com" />
	<id>http://www.jaygeiger.com/index.php/feed/atom/</id>
	

			<link rel="self" href="http://feeds.feedburner.com/jaygeiger" type="application/atom+xml" /><feedburner:emailServiceId>jaygeiger</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><entry>
		<author>
			<name>Jason Geiger</name>
						<uri>http://www.jaygeiger.com</uri>
					</author>
		<title type="html"><![CDATA[Debug WebOS Application]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/jaygeiger/~3/vjTH7m4pTdE/" />
		<id>http://www.jaygeiger.com/index.php/2009/10/07/debug-webos-application/</id>
		<updated>2009-10-29T14:10:09Z</updated>
		<published>2009-10-07T13:54:05Z</published>
		<category scheme="http://www.jaygeiger.com" term="Uncategorized" />		<summary type="html"><![CDATA[My posts have been lax.  NO APOLOGIES!  I’ve been spending my free time developing my Cell Stalker app for the Palm Pre and Palm Pixi. (Palm WebOS)
Compared to developing a .Net appliction, developing for WebOS is a real pain.  It is Javascript and HTML however, there is no “Intellisense”, “Easy Debugging”, “Syntax Checker” or “Accurate [...]]]></summary>
		<content type="html" xml:base="http://www.jaygeiger.com/index.php/2009/10/07/debug-webos-application/">&lt;p&gt;My posts have been lax.  NO APOLOGIES!  I’ve been spending my free time developing my Cell Stalker app for the Palm Pre and Palm Pixi. (Palm WebOS)&lt;/p&gt;
&lt;p&gt;Compared to developing a .Net appliction, developing for WebOS is a real pain.  It is Javascript and HTML however, there is no “Intellisense”, “Easy Debugging”, “Syntax Checker” or “Accurate Warning/Errors”.&lt;/p&gt;
&lt;p&gt;With that being said, let me show you how to debug and WebOS and how to find WebOS Javascript Errors.&lt;/p&gt;
&lt;p&gt;As always you first need…&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href="http://java.com/en/"&gt;Java 6&lt;/a&gt; (if you don’t already)&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.virtualbox.org/"&gt;Sun VirtualBox&lt;/a&gt; (This is where you run the Palm phone emulator on your PC)&lt;/li&gt;
&lt;li&gt;&lt;a href="https://developer.palm.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=1788"&gt;WebOS SDK&lt;/a&gt; (This is basically the virtual machine, application packager and a few more tools)&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;I don’t use Eclipse to program, I’ve been using Komodo Edit.  I like Komodo Edit because it’s MUCH smaller and quicker than Eclipse.&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href="http://www.activestate.com/komodo_edit/"&gt;Komodo Edit&lt;/a&gt; (The IDE, the place where you type your code)&lt;/li&gt;
&lt;li&gt;&lt;a href="http://webos.templarian.com/komodo/"&gt;Komodo Edit WebOS tools&lt;/a&gt; (This allows you to compile and run your program with the push of a button.  It also has “Some” syntax checking.)&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;After ALL of that is installed, you create a new application.  You should be able to run it in the emulator and get a test screen.  Now if you want to debug it, or catch errors you need to use a tool called Putty that got installed with the SDK.&lt;/p&gt;
&lt;p&gt;When your WebOS emulator/virtual machine is running go to a command prompt (or click Start –&amp;gt; Run) and run the following…&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;putty -ssh -P 5522 localhost -l root -pw &amp;#8221;&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;This connects you to the linux machine running on your virtual phone.  Then to debug javascript or trap javascript errors type…&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;debug&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;To add a point where you want to stop the program type…&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;break /var/usr/palm/applications/com.YourCompany.YourAppName/app/assistants/first-assistant.js:100&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;This will pause the application named “com.YourCompany.YourAppName” when it hits line 100 in the “first-assistant.js” file.&lt;/p&gt;
&lt;p&gt;When it’s paused you can type things like…&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;print Variable1&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;This will print the contents of Variable1 (Up to the first 80 characters, if somebody knows how to print more, comment here, I’d love to know).&lt;/p&gt;
&lt;p&gt;You can then type&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;c&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;To continue.&lt;/p&gt;
&lt;p&gt;or…&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;clear 1&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;To clear the first break point.&lt;/p&gt;
&lt;p&gt;Type&lt;/p&gt;
&lt;blockquote&gt;&lt;p&gt;finish&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;to finish off the application.&lt;/p&gt;
&lt;p&gt;I couldn’t find an example of how to debug out there, so I hope this helps at least one person.&lt;/p&gt;
&lt;p&gt;For more debugging commands check out &lt;a href="http://developer.palm.com/index.php?option=com_content&amp;amp;view=article&amp;amp;id=1672"&gt;Palm Debugger Commands&lt;/a&gt;.&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/jaygeiger/~4/vjTH7m4pTdE" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.jaygeiger.com/index.php/2009/10/07/debug-webos-application/#comments" thr:count="5" />
		<link rel="replies" type="application/atom+xml" href="http://www.jaygeiger.com/index.php/2009/10/07/debug-webos-application/feed/atom/" thr:count="5" />
		<thr:total>5</thr:total>
	<feedburner:origLink>http://www.jaygeiger.com/index.php/2009/10/07/debug-webos-application/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Jason Geiger</name>
						<uri>http://www.jaygeiger.com</uri>
					</author>
		<title type="html"><![CDATA[Cell Phone Finder Application]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/jaygeiger/~3/Y9tsECO9etM/" />
		<id>http://www.jaygeiger.com/index.php/2009/09/21/cell-phone-finder-application/</id>
		<updated>2009-09-21T18:53:19Z</updated>
		<published>2009-09-21T18:53:19Z</published>
		<category scheme="http://www.jaygeiger.com" term="Uncategorized" />		<summary type="html"><![CDATA[My 3rd Palm Pre app is a cult success!&#160; I say “Cult” because it is not in the app store yet.
However in less than 4 days, the app is in use by nearly 1,000 “ACTIVE” people with almost 3,000 people trying it out.
The application is a cell phone finder playfully named Cell Stalker.
The ALPHA (This [...]]]></summary>
		<content type="html" xml:base="http://www.jaygeiger.com/index.php/2009/09/21/cell-phone-finder-application/">&lt;p&gt;My 3rd Palm Pre app is a cult success!&amp;#160; I say “Cult” because it is not in the app store yet.&lt;/p&gt;
&lt;p&gt;However in less than 4 days, the app is in use by nearly 1,000 “ACTIVE” people with almost 3,000 people trying it out.&lt;/p&gt;
&lt;p&gt;The application is a cell phone finder playfully named &lt;a href="http://www.cellstalker.com"&gt;Cell Stalker&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The ALPHA (This isn’t even in BETA yet) trial version can be downloaded &lt;a href="http://www.precentral.net/homebrew-apps/cell-stalker"&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The app works by updating your GPS location every 10 minutes.&amp;#160; Most of the time, the result is PRETTY darn accurate.&lt;/p&gt;
&lt;p&gt;How much this app will cost will remain to seen, if I got creative with the monetization, I would even think about giving this away for free.&amp;#160; Obviously, I need to make money somehow.&amp;#160; I would prefer to sell it cheap and have a very reasonable monthly maintenance fee.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.jaygeiger.com/wp-content/uploads/2009/09/image.png"&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Phone Locator" border="0" alt="Phone Locator" src="http://www.jaygeiger.com/wp-content/uploads/2009/09/image_thumb.png" width="324" height="484" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/jaygeiger/~4/Y9tsECO9etM" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.jaygeiger.com/index.php/2009/09/21/cell-phone-finder-application/#comments" thr:count="2" />
		<link rel="replies" type="application/atom+xml" href="http://www.jaygeiger.com/index.php/2009/09/21/cell-phone-finder-application/feed/atom/" thr:count="2" />
		<thr:total>2</thr:total>
	<feedburner:origLink>http://www.jaygeiger.com/index.php/2009/09/21/cell-phone-finder-application/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Jason Geiger</name>
						<uri>http://www.jaygeiger.com</uri>
					</author>
		<title type="html"><![CDATA[The Future of SPAM]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/jaygeiger/~3/gwExVPMEs4I/" />
		<id>http://www.jaygeiger.com/index.php/2009/08/21/the-future-of-spam/</id>
		<updated>2009-08-21T14:12:34Z</updated>
		<published>2009-08-21T14:12:34Z</published>
		<category scheme="http://www.jaygeiger.com" term="Uncategorized" />		<summary type="html"><![CDATA[Before the internet, their was junk mail.&#160; This was a blatant waste of trees but only the environment had hurt feelings.
Then came the digital revolution and with email came offers for little blue pills and various “reducers” and “enlargers”.&#160; This is still a problem but is mostly solved if you have a good SPAM filter.
Next [...]]]></summary>
		<content type="html" xml:base="http://www.jaygeiger.com/index.php/2009/08/21/the-future-of-spam/">&lt;p&gt;&lt;img style="margin: 5px 10px 10px 0px; display: inline" title="Old Spam" alt="Old Spam" align="left" src="http://3.bp.blogspot.com/_MrnkouPo08I/SbMmyl_LthI/AAAAAAAAAhw/ZgqmgKIswek/s400/Canned+Meat+(3).JPG" /&gt;Before the internet, their was junk mail.&amp;#160; This was a blatant waste of trees but only the environment had hurt feelings.&lt;/p&gt;
&lt;p&gt;Then came the digital revolution and with email came offers for little blue pills and various “reducers” and “enlargers”.&amp;#160; This is still a problem but is mostly solved if you have a good SPAM filter.&lt;/p&gt;
&lt;p&gt;Next came SPAM sites.&amp;#160; They are the web version of infomercials.&amp;#160; ACT NOW, LIMITED QUANTITIES.&amp;#160; Almost always they have one price slashed and another right next to it.&amp;#160; &lt;strike&gt;$199.89&lt;/strike&gt; &lt;strong&gt;$89&lt;/strong&gt;&amp;#160; These search engines brought these people easily targeted traffic at nearly no cost.&lt;/p&gt;
&lt;p&gt;Next, after smarter search engines, came Review Sites.&amp;#160; SPAM was evolving.&amp;#160; Like in so many horror movies, the beast was getting smarter.&amp;#160; People’s SPAM-eye needed to evolve too.&amp;#160; SPAM moved away from the organic search engine results into paid ads.&amp;#160; It was more expensive, but guaranteed spam viewers.&lt;/p&gt;
&lt;p&gt;Following that, HYBRID-SPAM sprouted in the form of FLOGs.&amp;#160; A FLOG is a fake blog.&amp;#160; The fake blog is usually devoted to a niche where there will always be products.&amp;#160; RINGTONES, MAKE MONEY ONLINE, WEIGHT LOSS, etc..&amp;#160; These used a mix of organic, paid ads and social sites (Facebook, MySpace).&amp;#160; They tried to look as legitimate as possible.&amp;#160; They were filled with fake comments from completely happy people.&lt;/p&gt;
&lt;p&gt;The Googles of the world are fast working to minimize FLOGs.&amp;#160; There may even be laws coming out to make them illegal.&lt;/p&gt;
&lt;p&gt;Now what is SPAM to do?&amp;#160; Will SPAM die a spicy death?&lt;/p&gt;
&lt;p&gt;Think not. SPAM has evolved once again!&amp;#160; SPAM has now infected popular REAL blogs.&lt;/p&gt;
&lt;p&gt;If you publicly sell paid ads, Google will block your site.&amp;#160; If you do it privately though, they don’t care.&lt;/p&gt;
&lt;p&gt;So SPAM get’s you addicted to certain blogs by going against its nature.&amp;#160; It does this by actually being worthwhile.&amp;#160; Insightful, funny, witty and interesting.&amp;#160; This is SPAM’s new candy coated outer shell.&amp;#160; Inside? SPAM.&amp;#160; Good blogs are realizing there is way too much money out there to sit on your good blog.&lt;/p&gt;
&lt;p&gt;It starts out just a little bit.&amp;#160; 1 privately paid post perhaps.&amp;#160; Something that wasn’t advertised but a deal made in the dark.&amp;#160; Then maybe a second.&amp;#160; A favorable review of a product the author will never actually use.&amp;#160; Then BAM.&amp;#160; All of a sudden, at best, you have half&amp;amp;half of real blog and SPAM.&amp;#160; Not quite a SPLOG or FLOG, but definitely not a goody hippie co-op of great articles either.&lt;/p&gt;
&lt;p&gt;SPAM is growing and evolving.&amp;#160; Where to next?&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/jaygeiger/~4/gwExVPMEs4I" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.jaygeiger.com/index.php/2009/08/21/the-future-of-spam/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.jaygeiger.com/index.php/2009/08/21/the-future-of-spam/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.jaygeiger.com/index.php/2009/08/21/the-future-of-spam/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Jason Geiger</name>
						<uri>http://www.jaygeiger.com</uri>
					</author>
		<title type="html"><![CDATA[Palm Pre &#8211; BAC Calculator]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/jaygeiger/~3/-AKML16u3bU/" />
		<id>http://www.jaygeiger.com/index.php/2009/08/10/palm-pre-bac-calculator/</id>
		<updated>2009-08-13T19:59:26Z</updated>
		<published>2009-08-10T15:03:18Z</published>
		<category scheme="http://www.jaygeiger.com" term="Uncategorized" />		<summary type="html"><![CDATA[I just got done with my first app for the Palm Pre.&#160; It’s a simple BAC (Blood Alcohol Calculator)
You select you sex, type of drink, weight and number of hours drinking and it estimates your BAC.&#160; Obviously, this is just for fun as you shouldn’t trust a free piece of software to judge if you [...]]]></summary>
		<content type="html" xml:base="http://www.jaygeiger.com/index.php/2009/08/10/palm-pre-bac-calculator/">&lt;p&gt;I just got done with my first app for the Palm Pre.&amp;#160; It’s a simple BAC (Blood Alcohol Calculator)&lt;/p&gt;
&lt;p&gt;You select you sex, type of drink, weight and number of hours drinking and it estimates your BAC.&amp;#160; Obviously, this is just for fun as you shouldn’t trust a free piece of software to judge if you should be driving.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.jaygeiger.com/wp-content/uploads/2009/08/image.png"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://www.jaygeiger.com/wp-content/uploads/2009/08/image_thumb.png" width="164" height="244" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;DOWNLOAD THE &lt;a href="http://www.precentral.net/homebrew-apps/bac-calculator" target="_blank"&gt;Palm Pre BAC Calculator&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;If you need instructions on how to install this test software, check out this &lt;a href="http://www.precentral.net/how-to-install-homebrew-apps" target="_blank"&gt;Palm Pre Homebrew Install&lt;/a&gt; link.&lt;/p&gt;
&lt;p&gt;UPDATE: The app has been updated.&amp;#160; Here’s the new screenshot.&lt;/p&gt;
&lt;p&gt;&lt;img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="Palm Pre BAC" border="0" alt="Palm Pre BAC" src="http://www.jaygeiger.com/wp-content/uploads/2009/08/bacss.png" width="324" height="484" /&gt;&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/jaygeiger/~4/-AKML16u3bU" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.jaygeiger.com/index.php/2009/08/10/palm-pre-bac-calculator/#comments" thr:count="3" />
		<link rel="replies" type="application/atom+xml" href="http://www.jaygeiger.com/index.php/2009/08/10/palm-pre-bac-calculator/feed/atom/" thr:count="3" />
		<thr:total>3</thr:total>
	<feedburner:origLink>http://www.jaygeiger.com/index.php/2009/08/10/palm-pre-bac-calculator/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Jason Geiger</name>
						<uri>http://www.jaygeiger.com</uri>
					</author>
		<title type="html"><![CDATA[What You Can Learn from Billy Mays]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/jaygeiger/~3/hEGqchMleHU/" />
		<id>http://www.jaygeiger.com/index.php/2009/07/14/what-you-can-learn-from-billy-mays/</id>
		<updated>2009-07-14T19:09:57Z</updated>
		<published>2009-07-14T19:09:57Z</published>
		<category scheme="http://www.jaygeiger.com" term="Uncategorized" />		<summary type="html"><![CDATA[As you may be aware, I was a huge Billy Mays fan.&#160; Here is an EXCELLENT and article about Billy Mays and Affiliate Marketing.
Even though Billy Mays was the king, Ron Popeil and the Ronco Chicken Rotisserie have been around even longer than Billy Mays.
Being a “Pitch Man” and Inventor couldn’t be more different.&#160; Ron [...]]]></summary>
		<content type="html" xml:base="http://www.jaygeiger.com/index.php/2009/07/14/what-you-can-learn-from-billy-mays/">&lt;p&gt;As you may be aware, I was a huge Billy Mays fan.&amp;#160; Here is an EXCELLENT and article about &lt;a href="http://www.strategicprofits.com/blog/billy-mays-marketing-magic/"&gt;Billy Mays and Affiliate Marketing&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Even though Billy Mays was the king, Ron Popeil and the &lt;a href="http://www.roncochicken.com/"&gt;Ronco Chicken&lt;/a&gt; Rotisserie have been around even longer than Billy Mays.&lt;/p&gt;
&lt;p&gt;Being a “Pitch Man” and Inventor couldn’t be more different.&amp;#160; Ron Popeil was/is a great pitchman but has gotten into financial trouble after only pushing his inventions.&lt;/p&gt;
&lt;p&gt;This is a major dilemma with Inventors.&amp;#160; They have a very tough time moving on when something fails.&amp;#160; That’s where “Pitchmen” and “Marketers” and Marketers have it much easier.&lt;/p&gt;
&lt;p&gt;What new thing did you try today?&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/jaygeiger/~4/hEGqchMleHU" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.jaygeiger.com/index.php/2009/07/14/what-you-can-learn-from-billy-mays/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.jaygeiger.com/index.php/2009/07/14/what-you-can-learn-from-billy-mays/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.jaygeiger.com/index.php/2009/07/14/what-you-can-learn-from-billy-mays/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Jason Geiger</name>
						<uri>http://www.jaygeiger.com</uri>
					</author>
		<title type="html"><![CDATA[Interesting Keywords]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/jaygeiger/~3/SzL9gTf72BA/" />
		<id>http://www.jaygeiger.com/index.php/2009/07/14/interesting-keywords/</id>
		<updated>2009-07-14T15:13:05Z</updated>
		<published>2009-07-14T15:13:05Z</published>
		<category scheme="http://www.jaygeiger.com" term="Uncategorized" />		<summary type="html"><![CDATA[Going through my Google Analytics I noticed a bunch of funny keywords, here they are along with the page that comes up.
google calendar magic cookie    drunken texting    dates that put out (and women that put out)    geiger index fraud    how to steal money [...]]]></summary>
		<content type="html" xml:base="http://www.jaygeiger.com/index.php/2009/07/14/interesting-keywords/">&lt;p&gt;Going through my Google Analytics I noticed a bunch of funny keywords, here they are along with the page that comes up.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.jaygeiger.com/index.php/2006/05/22/get-google-calendars-magic-cookie/"&gt;google calendar magic cookie&lt;/a&gt;    &lt;br /&gt;&lt;a href="http://www.jaygeiger.com/index.php/2006/11/20/drunken-texting-drexting-in-our-lives/"&gt;drunken texting&lt;/a&gt;    &lt;br /&gt;&lt;a href="http://www.jaygeiger.com/index.php/2008/01/21/30-of-women-online-put-out-on-1st-date/"&gt;dates that put out&lt;/a&gt; (and &lt;a href="http://www.jaygeiger.com/index.php/2008/01/21/30-of-women-online-put-out-on-1st-date/"&gt;women that put out&lt;/a&gt;)    &lt;br /&gt;&lt;a href="http://www.jaygeiger.com/index.php/2008/01/18/steal-money-keywords/"&gt;geiger index fraud&lt;/a&gt;    &lt;br /&gt;&lt;a href="http://www.jaygeiger.com/index.php/2008/01/18/steal-money-keywords/"&gt;how to steal money online&lt;/a&gt;    &lt;br /&gt;&lt;a href="http://www.jaygeiger.com/index.php/2009/05/21/slap-chop-youre-gonna-love-my-nuts/"&gt;slap chop you&amp;#8217;re gonna love my nuts&lt;/a&gt; (and &lt;a href="http://www.jaygeiger.com/index.php/2009/05/21/slap-chop-youre-gonna-love-my-nuts/"&gt;slap chop my nuts&lt;/a&gt;)    &lt;br /&gt;&lt;a href="http://www.jaygeiger.com/index.php/2007/11/26/indestructable-camera/"&gt;indestructible camera&lt;/a&gt;    &lt;br /&gt;&lt;a href="http://www.jaygeiger.com/index.php/2007/02/02/fight-for-your-right-to-make-boobie-jokes/"&gt;boobie jokes&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I can only imagine what Google thinks my blog is really all about.&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/jaygeiger/~4/SzL9gTf72BA" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.jaygeiger.com/index.php/2009/07/14/interesting-keywords/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.jaygeiger.com/index.php/2009/07/14/interesting-keywords/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.jaygeiger.com/index.php/2009/07/14/interesting-keywords/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Jason Geiger</name>
						<uri>http://www.jaygeiger.com</uri>
					</author>
		<title type="html"><![CDATA[R.I.P. Billy Mays]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/jaygeiger/~3/Fx_Hkr3f78s/" />
		<id>http://www.jaygeiger.com/index.php/2009/06/29/rip-billy-mays/</id>
		<updated>2009-06-29T13:32:59Z</updated>
		<published>2009-06-29T13:32:59Z</published>
		<category scheme="http://www.jaygeiger.com" term="Uncategorized" />		<summary type="html"><![CDATA[I’m sure you know Billy Mays.&#160; If you’re into internet/affiliate marketing, you should really consider him a kind of king.
I recently got more interested in Billy from his show Pitchmen on Discovery.
Wow key thing that he points out is that every product needs a “Wow” factor.&#160; Instead of writing about it, check out the videos [...]]]></summary>
		<content type="html" xml:base="http://www.jaygeiger.com/index.php/2009/06/29/rip-billy-mays/">&lt;p&gt;&lt;img style="margin: 5px 5px 0px 0px; display: inline" title="Billy Mays" alt="Billy Mays" align="left" src="http://treesflowersbirds.files.wordpress.com/2009/02/billymays.jpg" /&gt;I’m sure you know Billy Mays.&amp;#160; If you’re into internet/affiliate marketing, you should really consider him a kind of king.&lt;/p&gt;
&lt;p&gt;I recently got more interested in Billy from his show &lt;a href="http://dsc.discovery.com/tv/pitchmen/pitchmen.html"&gt;Pitchmen&lt;/a&gt; on Discovery.&lt;/p&gt;
&lt;p&gt;Wow key thing that he points out is that every product needs a “Wow” factor.&amp;#160; Instead of writing about it, check out the videos and see if you can spot the “Wow” moment.&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/jaygeiger/~4/Fx_Hkr3f78s" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.jaygeiger.com/index.php/2009/06/29/rip-billy-mays/#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://www.jaygeiger.com/index.php/2009/06/29/rip-billy-mays/feed/atom/" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://www.jaygeiger.com/index.php/2009/06/29/rip-billy-mays/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Jason Geiger</name>
						<uri>http://www.jaygeiger.com</uri>
					</author>
		<title type="html"><![CDATA[Palm Pre &#8211; Low Battery Life]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/jaygeiger/~3/XTeYGpHPtYk/" />
		<id>http://www.jaygeiger.com/index.php/2009/06/08/palm-pre-low-battery-life/</id>
		<updated>2009-06-22T13:40:28Z</updated>
		<published>2009-06-08T20:39:01Z</published>
		<category scheme="http://www.jaygeiger.com" term="Uncategorized" />		<summary type="html"><![CDATA[I just got the new Palm Pre.&#160; Overall I love it!&#160; Any little problem that I’ve found with it I really feel that they will be able to resolve with an update down the road.
The main issue however is battery life.&#160; If your Pre is running out of battery life, here are the top things [...]]]></summary>
		<content type="html" xml:base="http://www.jaygeiger.com/index.php/2009/06/08/palm-pre-low-battery-life/">&lt;p&gt;I just got the new Palm Pre.&amp;#160; Overall I love it!&amp;#160; Any little problem that I’ve found with it I really feel that they will be able to resolve with an update down the road.&lt;/p&gt;
&lt;p&gt;The main issue however is battery life.&amp;#160; If your Pre is running out of battery life, here are the top things you can do to keep your battery charged longer.&lt;/p&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Top 5 Ways to Increase Pre Battery Life&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Close those Apps! – The apps launch fast so if you’re not using the apps, close them. &lt;/li&gt;
&lt;li&gt;Turn off BlueTooth – Turn it off if you’re not using it. &lt;/li&gt;
&lt;li&gt;Turn &lt;strong&gt;ON&lt;/strong&gt; WiFi – Palm applauds their WiFi’s power usage.&amp;#160; If you’re synching email and such, turn WiFi on if possible.&lt;/li&gt;
&lt;li&gt;Change your email sync options to a bigger interval. &lt;/li&gt;
&lt;li&gt;Set your background to Black. – Black uses less power than any other color.&amp;#160; Also you can turn down your brightness.&amp;#160; A lower brightness uses less power. &lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.jaygeiger.com/wp-content/uploads/2009/06/black.jpg"&gt;&lt;img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="black" border="0" alt="black" src="http://www.jaygeiger.com/wp-content/uploads/2009/06/black-thumb.jpg" width="164" height="244" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Here is a black image that you can set your background to.&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/jaygeiger/~4/XTeYGpHPtYk" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.jaygeiger.com/index.php/2009/06/08/palm-pre-low-battery-life/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.jaygeiger.com/index.php/2009/06/08/palm-pre-low-battery-life/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.jaygeiger.com/index.php/2009/06/08/palm-pre-low-battery-life/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Jason Geiger</name>
						<uri>http://www.jaygeiger.com</uri>
					</author>
		<title type="html"><![CDATA[Updated Earnings]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/jaygeiger/~3/IWLPnbcmYck/" />
		<id>http://www.jaygeiger.com/index.php/2009/06/08/updated-earnings/</id>
		<updated>2009-06-08T13:56:00Z</updated>
		<published>2009-06-08T13:56:00Z</published>
		<category scheme="http://www.jaygeiger.com" term="Uncategorized" />		<summary type="html"><![CDATA[Previous earnings from 11/25/2008 

Where I Make Money
Azoogle Ads &#8211; $124,583.85       Hydra &#8211; $19,579.20       NeverBlueAds &#8211; $5,115.30       IncentaClick &#8211; $3,609.00       Market Leverage &#8211; $1,784.60       Updated [...]]]></summary>
		<content type="html" xml:base="http://www.jaygeiger.com/index.php/2009/06/08/updated-earnings/">&lt;p&gt;Previous earnings from 11/25/2008 &lt;/p&gt;
&lt;div style="text-align: center; width: 200px"&gt;
&lt;div style="width: 200px; font-weight: bold"&gt;Where I Make Money&lt;/div&gt;
&lt;div&gt;&lt;a href="http://www.jaygeiger.com/offers/azoogle.php"&gt;Azoogle Ads&lt;/a&gt; &amp;#8211; $124,583.85       &lt;br /&gt;&lt;a href="http://www.jaygeiger.com/offers/hydra.php"&gt;Hydra&lt;/a&gt; &amp;#8211; $19,579.20       &lt;br /&gt;&lt;a href="http://www.jaygeiger.com/offers/neverblue.php"&gt;NeverBlueAds&lt;/a&gt; &amp;#8211; $5,115.30       &lt;br /&gt;&lt;a href="http://www.jaygeiger.com/offers/incentaclick.php"&gt;IncentaClick&lt;/a&gt; &amp;#8211; $3,609.00       &lt;br /&gt;&lt;a href="http://www.jaygeiger.com/offers/market-leverage.php"&gt;Market Leverage&lt;/a&gt; &amp;#8211; $1,784.60       &lt;br /&gt;Updated 11/25/2008 &lt;/div&gt;
&lt;/p&gt;&lt;/div&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;p&gt;Now for the main sources updated today.&lt;/p&gt;
&lt;div style="text-align: center; width: 200px"&gt;
&lt;div style="width: 200px; font-weight: bold"&gt;Where I Make Money&lt;/div&gt;
&lt;div&gt;&lt;a href="http://www.jaygeiger.com/offers/azoogle.php"&gt;Azoogle Ads&lt;/a&gt; &amp;#8211; $125,593.22       &lt;br /&gt;&lt;a href="http://www.jaygeiger.com/offers/hydra.php"&gt;Hydra&lt;/a&gt; &amp;#8211; $25,481.70       &lt;br /&gt;&lt;a href="http://www.jaygeiger.com/offers/neverblue.php"&gt;NeverBlueAds&lt;/a&gt; &amp;#8211; $5,172.45       &lt;br /&gt;&lt;a href="http://www.jaygeiger.com/offers/incentaclick.php"&gt;IncentaClick&lt;/a&gt; &amp;#8211; $3,609.00       &lt;br /&gt;PeerFly &amp;#8211; $1,839.35 &lt;a href="http://www.jaygeiger.com/offers/market-leverage.php"&gt;       &lt;br /&gt;Market Leverage&lt;/a&gt; &amp;#8211; $1,839.35       &lt;br /&gt;Amped &amp;#8211; $1,294.75 &lt;/div&gt;
&lt;/p&gt;&lt;/div&gt;
&lt;p&gt;You can see the past year hasn’t been as great as previous.&amp;#160; However I have done a lot less work.&lt;/p&gt;
&lt;p&gt;NOTE: I belong to a lot more affiliate networks, they just haven’t earned enough to make the list.&lt;/p&gt;
&lt;img src="http://feeds.feedburner.com/~r/jaygeiger/~4/IWLPnbcmYck" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.jaygeiger.com/index.php/2009/06/08/updated-earnings/#comments" thr:count="0" />
		<link rel="replies" type="application/atom+xml" href="http://www.jaygeiger.com/index.php/2009/06/08/updated-earnings/feed/atom/" thr:count="0" />
		<thr:total>0</thr:total>
	<feedburner:origLink>http://www.jaygeiger.com/index.php/2009/06/08/updated-earnings/</feedburner:origLink></entry>
		<entry>
		<author>
			<name>Jason Geiger</name>
						<uri>http://www.jaygeiger.com</uri>
					</author>
		<title type="html"><![CDATA[Palm Pre &#8211; 5 Reasons to Succeed or Fail]]></title>
		<link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/jaygeiger/~3/OseuGGknBRc/" />
		<id>http://www.jaygeiger.com/index.php/2009/06/02/palm-pre-5-reasons-to-succeed-or-fail/</id>
		<updated>2009-06-02T15:12:09Z</updated>
		<published>2009-06-02T15:12:09Z</published>
		<category scheme="http://www.jaygeiger.com" term="Uncategorized" />		<summary type="html"><![CDATA[You have to love the differing viewpoints out there.
PC World – 5 Reasons the Palm Pre Won’t Prevail     ZDNet – Palm Pre: 5 Reasons to Expect a Homerun
Let me list them then discuss.
5 to Fail

Palm is, effectively, a start-up. Forget the heritage, extract the name, and you have the Palm of [...]]]></summary>
		<content type="html" xml:base="http://www.jaygeiger.com/index.php/2009/06/02/palm-pre-5-reasons-to-succeed-or-fail/">&lt;p&gt;You have to love the differing viewpoints out there.&lt;/p&gt;
&lt;p&gt;PC World – &lt;a href="http://www.pcworld.com/businesscenter/article/165926/five_reasons_the_palm_pre_wont_prevail.html" target="_blank"&gt;5 Reasons the Palm Pre Won’t Prevail&lt;/a&gt;     &lt;br /&gt;ZDNet – &lt;a href="http://blogs.zdnet.com/BTL/?p=18947" target="_blank"&gt;Palm Pre: 5 Reasons to Expect a Homerun&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Let me list them then discuss.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;5 to Fail&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Palm is, effectively, a start-up&lt;/strong&gt;. Forget the heritage, extract the name, and you have the Palm of today. While it has assembled a hugely talented team, startups can screw-up. Not a predication, but if the Pre isn&amp;#8217;t close to perfect the company could face problems, especially if a hardware recall were necessary. &lt;/li&gt;
&lt;li&gt;The ability to run multiple applications at the same time will, over time, be important. But, it&amp;#8217;s a feature most other smartphones, except the iPhone, already possess. &lt;strong&gt;By the time multitasking becomes a must-have feature for the masses, Apple will have it&lt;/strong&gt;. &lt;/li&gt;
&lt;li&gt;Unlike the Palm of yesteryear, today&amp;#8217;s Palm &lt;strong&gt;doesn&amp;#8217;t have lots of experience with developers&lt;/strong&gt;. A huge applications and music store is a big driver of the iPhone&amp;#8217;s success. It may be a while before Palm has this and a long time before it surpasses Apple. &lt;/li&gt;
&lt;li&gt;In an odd way, the &lt;strong&gt;Pre&amp;#8217;s keyboard could be its undoing&lt;/strong&gt;. As much as I didn&amp;#8217;t like Apple&amp;#8217;s touchpad when my first iPhone arrived, I have come to appreciate the simplicity of a device that doesn&amp;#8217;t require me to open it or pull something out to make it work. And, if people want a keyboard, they already have a BlackBerry. &lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Palm doesn&amp;#8217;t currently have the financing to effectively&lt;/strong&gt; compete with larger companies. That could be an issue. Suppose, Palm can sell all the Pre&amp;#8217;s it can make, but can&amp;#8217;t make enough to fill demand or, worse, convince developers to build Pre applications? &lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;strong&gt;Counter Points&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Palm is not a startup, but it is similar.&amp;#160; Their “Idea” is a startup, not phones.&amp;#160; Apple LEAPING to the 1st iPhone was more of a startup than Palm LEAPING to a good idea. &lt;/li&gt;
&lt;li&gt;The problem with Old-Palm was the lack of innovation.&amp;#160; They made 1 big innovation several years ago and never improved on it.&amp;#160; It took them years just to get rid of the stubby antenna.&amp;#160; A new Palm that can move, change and please the masses has been in the works for a couple years.&amp;#160; In June, they will finally pull the trigger on their attempt.&amp;#160; iPhone’s don’t multi-task because their apps are “Fat”.&amp;#160; Pre apps are more web-centric so are “thin”.&amp;#160; Fat apps can’t multi-task because it kills the phone’s battery.&amp;#160; Thin apps don’t have that limitation. &lt;/li&gt;
&lt;li&gt;This actually isn’t a counterpoint.&amp;#160; What Palm needs to do is open their developer network to EVERYBODY.&amp;#160; They also need to let people decide what apps are good, don’t limit them because of PR reasons.&amp;#160; If Palm takes a “I don’t agree with what you program, but will defend your right to program it” attitude, they will have a small foot up on Apple.&amp;#160; Of course, they need to have a good store and allow programmers to sell their software for $1. &lt;/li&gt;
&lt;li&gt;Good or Bad, keeping a keyboard is a good idea.&amp;#160; Blackberry users and ESPECIALLY old Palm users.&amp;#160; I know I would have gotten rid of my Palm Treo 755p (and paid $200 to do so) if the Palm Pre wasn’t coming out.&amp;#160; The only reason I’m still with Sprint is because I want the Pre. &lt;/li&gt;
&lt;li&gt;Meeting demand, or coming just under demand, is good for Palm.&amp;#160; Coming in under demand may create more buzz, just like Nintendo does with it’s Wii.&amp;#160; However, if it takes a person more than a month to get a Pre, they could lose some customers here.&amp;#160; Palm’s financing probably won’t be a problem after they sell out the first week. &lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&amp;#160;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;5 Reasons to Succeed&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;&lt;strong&gt;Palm knows how to build an ecosystem       &lt;br /&gt;&lt;/strong&gt;With all of the momentum that is building around the iPhone as an application platform, Palm has a lot of ground to make up (and, for that matter, so do BlackBerry, Windows Mobile, Android, and Symbian). The thing Palm has going for it is that it knows how to build an ecosystem around its products. It did it before with the original Palm Pilot. In fact, before the runaway growth of the iPhone App Store, the Palm OS still had arguably the widest collection of third party applications for any smartphone. Most of those apps were a legacy from the Palm Pilot, but many of them were still among the best you could find for a smartphone. Palm’s new webOS will even include an emulator that will run classic Palm OS apps. But, we should also expect lots of flashy, new webOS applications because the webOS platform is friendly to programmers, and working with third-party developers is baked into Palm’s DNA. &lt;/li&gt;
&lt;li&gt;&lt;strong&gt;The carriers want an iPhone competitor       &lt;br /&gt;&lt;/strong&gt;Sprint has a deal with Palm to be the exclusive U.S. carrier for the Pre through the end of 2009. Verizon has already announced that it plans to start carrying the Pre at the beginning of 2010 and AT&amp;amp;T CEO Randall Stephenson said that he wants the Pre on AT&amp;amp;T. So, within a year, the Pre will likely be available on all of the top three U.S. carriers, plus a GSM version of the smartphone will likely be spreading across the globe by then. Many of these carriers covet the Palm Pre because the iPhone, with its exclusive carrier deals in various countries, has become a magnet drawing customers away from current carriers to the iPhone’s carrier (AT&amp;amp;T in the U.S.). Since the Pre looks like that first smartphone that can stand toe-to-toe with the iPhone technologically, it’s very likely that many of the non-iPhone carriers that offer the Pre will market it with heavy promotions that will drive sales. &lt;/li&gt;
&lt;li&gt;&lt;strong&gt;The webOS will be a strong development platform       &lt;br /&gt;&lt;/strong&gt;Applications for Palm’s new webOS are built with HTML, Javascript, and CSS, which are the standard languages for today’s Web developers. Comparatively, iPhone apps are built in Objective C and Android apps are built with Java. That gives iPhone and Android a few more powerful tools to work with, but it also means that webOS will natively be more Web-savvy and will be faster and easier for developing apps. The challenge is that Palm has so far limited access to the Palm Mojo software development kit (SDK) to a select group of partners. If Palm is going to compete with the iPhone and its application juggernaut it’s going to have to open up its new SDK to the wider world as soon as possible. &lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Touchscreen + Qwerty       &lt;br /&gt;&lt;/strong&gt;Qwerty devices such as the BlackBerry Curve, the Nokia E71, and Samsung Blackjack are all excellent email and data entry devices, but they are not very useful for Web browsing or reading a lot of text. Conversely, full touchscreen devices such as the iPhone, the Google G1, and the BlackBerry Storm are all excellent for Web browsing and reading text, but their keyboards make them less useful for typing emails and other kinds of data entry. So the ultimate device should combine a touchscreen and a qwerty keyboard, right? The G1 makes a noble attempt, but it’s flip-down keyboard is awkward and not very effective. The Palm Pre represents the first effective fusion of the two, although it’s not perfect either. The Pre keyboard is even a little smaller than the BlackBerry Curve, so it will be tough for people with large fingers to use. Nevertheless, it’s the first smartphone to effectively combine a full touchscreen with an effective qwerty thumboard. Other devices will likely follow its lead. &lt;/li&gt;
&lt;li&gt;&lt;strong&gt;It is the first true multi-tasking smartphone       &lt;br /&gt;&lt;/strong&gt;The most revolutionary part of the Palm Pre is its multi-tasking functionality. While all of the Pre’s current smartphone competitors have very limited multi-tasking, the Pre provides the computing power for full multi-tasking and does it in an elegant interface that makes it easy to flip through apps and get real-time alerts on-screen. In the webOS, applications appear as a deck of cards that you can flip through with the swipe of a finger. Each app is one card and can be organized, managed, and closed using touchscreen gestures. The webOS also offers on-screen alerts that pop up along the bottom of the screen. For example, while typing an email, you might be an IM message and have a meeting alert from your calendar. Both items would appear along the bottom of the screen and a simple tap would take you into either application. This makes the Palm Pre feel much more like the computing experience that all of us are used to on a desktop or laptop PC, and that’s the Palm Pre’s biggest contribution, and it’s biggest draw. &lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&lt;strong&gt;Counterpoints&lt;/strong&gt;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Palm “knew” how to make an ecosystem.&amp;#160; They need to have already re-evaluated how to make an ecosystem in today’s world.&amp;#160; If they can’t integrate with Facebook and Twitter (or are limited to small file sizes) then they won’t succeed in the ecosystem.&lt;/li&gt;
&lt;li&gt;This one is DEAD-ON.&amp;#160; This is especially try with Verizon.&amp;#160; Sprint probably only has 6 months of Exclusivity.&amp;#160; Exclusivity was a rather dumb move on Apple’s part.&amp;#160; You can sell 2-3 times as many units by opening up who can use them.&lt;/li&gt;
&lt;li&gt;The webOS MAY be a strong development platform.&amp;#160; On paper it sounds great.&amp;#160; Palm needs to have the tools to make developers happy.&amp;#160; The webOS also needs to work as well as expected.&amp;#160; If it’s buggy and the user experience suffers, this can be a HUGE hit to the Pre.&amp;#160; I was looking for a stop-watch app for my Palm Treo.&amp;#160; The only thing available cost $15.&amp;#160; I would never pay more than $2.&amp;#160; If I could program my own, even better!&lt;/li&gt;
&lt;li&gt;I think this is the best slide-out keyboard ever.&amp;#160; Time will tell if you truly need it though.&amp;#160; I like it, but who knows.&lt;/li&gt;
&lt;li&gt;If the multi-tasking doesn’t kill the battery this can be a huge advantage.&lt;/li&gt;
&lt;/ol&gt;
&lt;img src="http://feeds.feedburner.com/~r/jaygeiger/~4/OseuGGknBRc" height="1" width="1"/&gt;</content>
		<link rel="replies" type="text/html" href="http://www.jaygeiger.com/index.php/2009/06/02/palm-pre-5-reasons-to-succeed-or-fail/#comments" thr:count="1" />
		<link rel="replies" type="application/atom+xml" href="http://www.jaygeiger.com/index.php/2009/06/02/palm-pre-5-reasons-to-succeed-or-fail/feed/atom/" thr:count="1" />
		<thr:total>1</thr:total>
	<feedburner:origLink>http://www.jaygeiger.com/index.php/2009/06/02/palm-pre-5-reasons-to-succeed-or-fail/</feedburner:origLink></entry>
	</feed>
