<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Teebark &#187; Business</title>
	<atom:link href="http://www.teebark.com/index.php/category/business/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.teebark.com</link>
	<description></description>
	<lastBuildDate>Sat, 04 Feb 2012 05:17:39 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Cheap tablet PC&#8211;and it&#8217;s an Android</title>
		<link>http://www.teebark.com/index.php/business/cheap-tablet-pc-and-its-an-android/</link>
		<comments>http://www.teebark.com/index.php/business/cheap-tablet-pc-and-its-an-android/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 02:36:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://www.teebark.com/index.php/business/cheap-tablet-pc-and-its-an-android/</guid>
		<description><![CDATA[This was an interesting experiment.. And even better, it was successful  I wanted to see if it was possible to hack a cheap eReader and make it into an Android tablet. A friend had a PanDigital Novel 7 inch eReader that had some Android capabilities&#8211;a browser, etc. But no Google market capability. You could load apps, [...]]]></description>
			<content:encoded><![CDATA[<p>This was an interesting experiment.. And even better, it was successful  I wanted to see if it was possible to hack a cheap eReader and make it into an Android tablet. A friend had a PanDigital Novel 7 inch eReader that had some Android capabilities&#8211;a browser, etc. But no Google market capability. You could load apps, but you had to do it manually, and the choice was much more limited than the Google Market. My friend had heard that the Novel could be hacked, but he wasn&#8217;t comfortable with trying. The price was right&#8211;$68 (plus $10 shipping), so I figured it was worth a shot.</p>
<p><img class="alignnone" src="http://ecx.images-amazon.com/images/I/41vBhL9igOL._AA300_PIbundle-1,TopRight,0,0AA300_SH20_.jpg" alt="" width="330" height="330" /></p>
<p><span id="more-958"></span></p>
<p>I did some reading and got some wonderful reference material at a site called SlateDroid. Many people have hacked the Novel, so I took the gamble. All you have to do is download a zip file to an SD card, and boot the machine. Could it be that simple? Yes, indeed, it was. I now have a fully functional eReader, as well as a bona fide Android tablet. I have the Google Market available, and I downloaded my favorite apps tonight, just like I was able to do on my smartphone.</p>
<p>It has a few deficiencies, of course. Response to touching is not as sensitive&#8211;it has resistive  technology instead of capacitive, but once you get used to pressing a little harder, it&#8217;s not a big deal. You also can&#8217;t do the magnify thing with your fingers, but the screen is so large, there&#8217;s no real need. It only has wifi capability, but most tablets are that way anyway.</p>
<p>The display is gorgeous, and it&#8217;s really nice to see a web page spread over a relatively large area instead of the tiny screen on a smart phone.</p>
<p>All in all, I think it&#8217;s a heck of a good deal. I&#8217;m having lots of fun playing with it. And I&#8217;m glad I took the hacking gamble.</p>
<p>Addendum&#8211;as of 12/8, the prices has gone up to $89.95. I guess they realize they&#8217;ve got a winner.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.teebark.com/index.php/business/cheap-tablet-pc-and-its-an-android/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cobol Ready Trace lives</title>
		<link>http://www.teebark.com/index.php/mainframe/cobol-ready-trace-lives/</link>
		<comments>http://www.teebark.com/index.php/mainframe/cobol-ready-trace-lives/#comments</comments>
		<pubDate>Tue, 09 Aug 2011 02:10:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Mainframe]]></category>

		<guid isPermaLink="false">http://www.teebark.com/?p=953</guid>
		<description><![CDATA[In the age of Expediter, et al, it may seem old fashioned to want to use this old tool, but it&#8217;s still an unmatched gem. For those of you who don&#8217;t remember Ready Trace, it&#8217;s an old verb that was obsoleted by Cobol II. It lists every paragraph that a program executes. Expiditer, for all [...]]]></description>
			<content:encoded><![CDATA[<p>In the age of Expediter, et al, it may seem old fashioned to want to use this old tool, but it&#8217;s still an unmatched gem. For those of you who don&#8217;t remember Ready Trace, it&#8217;s an old verb that was obsoleted by Cobol II. It lists every paragraph that a program executes. Expiditer, for all it&#8217;s great capabilities, cannot do this. Nor any other tool that I know of.<br />
<span id="more-953"></span></p>
<p>But, there is a way to make Cobol do it. It&#8217;s not quite as easy to implement, because you have to use several steps, but once you set up the template, it&#8217;s very straighforward.</p>
<p>You may have used the Cobol debug option to execute displays and special logic in your program, and displaying a list of all paragraphs executed is an extension of that option. Here are the steps.</p>
<p>003100 CONFIGURATION SECTION.<br />
003300 SOURCE-COMPUTER. IBM-370 WITH DEBUGGING MODE.<br />
003500 INPUT-OUTPUT SECTION.                      <wbr> </wbr></p>
<p>Line 3300 is necessary, the lines before and after are just to show where to place it in your program. Then, right after PROCEDURE DIVISION, place this code. Line 12400 is necessary, as it&#8217;s a stopper for the DEBUG section.</p>
<p>011700 PROCEDURE DIVISION.<br />
011800 DECLARATIVES.<br />
011900 DEBUG SECTION.<br />
012000     USE FOR DEBUGGING ON ALL PROCEDURES.<br />
012100 DEBUG-DECLARATIVES-PARAGRAPH.<br />
012200     DISPLAY &#8216;&#8212;PARA: &#8216; DEBUG-NAME.<br />
012300 END DECLARATIVES.<br />
012400 MAIN SECTION.                      <wbr>     </wbr></p>
<p>Use this parm in your execution JCL:</p>
<p>//PS001   EXEC PGM=UMCCALL,PARM=&#8217;/DEBUG&#8217;</p>
<p>If you need to pass parms to your program, temporarily hard code it as a literal in your program, as I don&#8217;t think there&#8217;s an easy way to add them to this required parm.</p>
<p>There are some special compiler options that your shop has to have implemented for the standard Cobol compile&#8211;if these code changes don&#8217;t work, make sure that you have TEST(NONE,SYM,SEPARATE) in your compiler options.</p>
<p>I&#8217;ve used this version of Ready Trace in several different programs at GEICO, so I&#8217;m confident it will work for you. You probably won&#8217;t use it every day, but for those situations where you&#8217;re pulling your hair out trying to solve a problem, this may shed some light on your program logic.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.teebark.com/index.php/mainframe/cobol-ready-trace-lives/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Good tip on necessary Windows utilities</title>
		<link>http://www.teebark.com/index.php/business/good-tip-on-necessary-windows-utilities/</link>
		<comments>http://www.teebark.com/index.php/business/good-tip-on-necessary-windows-utilities/#comments</comments>
		<pubDate>Thu, 21 Jul 2011 02:19:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://www.teebark.com/index.php/business/good-tip-on-necessary-windows-utilities/</guid>
		<description><![CDATA[This is definitely worth watching&#8211;I&#8217;ve been using one of them, CCleaner for years, so I think this guy knows what he&#8217;s talking about. &#160;]]></description>
			<content:encoded><![CDATA[<p>This is definitely worth <a href="http://www.techrepublic.com/blog/itdojo/free-windows-utilities-you-should-download-right-now/2769?tag=nl.e101">watching</a>&#8211;I&#8217;ve been using one of them, CCleaner for years, so I think this guy knows what he&#8217;s talking about.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.teebark.com/index.php/business/good-tip-on-necessary-windows-utilities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use Autoruns to control startup programs</title>
		<link>http://www.teebark.com/index.php/business/use-autoruns-to-control-startup-programs/</link>
		<comments>http://www.teebark.com/index.php/business/use-autoruns-to-control-startup-programs/#comments</comments>
		<pubDate>Wed, 29 Jun 2011 01:46:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://www.teebark.com/index.php/business/use-autoruns-to-control-startup-programs/</guid>
		<description><![CDATA[From WXPNews: You might be aware of the MSCONFIG utility that comes with Windows XP. You can open it by simply typing its name in the Run &#124; Open box and it&#8217;s a good starting point for finding out what runs automatically on your system. But if you really want to delve deeply into those [...]]]></description>
			<content:encoded><![CDATA[<p><span style="border-collapse: collapse; font-family: Arial; font-size: small;"> </span></p>
<div>From WXPNews:</div>
<div></div>
<div><span style="font-family: arial, sans-serif; font-size: small;">You might be aware of the MSCONFIG utility that comes with Windows XP. You can open it by simply typing its name in the Run | Open box and it&#8217;s a good starting point for finding out what runs automatically on your system. But if you really want to delve deeply into those autorun programs, there&#8217;s something that&#8217;s a whole lot better and it&#8217;s a free download from Microsoft. Autoruns is one of the Sysinternals tools created by Mark Russinovich and Bryce Cogswell, and not only can you use it to speed up your system by disabling unnecessary automatic programs, you can also use it to help track down malware (which is often set to start and run automatically). You can get it here:&nbsp;<br />
<a style="color: #0000cc;" href="http://www.wxpnews.com/7NJW64/110628-Autoruns" target="_blank">http://www.wxpnews.com/7NJW64/110628-Autoruns</a></span></div>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.teebark.com/index.php/business/use-autoruns-to-control-startup-programs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beach rentals available</title>
		<link>http://www.teebark.com/index.php/business/beach-rentals-available/</link>
		<comments>http://www.teebark.com/index.php/business/beach-rentals-available/#comments</comments>
		<pubDate>Tue, 28 Jun 2011 23:55:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Business]]></category>

		<guid isPermaLink="false">http://www.teebark.com/index.php/business/beach-rentals-available/</guid>
		<description><![CDATA[These are through a friend of mine. This not a front for a rental business&#8211;these are timeshares that she owns. Post a comment if you&#8217;re interested. Outer Banks, NC Outer Banks Beach Club&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;7/29/2011&#160;-&#160; 8/5/2011&#160;&#160;&#160;&#160;2 bdrm / 2 bath&#160;&#160;&#160;$1200.00 &#160; The Windjammer&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;7/23/2011&#160; -&#160;7/30/2011&#160;&#160; 2 bdrm / 1 1/2ba&#160;$ 900.00 &#160; Sea Scape Golf &#38; Beach&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;8/14/2011&#160; &#8211; [...]]]></description>
			<content:encoded><![CDATA[<p><span style="border-collapse: collapse; font-family: Arial; font-size: small;">
<div>These are through a friend of mine. This not a front for a rental business&#8211;these are timeshares that she owns. Post a comment if you&#8217;re interested.</div>
<div></div>
<div><strong><span style="text-decoration: underline;"><span style="color: #000080; font-size: medium;">Outer Banks, NC</span></span></strong></div>
<div><span style="color: #008000; font-size: small;"><strong>Outer Banks Beach Club</strong></span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="font-size: small;"><strong>&nbsp;7/29/2011&nbsp;-&nbsp; 8/5/2011&nbsp;&nbsp;&nbsp;&nbsp;2 bdrm / 2 bath&nbsp;&nbsp;&nbsp;$1200.00</strong></span></div>
<div>&nbsp;</div>
<div><span style="color: #008000; font-size: small;"><strong>The Windjammer</strong></span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="font-size: small;"><strong>7/23/2011&nbsp; -&nbsp;7/30/2011&nbsp;&nbsp; 2 bdrm / 1 1/2ba&nbsp;$ 900.00</strong></span></div>
<div>&nbsp;</div>
<div><strong><span style="font-size: small;"><span style="color: #008000;">Sea Scape Golf &amp; Beach</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;8/14/2011&nbsp; &#8211; 8/21/2011&nbsp;&nbsp; 2 bdrm / 2 bath&nbsp;&nbsp;$&nbsp;900.00&nbsp;</span></strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</div>
<div>&nbsp;</div>
<div><strong><span style="text-decoration: underline;"><span style="color: #0000a0; font-size: medium;">Va Beach, VA</span></span></strong></div>
<div><strong><span style="color: #008000; font-size: small;">Barclay Towers</span></strong>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span style="font-size: small;"><strong>8/5/2011&nbsp; &#8211; 8/12/2011&nbsp;&nbsp;&nbsp;&nbsp;1 bdrm / 1 bath&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;$ 900.00</strong></span>&nbsp; &nbsp; &nbsp;</div>
<p></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.teebark.com/index.php/business/beach-rentals-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>News feed in FaceBook</title>
		<link>http://www.teebark.com/index.php/family/news-feed-in-facebook/</link>
		<comments>http://www.teebark.com/index.php/family/news-feed-in-facebook/#comments</comments>
		<pubDate>Sat, 15 Jan 2011 03:41:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Family]]></category>

		<guid isPermaLink="false">http://www.teebark.com/?p=865</guid>
		<description><![CDATA[I thought I was losing my mind because I couldn&#8217;t find my friend lists in Facebook any more. They used to be over in the left column, but they disappeared. I finally figured out where they are after reading a couple of articles on using FB for a news feed, similar to Google Reader. I [...]]]></description>
			<content:encoded><![CDATA[<p>I thought I was losing my mind because I couldn&#8217;t find my friend  lists in Facebook any more. They used to be over in the left column, but  they disappeared. I finally figured out where they are after reading a  couple of articles on using FB for a news feed, similar to Google  Reader.</p>
<p><span id="more-865"></span></p>
<p>I use lists to segment my news feeds into names like  family, business, almost family (subgroup of non-family friends), etc.  That way, you can select that list, and filter out everything else. For  instance, I always go to family first, because those are the people I&#8217;m  most connected to. Once you have a lot of friends, it&#8217;s hard to scan for  posts from certain people. It can take a lot of paging.</p>
<p>Anyway,  back to news feeds&#8211;I saw several references on doing it, but no  description of HOW to do it. Basically, they were saying you could  access info as news feeds, similar to an RSS feed (like Google Reader).  So, I started searching for a way to do it. I did find some, but they  required installing an app, and the articles I was reading made it sound  like it was built into FB.</p>
<p>Finally, it dawned on me&#8211;they were talking  about using news as a list. Then, you add friends who are actually fan  pages. Like Mashable, New York Times, etc. You&#8217;re not going to get exactly the same content you get from an RSS feed, but a lot of the same sources have fan pages, and they post that material there, too.</p>
<p>I tried it and it works. Adding fan pages is a little difficult, because I haven&#8217;t been able to see anywhere in FB where you can see a list of them. But, all you have to do is look at your default news feed, and you&#8217;ll see them pop up. Then you can just go to your account, where you can edit lists, and type in the name, and it will add them to the list.</p>
<p>So now, I have a Fan Page list, and I can look at that feed separately from family. You switch to a particular list by clicking on the down arrow next to Status Updates at the top of your home page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.teebark.com/index.php/family/news-feed-in-facebook/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux update</title>
		<link>http://www.teebark.com/index.php/family/linux-update/</link>
		<comments>http://www.teebark.com/index.php/family/linux-update/#comments</comments>
		<pubDate>Thu, 06 Jan 2011 00:18:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Family]]></category>

		<guid isPermaLink="false">http://www.teebark.com/?p=858</guid>
		<description><![CDATA[A while back, I posted a story about my adventures with Linux on an older PC. I was stymied at the time, but I have made significant progress since then. The memory boards I had ordered (and didn&#8217;t work), were replaced&#8211;good job, memorystock.com, and they fit just fine this time. It actually turns out that [...]]]></description>
			<content:encoded><![CDATA[<p>A while back, I posted a story about my adventures with Linux on an older PC. I was stymied at the time, but I have made significant progress since then. The memory boards I had ordered (and didn&#8217;t work), were replaced&#8211;good job, <a href="http://memorystock.com">memorystock.com</a>, and they fit just fine this time.</p>
<p>It actually turns out that I probably didn&#8217;t need the extra memory&#8211;once I installed Xubuntu to the hard drive, it got significantly faster. But, extra memory never hurts. The version of FoxPro that comes with Xubuntu is fully functional with Hootsuite, FaceBook, etc., so I consider that installation a success.</p>
<h3>The score is 2-0</h3>
<p><span id="more-858"></span></p>
<p>Buoyed by this success, I moved on to my next PC. First problem&#8211;Xubuntu wouldn&#8217;t run, because it requires 2 gig on the hard drive. I have 4 on alpha, but only 2 on beta (but 256 meg of RAM). Even if it loaded, I would have no space for applications.</p>
<p>I found a newer version of DSL (Damn Small Linux) that loaded okay, and it had a newer version of FoxPro that would run FaceBook, but I couldn&#8217;t get it to successfully install on the hard drive. It boots fine off the USB, but I don&#8217;t want to depend on carrying the extra piece around. And when I tried to save my profile to USB, that killed the live drive capability, and it wouldn&#8217;t boot until I reinstalled DSL to the USB.</p>
<p>I did find a nice universal installer in the process, that lets you easily try lots of different versions of Linux. And there are many. I got it <a href="http://www.pendrivelinux.com/universal-usb-installer-easy-as-1-2-3/">here.</a> The executable is called Universal-USB-Installer-1.8.0.9.</p>
<p>I also tried Knoppix, but it required too much drive space. Tiny Core is truly tiny, but it&#8217;s bare bones, and only loads to a Linux prompt&#8211;no graphical interface.</p>
<h3>Hello, Puppy</h3>
<p>I&#8217;m currently working with Puppy Linux. It only requires about a gig of drive space, and the wifi and FoxPro work great. I struggled for a while trying to load it to the hard drive. Part of the hard drive install is supposed to create this thing called grub on the boot sector. But the install kept hanging and I could never get a successful boot.</p>
<p>I did finally get it to work, via a great install <a href="http://murga-linux.com/puppy/viewtopic.php?t=29653">page</a>. Success at last.</p>
<p>I also had to buy a new wifi card&#8211;the Belkin Wireless G didn&#8217;t cut it. It&#8217;s a PCMCIA dongle, D-Link WNA 2330. Fortunately these things are cheap, but plentiful. I got it off Amazon for about $20.</p>
<p>So, in summary, you can have success with Linux, and with PC&#8217;s with very small hard drives and minimal storage. Xubuntu works great if you&#8217;ve got more than 3 gig on a hard drive, and Puppy with 1.3 gig. 128 meg of memory will run, but 256 is much better.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.teebark.com/index.php/family/linux-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bit the Bullet (Android, that is)</title>
		<link>http://www.teebark.com/index.php/family/bit-the-bullet-android-that-is/</link>
		<comments>http://www.teebark.com/index.php/family/bit-the-bullet-android-that-is/#comments</comments>
		<pubDate>Wed, 05 Jan 2011 03:42:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Contracting]]></category>
		<category><![CDATA[Family]]></category>

		<guid isPermaLink="false">http://www.teebark.com/index.php/contracting/bit-the-bullet-android-that-is/</guid>
		<description><![CDATA[My PDA (aka Palm, Tungsten E) has been my constant companion for about 5 years now. I even soldered a new battery in about a year ago. It was the perfect instrument. It could sync with Outlook, I could read books, and even download web pages (offline, of course). Then, the paint began to flake. [...]]]></description>
			<content:encoded><![CDATA[<p>My PDA (aka Palm, Tungsten E) has been my constant companion for about 5 years now. I even soldered a new battery in about a year ago. It was the perfect instrument. It could sync with Outlook, I could read books, and even download web pages (offline, of course). Then, the paint began to flake. I couldn&#8217;t sync with my new PC (curses, Vista), then I started having problem syncing with my XP machine. Still, I resisted the urge to buy a smart phone&#8211;I did not want to get locked into a contract, and that monthly data package was just too big of a pill to swallow. I used a prepaid phone (Tracfone), it was cheap and worked just fine.</p>
<p><span id="more-851"></span></p>
<p>A month ago, I saw an ad that had me frothing at the mouth. An Android for $25 a month, no contract, and unlimited internet. I bit. And haven&#8217;t looked back. It&#8217;s a Samsung Intercept. Small, and not the biggest screen, but it does everything I want in a smart phone. Thousands of apps and real time internet. A bonus is that I can also download Kindle compatible books and read them on my phone.</p>
<p>I did have to make some adjustments&#8211;I no longer use Outlook. I&#8217;ve replaced it with Gmail (I forward all my teebark.com mail to my gmail account). The Android app for gmail works great, and of course, I was able to import all my contacts with no problem. So, I have no more sync problems&#8211;it&#8217;s all done automatically, in the cloud.</p>
<p>I&#8217;ve also picked up some awesome apps that I would never have been able to use with my PDA (bless it&#8217;s little soul). Evernote is extremely useful&#8211;I now use my phone camera to capture handwritten notes, and labels of items I see in stores, and store them in Evernote. Then, at my PC, everything is automatically synced up and avalable for me to use there. And I can add tags to any notes or pictures, so I can find things very quickly.</p>
<p>So, as you can guess, I&#8217;ve retired my PDA. It was a sad day&#8211;it served me well. Progress.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.teebark.com/index.php/family/bit-the-bullet-android-that-is/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux will revive an old PC? Not so fast.</title>
		<link>http://www.teebark.com/index.php/family/linux-old-pc/</link>
		<comments>http://www.teebark.com/index.php/family/linux-old-pc/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 15:43:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Family]]></category>

		<guid isPermaLink="false">http://www.teebark.com/?p=811</guid>
		<description><![CDATA[I bought several old notebook PC&#8217;s a while back, specifically for the purpose of giving them to my grandkids. I wanted to see if I could retrofit them as replacements for newer PC&#8217;s, sans Windows. Because, let&#8217;s face it, Microsoft has effectively tied their newest OS to any new machine that you buy. Want to [...]]]></description>
			<content:encoded><![CDATA[<p>I bought several old notebook PC&#8217;s a while back, specifically for the purpose of giving them to my grandkids. I wanted to see if I could retrofit them as replacements for newer PC&#8217;s, sans Windows. Because, let&#8217;s face it, Microsoft has effectively tied their newest OS to any new machine that you buy.</p>
<p><span id="more-811"></span></p>
<p>Want to buy a used PC and update the OS on it to XP or Vista? Forget it, unless you want to buy a new license. Translation&#8211;an additional $100 or so. As you know, you can&#8217;t install your Windows OS on more than one machine. You have to have a unique license for each and every one. I have three older PC&#8217;s sitting around, minus hard drives (or non-working drives), that need an operating system. I actually &#8220;borrowed&#8221; an XP CD that didn&#8217;t require registration, as my first attempt to revive them. And that worked fine, except the first machine (let&#8217;s call it alpha), only had 4 gigs of hard space, and Windows took up 3.5 gig. After adding Office, I had almost no space left.</p>
<p>On to plan B&#8211;Linux. This is a free, open source OS, that I&#8217;d read about, but never paid much attention. Now it had my attention. It sounded perfect:</p>
<ul>
<li>Free</li>
<li>Readily available</li>
<li>Has a small footprint&#8211;meager disk and memory requirements</li>
<li>Runs a free, open source version of Office (Word, Excel, Power Point, etc.)</li>
<li>You can test it with a Live CD version (you don&#8217;t need to actually install it to use it)</li>
</ul>
<p>It sounded perfect, but turned out to not quite be true. Here are my attempts.</p>
<h3>Trial 1&#8211;It can&#8217;t be that easy</h3>
<p>I bought a magazine with a version of Ubuntu on a Live CD. Ubuntu is a distribution of Linux that&#8217;s been more or less standardized and packaged so you have a core system that only needs to be updated from time to time with improved versions.</p>
<p>It ran fine on my primary PC with Vista. Except that the wifi connectivity didn&#8217;t work. I consulted with a friend of mine who is handy with Linux, and we ended up installing it on my machine with VMWare, a free PC virtual machine. That let me run Linux with all of my Windows hardware, including the wifi card. I was up and running, but not with the machine (alpha) that I wanted to run it on.</p>
<h3>Trial 2&#8211;USB perfection</h3>
<p>So, I figured I just needed to run the Live CD on alpha, and I should be good to go. Well, the first problem is that if you run from a Live CD, none of the changes you make to get something working, like wifi connectivity, will get saved to your next session. You need something called persistence, so any changes get picked up when you run it again. I solved that problem by finding a download of Ubuntu that will load and run from a USB drive, and has the persistence property. Basically, it just saves any modifications to another file on the drive, and the OS looks there for add-ons whenever it loads.</p>
<p>But uh oh, a new problem surfaced. Most older PC&#8221;s won&#8217;t boot from a USB drive. So, I did more googling and found a solution for that. There&#8217;s a neat little program called PLOP that will load from either a CD or a floppy, that will give your OS the option to boot from a USB device. I had CD capability on alpha, so I burned an ISO image to a CD, and joila, had the ability to boot from my Ubuntu-on-a-USB stick.</p>
<p>Except it ran and ran and ran, and would never finish loading. I did some more reading and discovered that Ubuntu needs at least 512 meg of RAM to run. I only had 128 in alpha. But, a smaller version of Ubuntu, called Xubuntu, seemed like it would solve my problem. I tried that, and Eureka, it loaded. But, it ran woefully slow. So slow, that it was impossible. to use.</p>
<p>Now, here&#8217;s the irony&#8211;XP was a resource hog, but it ran fine in 128 meg of memory. It was hardly slow at all. Yet, Linux, which has an incredibly smaller footprint, was like watching molasses flow. Argh.</p>
<p>Fortunately, memory is cheap ($40), even for older PC&#8217;s, so I ordered 256 meg of memory, and moved on to a still smaller version of Linux, called DSL (Damn Small Linux), while I waited for it to arrive.</p>
<h3>Trial 3&#8211;Damn Small, and damn near working</h3>
<p>DSL installed fine, but I still had the problem with wifi connectivity. That was, of course, a minimum requirement for alpha&#8211;it had to have browser capability. After fruitless hours trying to find a Linux driver for the Belkin card I had in alpha, I tried a technique built into Linux (and DSL), called NDIS wrapper, which lets you use the Windows driver that came with the card. And miraculously, it worked. I had a browser that worked. It was an older version of Firefox, but it worked fine. I thought.</p>
<p>I could browse pretty much any site I wanted to look at, including FaceBook, so I thought I had hit pay dirt. But, of course, it was too good to be true. Hootsuite, a FaceBook and Twitter add on, crashed the browser. And when I tried to use the chat capability of FaceBook, I found it wasn&#8217;t there. And I couldn&#8217;t get the chat icon to show up, no matter what I did. I think there probably is a Flash add on, or something similar, that this version of Firefox doesn&#8217;t even know about.</p>
<p>Well, no big deal, so I can&#8217;t chat. I can live with that. However, the next problem I found was that I couldn&#8217;t post updates on FaceBook. Nothing happened when I clicked on Share. So, that makes this experiment a failure.</p>
<p>I resigned myself to using Xubuntu (the wifi worked on booting), once I had upgraded the memory. Well, you&#8217;ll never believe this. When you order memory, the companies always make sure you give them the model number of the PC so they&#8217;re &#8220;sure&#8221; the memory will work. The new chips fit into the receiving slot just fine. Except the physical board was larger in one dimension than the original board in the machine. There wasn&#8217;t enough room in the memory compartment. I had to send them back.</p>
<p><a href="http://www.teebark.com/wp-content/uploads/2010/09/chips.jpg"><img class="alignleft size-medium wp-image-821" title="chips" src="http://www.teebark.com/wp-content/uploads/2010/09/chips-300x200.jpg" alt="" width="300" height="200" /></a></p>
<h3>Trial 4&#8211;Is it just me?</h3>
<p>Once I get some memory that actually works, maybe I&#8217;ll be in business. Stay tuned.</p>
<p><p style="clear:both;"></p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.teebark.com/index.php/family/linux-old-pc/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Syncing two computers (especially Outlook)</title>
		<link>http://www.teebark.com/index.php/family/dropbox/</link>
		<comments>http://www.teebark.com/index.php/family/dropbox/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 01:55:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Contracting]]></category>
		<category><![CDATA[Family]]></category>

		<guid isPermaLink="false">http://www.teebark.com/index.php/family/dropbox/</guid>
		<description><![CDATA[Dropbox.com allowed me to sync Outlook on my 2 computers, simply by dropping the pst file in a folder. Worked with Quicken, too. Magic. You just have to be careful not to have Outlook open on both computers at the same time. When you install Dropbox, it adds a folder, My Dropbox, to your My [...]]]></description>
			<content:encoded><![CDATA[<p>Dropbox.com allowed me to sync Outlook on my 2 computers, simply by dropping the pst file in a folder. Worked with Quicken, too. Magic. You just have to be careful not to have Outlook open on both computers at the same time.</p>
<p><span id="more-797"></span></p>
<p>When you install Dropbox, it adds a folder, My Dropbox, to your My Documents folder. Then, you just move your pst file to the Dropbox folder. When you restart Outlook, you will be prompted for the new location. After you&#8217;ve done that on one computer, add Dropbox to your 2nd computer. Wait a few minutes, and the pst file will appear. Then rename your pst file for the 2nd computer and start Outlook up. It will also ask for the location, and after you point it to My Dropbox, you&#8217;re in businees.</p>
<p>Dropbox takes care of syncing things automatically from that point on. I was dubious at first, but it works great.</p>
<h3>Addendum</h3>
<p>I kept getting extra PST files, named &#8220;conflicted.&#8221; After reading some more, I discovered that you have to let Dropbox download the latest PST file before you start up Outlook. Otherwise, Outlook may not pick up the latest version of the file, and when it&#8217;s in doubt, it writes an extra file, with the conflicted name embedded. Once I realized this, I now hover my cursor over the Dropbox icon until it tells me it&#8217;s through downloading. No more conflicted.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.teebark.com/index.php/family/dropbox/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

