<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>trs-80 &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/trs-80/</link>
	<description>Feed of posts on WordPress.com tagged "trs-80"</description>
	<pubDate>Fri, 27 Nov 2009 22:12:24 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Understanding TRS-80 CMD Files]]></title>
<link>http://jimlawless.wordpress.com/2009/11/08/understanding-trs-80-cmd-files/</link>
<pubDate>Sun, 08 Nov 2009 17:24:55 +0000</pubDate>
<dc:creator>Jim Lawless</dc:creator>
<guid>http://jimlawless.wordpress.com/2009/11/08/understanding-trs-80-cmd-files/</guid>
<description><![CDATA[I&#8217;ve recently begun to use TRS-80 Model I emulators to recapture some of the programming exper]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I&#8217;ve recently begun to use TRS-80 Model I emulators to recapture some of the programming experiences of my younger days.  The emulator I&#8217;m currently using under Windows is trs80gp which can be found here:</p>
<p><a href="http://members.shaw.ca/gp2000/trs80gp.html">http://members.shaw.ca/gp2000/trs80gp.html</a></p>
<p>I invoke the emulator with the command-line parameters <strong>-m1</strong> to force Model I emulation and <strong>-na</strong> for non-authentic display.  </p>
<p>While trs80gp does not support any of the Disk-Operating-Systems of yesteryear, it does provide a menu option that will load <em>/CMD</em> executable files and BASIC files.  You really can&#8217;t save any information back to the Windows filesystem, but that&#8217;s okay.  For my purposes, I want to write some programs in a cross-assembler or cross-compiler environment and will just load the files to try them out.  At some point, I will either look for or will build a utility that will tokenize a text listing to a BASIC listing so that I can create BASIC programs as well.</p>
<p>My initial goal, however, is to write Z-80 code and run it on the emulator.</p>
<p>My first task was to find a cross-assembler for the Z-80 that would run under Windows.  The trs80gp site references <strong>ZMac</strong> which sounds like a great editor, but it doesn&#8217;t appear to compile in its current form under Windows.</p>
<p>I found a utility called <strong>Pasmo</strong> here:</p>
<p><a href="http://www.arrakis.es/~ninsesabe/pasmo/">http://www.arrakis.es/~ninsesabe/pasmo/</a></p>
<p>Like some of the others I tried, Pasmo basically generates a binary machine-image file. I chose Pasmo because of the <strong>-d</strong> option which shows an assembly listing on the standard output device.</p>
<p>I would like to be able to package up anything I write into a standard <strong>/CMD</strong> file so that it can be used with other emulators or on the real hardware itself.  In order to do that, I was going to have to determine how to convert a machine-image file into a /CMD file.</p>
<p>As a test program, I would use the example routine I published in my post <a href="http://jimlawless.wordpress.com/2009/11/07/learning-z-80-assembly-language-on-the-trs-80/">http://jimlawless.wordpress.com/2009/11/07/learning-z-80-assembly-language-on-the-trs-80/</a>.  That routine fills the video memory with the all-white character (191) and then returns.</p>
<p>I have several /CMD images of games that I have on cassette and began looking through them.  I could see some control-codes and such, but my initial stab at trying to interpret them was not successful.  After a little searching on the web, I found a reference to an article from <strong>The LDOS Journal</strong> volume 1, issue 4.  Tim Mann has copies of this issue and others on his site here:</p>
<p><a href="http://www.tim-mann.org/misosys.html">http://www.tim-mann.org/misosys.html</a></p>
<p>The article that describes the format is in the column <strong>Roy&#8217;s Technical Corner</strong>.</p>
<p>Roy describes the record formats permissible in a /CMD file.  The format is not unlike the binary tag-based system used in the TIFF graphical image file format.  The first byte one encounters is a record-type byte.  The next byte is a length of bytes that will follow &#8230; sort of.  The remainder of bytes should match the length specified in the length byte.  The next record in sequence should be another record ID / length / payload sequence, but that doesn&#8217;t seem to hold true either.</p>
<p>I wrote a short C program <strong>readcmd.exe</strong> that lists each record in a /CMD file.  While number of my /CMD files parsed correctly just fine, some did not.</p>
<p>Roy explains that the 01 record indicates a loadable block of binary data.  The length byte in many of my /CMD files was zero, which I correctly assumed would yield a 256-byte block.  However some of the /CMD files in my possession use a value of two in the length byte and seem to have a payload bigger than two bytes in length.</p>
<p>The article further explains that each loadable block of data first contains a load-address and states that zero and one are special values that indicate a two-byte load-address will be followed by 254 and 255 bytes of data respectively.  The article doesn&#8217;t mention the value two, but I assume that since the 01 record will always have a load-address, two bytes will always follow.  The values zero, one, and two are then used for machine-images of size 254, 255, and 256 respectively.  The value three is a complete mystery to me.  I have seen a small block with a length of four and the payload that follows the load-address is four bytes in length.  I&#8217;ll tinker later and see how the emulators load a record with a length value of three.</p>
<p>I should state that my readcmd program is dependent on the <em>Intel</em> representation of a 16-bit integer ( Least Significant Byte followed by Most Significant Byte ).  An unsigned short integer must be 16-bits in width in order for the program below to run correctly.</p>
<p><strong>readcmd.c</strong></p>
<pre class="brush: cpp;">
// readcmd
// Dump the record information for a TRS-80 /CMD
// executable file
//
// License: MIT / X11
// Copyright (c) 2009 by James K. Lawless
// jimbo@radiks.net http://www.radiks.net/~jimbo
// http://www.mailsend-online.com
//
// Permission is hereby granted, free of charge, to any person
// obtaining a copy of this software and associated documentation
// files (the &#34;Software&#34;), to deal in the Software without
// restriction, including without limitation the rights to use,
// copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following
// conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED &#34;AS IS&#34;, WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
// OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
// HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
// WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
// OTHER DEALINGS IN THE SOFTWARE.

#include &#60;stdio.h&#62;

int main(int argc,char **argv) {
   FILE *fp;
   unsigned char buff[258];
   unsigned int len;
   unsigned short address;
	printf(&#34;readcmd v1.0 by Jim Lawless\n&#34;);
	printf(&#34;http://jimlawless.wordpress.com\n\n&#34;);
   fp=fopen(argv[1],&#34;rb&#34;);
   for(;;) {
      if(!fread(buff,1,1,fp))
         break;
			// record type is &#34;load block&#34;
      if(*buff==1) {
         fread(buff,1,1,fp);

         len=*buff;
				// compensate for special values 0,1, and 2.
         if(len&#60;3)
            len+=256;
				// read 16-bit load-address
         fread(&#38;address,1,2,fp);
         printf(&#34;Reading 01 block, addr %x, length = %u.\n&#34;,address,len-2);
         fread(buff,1,len-2,fp);
      }
      else
				// record type is &#34;entry address&#34;
      if(*buff==2) {
         fread(buff,1,1,fp);
         len=*buff;
         printf(&#34;Reading 02 block length = %u.\n&#34;,len);
         fread(&#38;address,1,len,fp);
         printf(&#34;Entry point is %d %x\n&#34;,address,address);
         break;
      }
      else
			// record type is &#34;load module header&#34;
      if(*buff==5) {
         fread(buff,1,1,fp);
         len=*buff;
         printf(&#34;Reading 05 block length = %u.\n&#34;,len);
         fread(buff,1,len,fp);
      }
      else {
         printf(&#34;Unknown code %u at %lx\n&#34;,*buff,ftell(fp)-1L);
         break;
      }
   }
   fclose(fp);
}
</pre>
<p>I found that after the 02 record is encountered, all kinds of garbage data can follow.  I assume that most /CMD loaders halt interpretation of the file after the 02 record is encountered.  You&#8217;ll notice a <strong>break</strong> out of the main input loop when readcmd encounters this record.</p>
<p>My readcmd program was able to parse through all of the /CMD files in my possession.  Now that I have a way to verify the correctness of a /CMD file, it&#8217;s time to try and build my own.</p>
<p>I really can&#8217;t remember where the first bytes of free memory really start on a Model I.  Address 17129 looks to be the spot where BASIC begins, but I&#8217;ve never owned a DOS on a Model I, so I don&#8217;t know if that address can change.</p>
<p>I noticed that a lot of the games I have begin at address 6C00H, so I chose that as the starting-address for my program.</p>
<p>Here is the slightly modified source code from my prior post:</p>
<p><strong>fill.asm</strong></p>
<pre class="brush: xml;">
    ORG     6c00H
    LD      HL,3C00H ; 15360 in hex
    LD      A, 191
    LD      [HL],A
    LD      DE,3C01H
    LD      BC,1023
    LDIR
    RET
</pre>
<p>I then assembled it with the command:<br />
<font color="blue" face="Courier New"><br />
pasmo -d fill.asm fill.out<br />
</font><br />
The output from Pasmo is as follows:</p>
<pre class="brush: plain;">
		ORG 6C00
6C00:21003C	LD HL, 3C00
6C03:3EBF	LD A, BF
6C05:77		LD (HL), A
6C06:11013C	LD DE, 3C01
6C09:01FF03	LD BC, 03FF
6C0C:EDB0	LDIR
6C0E:C9		RET
Emiting raw binary from 6C00 to 6C0E
</pre>
<p>My load-module is fifteen bytes in size.  I need to create a load-record that accommodates fifteen plus two bytes for the load address.  My 01 record will have a length of seventeen  ( or 11H ) bytes.  Here&#8217;s how the 01 record should look in hex:</p>
<pre class="brush: xml;">
01 11 00 6C 21 00 3C 3E BF 77 11 01 3C 01 FF 03
ED B0 C9
</pre>
<p>The total space occupied by the 01 record is nineteen bytes.</p>
<p>I then needed to add a 02 record to state the transfer address of 6C00H:</p>
<pre class="brush: xml;">
02 02 00 6C
</pre>
<p>The total size of the two records is twenty-three (17H) bytes in length.</p>
<p>I manually created the /CMD file using the Windows console DEBUG utility.</p>
<pre class="brush: xml;">
debug fill.cmd
e 100  01 11 00 6C 21 00 3C 3E BF 77 11 01 3C 01 FF 03
e 110  ED B0 C9 02 02 00 6C
rcx
17
w
q
</pre>
<p>I first used readcmd to ascertain that the records looked reasonable:<br />
<font face="Courier New" color="blue"><br />
readcmd fill.cmd<br />
</font></p>
<pre class="brush: xml;">
readcmd v1.0 by Jim Lawless
http://jimlawless.wordpress.com

Reading 01 block, addr 6c00, length = 15.
Reading 02 block length = 2.
Entry point is 27648 6c00
</pre>
<p>I loaded fill.cmd in trs80gp and it correctly filled the screen with whitespace.</p>
<p>I had expected the <strong>RET</strong> instruction to drop me back into BASIC, but it did not.  I&#8217;m not sure if that&#8217;s an idiosyncrasy of trs80gp or if all emulators and the actual hardware/software will behave in this manner. ( <strong>NOTE:</strong> after fixing my code to use 1023 bytes to move instead of 4095 as George Phillips, author of trs80gp notes in the comments to the post, I did indeed drop into BASIC, but received a ?SN ERROR message at the prompt.  I may try George&#8217;s suggestion of JP-ing to 1A19H at a later time. )</p>
<p>In the near future, I will write a program that will convert a larger memory-image file ( such as the one produced by Pasmo ) into a /CMD file.</p>
<p>The source and EXE files for readcmd can be found here, along with the source and /CMD file for the <em>fill</em> program.</p>
<p><a href="http://www.mailsend-online.com/wp/readcmd.zip">http://www.mailsend-online.com/wp/readcmd.zip</a></p>
<p><a href="http://del.icio.us/post?url=http://jimlawless.wordpress.com/2009/11/08/understanding-trs-80-cmd-files/&#38;title=Understanding+TRS-80+CMD+Files" target="_blank"><img title="del_icio_us" src="http://www.mailsend-online.com/wp/del_icio_us.png" alt="del_icio_us" /></a> <a href="http://del.icio.us/post?url=http://jimlawless.wordpress.com/2009/11/08/understanding-trs-80-cmd-files/&#38;title=Understanding+TRS-80+CMD+Files" target="_blank">Save to del.icio.us</a><br /><a href="http://digg.com/submit?phase=2&#38;url=http://jimlawless.wordpress.com/2009/11/08/understanding-trs-80-cmd-files/&#38;title=Understanding+TRS-80+CMD+Files" target="_blank"><img title="digg" src="http://www.mailsend-online.com/wp/digg.png" alt="digg" /></a> <a href="http://digg.com/submit?phase=2&#38;url=http://jimlawless.wordpress.com/2009/11/08/understanding-trs-80-cmd-files/&#38;title=Understanding+TRS-80+CMD+Files" target="_blank">Digg it</a><br /><a href="http://reddit.com/submit?url=http://jimlawless.wordpress.com/2009/11/08/understanding-trs-80-cmd-files/&#38;title=Understanding+TRS-80+CMD+Files" target="_blank"><img title="reddit" src="http://www.mailsend-online.com/wp/reddit.png" alt="reddit" /></a> <a href="http://reddit.com/submit?url=http://jimlawless.wordpress.com/2009/11/08/understanding-trs-80-cmd-files/&#38;title=Understanding+TRS-80+CMD+Files" target="_blank">Save to Reddit</a><br /><a href="http://www.facebook.com/share.php?u=http://jimlawless.wordpress.com/2009/11/08/understanding-trs-80-cmd-files/" target="_blank"><img title="facebook" src="http://www.mailsend-online.com/wp/facebook.png" alt="facebook" /></a> <a href="http://www.facebook.com/share.php?u=http://jimlawless.wordpress.com/2009/11/08/understanding-trs-80-cmd-files/" target="_blank">Share on Facebook</a><br /><a href="http://twitter.com/home?status=Check+out+http://jimlawless.wordpress.com/2009/11/08/understanding-trs-80-cmd-files/"><img title="twitter" src="http://www.mailsend-online.com/wp/twitter.gif" alt="twitter" /></a> <a href="http://twitter.com/home?status=Check+out+http://jimlawless.wordpress.com/2009/11/08/understanding-trs-80-cmd-files/" target="_blank">Share on Twitter</a><br /><a href="http://www.addthis.com/bookmark.php?pub=dvd&#38;url=http://jimlawless.wordpress.com/2009/11/08/understanding-trs-80-cmd-files/;title=Understanding+TRS-80+CMD+Files" target="_blank"><img title="aolfav" src="http://www.mailsend-online.com/wp/aolfav.gif" alt="aolfav" /></a> <a href="http://www.addthis.com/bookmark.php?pub=dvd&#38;url=http://jimlawless.wordpress.com/2009/11/08/understanding-trs-80-cmd-files/;title=Understanding+TRS-80+CMD+Files" target="_blank">More bookmarks</a>
<p><img src="http://www.mailsend-online.com/cgi-bin/wphit.pl" /><br />
<em>Unless otherwise noted, all code and text entries are Copyright © 2009 by James K. Lawless</em></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Learning Z-80 Assembly Language on the TRS-80]]></title>
<link>http://jimlawless.wordpress.com/2009/11/07/learning-z-80-assembly-language-on-the-trs-80/</link>
<pubDate>Sun, 08 Nov 2009 02:17:14 +0000</pubDate>
<dc:creator>Jim Lawless</dc:creator>
<guid>http://jimlawless.wordpress.com/2009/11/07/learning-z-80-assembly-language-on-the-trs-80/</guid>
<description><![CDATA[My first computer was a second-hand TRS-80 Model I with 16K of RAM and a cassette-recorder for auxil]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>My first computer was a second-hand TRS-80 Model I with 16K of RAM and a cassette-recorder for auxiliary storage.  I was 17 years old when I received this computer in the Fall of 1982.  My goal?  Like many kids my age at the time, I had intended to write a video game or two and live happily on the riches that would befall me.</p>
<p>The computer was purchased at an auction and came with a fair amount of books on BASIC including many that just contained BASIC games.</p>
<p>My eldest brother had his own TRS-80, so he let me borrow from his vast library of  <em>80 Micro</em> magazines as well.</p>
<p>My first task was to really try to learn BASIC.  I did so by typing in programs from the books and by trying to write my own.  I had been familiar with BASIC for a couple of years, but only some of the more simple aspects. I had known that if I wanted to write games, I was going to have to code using some mysterious black art known as <em>machine-language</em>.  All of the good games from Big Five seemed to be written in machine-language.</p>
<p>As I kept poring through the backlog of issues of 80 Micro, I learned how to use little machine-language subroutines via the <strong>USR()</strong> function.  In order to execute machine-language from BASIC, you had to first reserve some space at the top of BASIC at the <strong>MEMORY SIZE?</strong> when the computer powered up.  ( Note: there are ways of getting around this that I&#8217;ll explain in a future post. )  After that, you had to POKE your machine-language routine into reserved memory a byte at a time.  Authors usually placed these bytes in a series of DATA statements and used the READ command to read each one in a loop.</p>
<p>After the subroutine was placed in memory, the last task was to point the USR() function to the routine.  The address of the routine had to be broken down into two bytes, the least-significant-byte first.  I began to grow comfortable with the conversion routine &#8230; dividing by 256 to get the high-byte and taking the remainder to get the low-byte.</p>
<p>I also became very comfortable with hexadecimal notation and conversion to and from decimal notation.  The only thing I was really lacking at this point, was learning machine-language itself.</p>
<p>I began reading Hardin Brothers&#8217; 80 Micro column <em>The Next Step</em>.  This column was a tutorial on machine-language in a sort of cookbook approach.  Brothers would present some sort of a short program in assembly-language ( the human-readable syntax that is then assembled into machine-language. )</p>
<p>Most of his programs were very compact and were wonderful to study.  He would present the assembly listing for the machine-language routine complete with hex codes by each mnemonic.  I found that by converting those hex codes to decimal, I would see the same numbers in the DATA statements for the BASIC loader for the particular routine.</p>
<p>This revelation enabled me to tinker a little with some of the subroutines presented.</p>
<p>One of the machine-language subroutines that was presented in the Radio Shack Level II BASIC manual was a simple routine that would fill the screen with white space.  This was done by storing a character with the ASCII code 191 at each location in the machine&#8217;s video memory (  located at locations 15360 to 16383 inclusively. )</p>
<p>To see what the program was doing, the BASIC equivalent was easy enough to understand:</p>
<p><img src="http://www.mailsend-online.com/wp/trsbasicfill.gif" /></p>
<p>As the program ran, each character position on the screen would fill with a white block:</p>
<p><img src="http://www.mailsend-online.com/wp/trsbasicfill2.gif" /></p>
<p>The equivlent assembly language program usually looked something like this:</p>
<pre class="brush: xml;">
    ORG     0H
    LD      HL,3C00H ; 15360 in hex
    LD      A, 191
    LD      [HL],A
    LD      DE,3C01H
    LD      BC,1023
    LDIR
    RET
</pre>
<p>The first line is the ORiGin directive that tells the assembler ( the program that translates assembly-language to machine-language ) what address we plan on starting at.  This little routine is <em>relocatable</em>; it can be placed anywhere in memory because it does not internally depend on addresses within itself.</p>
<p>The major work is performed by a Z-80 instruction called <em>LDIR</em> ( LoaD-Increment-Repeat ).  LDIR is a block-memory move command that begins by taking the byte at the address held in the HL register pair and stores it at the address in the DE register pair.  Then, it decrements the BC register pair by 1 and if BC is not zero, it will increment HL and DE repeat the load-from-HL / store-at-DE / dec BC operation until BC reaches zero.</p>
<p>This routine uses a trick with overlapping memory locations.  Note that HL starts at 3C00H and DE 3C01H.  When the second iteration of the LDIR loop commences, the value it reads from 3C01H to store in 3C02H was the same as the one in 3C00H.  This trick with the source and destination addresses differing by a byte causes the memory at DE for a length of BC to fill with the first byte specified.</p>
<p>So, this is a quick memory-fill routine.</p>
<p>The assembler&#8217;s output of this routine might look like the following:</p>
<pre class="brush: xml;">
                ORG 0000
0000:21003C     LD HL, 3C00
0003:3EBF       LD A, BF
0005:77         LD (HL), A
0006:11013C     LD DE, 3C01
0009:01FF03     LD BC, 03FF
000C:EDB0       LDIR
000E:C9         RET
</pre>
<p>The hex digits to the left of each instruction comprise the instruction and its operands (if any).  Note the line <strong>LD A, BF</strong>.  This is the line that loads a character 191 into the A register.  I found that I could poke any character I wanted into byte number five of this routine and could fill the screen with that value.</p>
<p>I was slowly making headway to learning assembly language itself as I was beginning to understand that the output of the assembler program was ultimately a binary with a bunch of bytes that the Z-80 processor understood.</p>
<p>As I continued to study examples in 80 Micro, I showed some of these programs to my brother.  He brought over a couple of items that he&#8217;d gotten at a clearance sale at Radio Shack: The Radio Shack Editor/Assembler on cassette and William Barden Jr&#8217;s book &#8220;TRS-80 Assembly Language Programming.&#8221;</p>
<p>I tried to leap into the middle of the book as I had done when learning BASIC, but failed miserably.  I started anew and took it step by step.  I finally started getting somewhere.</p>
<p>It took a while, but I was able to separate the pseudo-operation command from the actual Z-80 commands and began to make my own subroutines.  I also began to use tricks with the cassette load-module format that I had seen some video games use. I figured out how to auto-start a program ( no need to type in a slash at the SYSTEM prompt), scroll the contents of the screen and blur the video in a manner similar to the effects that began the game <strong>Attack Force</strong>.  I also figured out how to load a message immediately on the screen and that the asterisk that normally flashed during a casette load could be replaced with a character 191 for a more graphical effect.</p>
<p>By the Summer of 1983, my goal was to finally write this game.  Alas, I knew nothing about software design.  I would design fragments, but I was used to just sloppily coding something together and cajoling it to work.  I really didn&#8217;t have a game idea.  I was just working on different effects and animations and was trying to stitch them together into a game.</p>
<p>Unfortunately, my cassette recorder ( like many ) was unreliable when saving / loading my games.  The EDTASM program required one to assemble to cassette, then reload to test.  This process took forever.  I had found a way to put my program at a high-enough spot in memory that I luckily found a re-entry point for EDTASM, so that once my code was tested, I didn&#8217;t have to reload EDTASM &#8230; I just entered SYSTEM and then an address ( that now escapes me ) that would leave me back at EDTASM&#8217;s &#8216;*&#8217; prompt with my source-code intact.</p>
<p>I spent many late summer nights working on that code while my TV was affixed on a then-independent cable channel from Kansas City.  I coded while listening to the audio for The Three Stooges followed by a mix of Get Smart, Hogan&#8217;s Heroes, and similar syndicated television shows from the 1970&#8217;s.</p>
<p>As I toiled away, the TRS-80 video games market crashed.  New computers were becoming popular as was the Atari 2600 video game console system.  If I had finished a game and had tried to market it through Big Five Software ( see <a href="http://www.bigfivesoftware.com">http://www.bigfivesoftware.com</a>), chances are they wouldn&#8217;t have taken it. Nor would any big-league publisher likely have taken on any new games for the TRS-80.</p>
<p>However, I didn&#8217;t finish a game. The slow development cycle and the inability to save reliably ultimately left me no choice but to move on.  I had looked at getting an expansion interface so that I could then buy a disk drive and a Disk Operating System to minimize my turnaround time, but those options were costly.  More attractive computers with color video and relatively inexpensive disk drive options started to take over the landscape.  </p>
<p>Using my knowledge of Z-80 assembly-language, I taught myself 6502 assembly-language on one of the Apple ][&#8217;s at school.  In the Summer of 1984, I bought a Commodore 64 and 1541 disk drive.  My days of hacking the TRS-80 were over.</p>
<p>&#8230;almost.</p>
<p>I amassed quite a bit of knowledge in a very short amount of time about that little computer.  I had wanted to publish some of the more esoteric things I&#8217;d found in a magazine like 80 Micro, but I never did.  I have some TRS-80 emulators and am planning on revisiting some of these subjects on this blog in the near future.</p>
<p>Oh, by the way &#8230; if you wish to email me nowadays, you can reach me at:</p>
<p>jim@trs-80.com</p>
<p>How cool is that? <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p><a href="http://del.icio.us/post?url=http://jimlawless.wordpress.com/2009/11/07/learning-z-80-assembly-language-on-the-trs-80/&#38;title=Learning+Z-80+Assembly+Language+on+the+TRS-80" target="_blank"><img title="del_icio_us" src="http://www.mailsend-online.com/wp/del_icio_us.png" alt="del_icio_us" /></a> <a href="http://del.icio.us/post?url=http://jimlawless.wordpress.com/2009/11/07/learning-z-80-assembly-language-on-the-trs-80/&#38;title=Learning+Z-80+Assembly+Language+on+the+TRS-80" target="_blank">Save to del.icio.us</a><br /><a href="http://digg.com/submit?phase=2&#38;url=http://jimlawless.wordpress.com/2009/11/07/learning-z-80-assembly-language-on-the-trs-80/&#38;title=Learning+Z-80+Assembly+Language+on+the+TRS-80" target="_blank"><img title="digg" src="http://www.mailsend-online.com/wp/digg.png" alt="digg" /></a> <a href="http://digg.com/submit?phase=2&#38;url=http://jimlawless.wordpress.com/2009/11/07/learning-z-80-assembly-language-on-the-trs-80/&#38;title=Learning+Z-80+Assembly+Language+on+the+TRS-80" target="_blank">Digg it</a><br /><a href="http://reddit.com/submit?url=http://jimlawless.wordpress.com/2009/11/07/learning-z-80-assembly-language-on-the-trs-80/&#38;title=Learning+Z-80+Assembly+Language+on+the+TRS-80" target="_blank"><img title="reddit" src="http://www.mailsend-online.com/wp/reddit.png" alt="reddit" /></a> <a href="http://reddit.com/submit?url=http://jimlawless.wordpress.com/2009/11/07/learning-z-80-assembly-language-on-the-trs-80/&#38;title=Learning+Z-80+Assembly+Language+on+the+TRS-80" target="_blank">Save to Reddit</a><br /><a href="http://www.facebook.com/share.php?u=http://jimlawless.wordpress.com/2009/11/07/learning-z-80-assembly-language-on-the-trs-80/" target="_blank"><img title="facebook" src="http://www.mailsend-online.com/wp/facebook.png" alt="facebook" /></a> <a href="http://www.facebook.com/share.php?u=http://jimlawless.wordpress.com/2009/11/07/learning-z-80-assembly-language-on-the-trs-80/" target="_blank">Share on Facebook</a><br /><a href="http://twitter.com/home?status=Check+out+http://jimlawless.wordpress.com/2009/11/07/learning-z-80-assembly-language-on-the-trs-80/"><img title="twitter" src="http://www.mailsend-online.com/wp/twitter.gif" alt="twitter" /></a> <a href="http://twitter.com/home?status=Check+out+http://jimlawless.wordpress.com/2009/11/07/learning-z-80-assembly-language-on-the-trs-80/" target="_blank">Share on Twitter</a><br /><a href="http://www.addthis.com/bookmark.php?pub=dvd&#38;url=http://jimlawless.wordpress.com/2009/11/07/learning-z-80-assembly-language-on-the-trs-80/;title=Learning+Z-80+Assembly+Language+on+the+TRS-80" target="_blank"><img title="aolfav" src="http://www.mailsend-online.com/wp/aolfav.gif" alt="aolfav" /></a> <a href="http://www.addthis.com/bookmark.php?pub=dvd&#38;url=http://jimlawless.wordpress.com/2009/11/07/learning-z-80-assembly-language-on-the-trs-80/;title=Learning+Z-80+Assembly+Language+on+the+TRS-80" target="_blank">More bookmarks</a>
<p><img src="http://www.mailsend-online.com/cgi-bin/wphit.pl" /><br />
<em>Unless otherwise noted, all code and text entries are Copyright © 2009 by James K. Lawless</em></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[The truth and change, 2:  Technoredemption Goes Pro]]></title>
<link>http://truthandrocketscience.wordpress.com/2009/08/29/the-truth-and-change-2-technoredemption-goes-pro/</link>
<pubDate>Sat, 29 Aug 2009 20:55:14 +0000</pubDate>
<dc:creator>john</dc:creator>
<guid>http://truthandrocketscience.wordpress.com/2009/08/29/the-truth-and-change-2-technoredemption-goes-pro/</guid>
<description><![CDATA[The House of Tomorrow, 1933, Indiana version In the first installment of The truth and change, I wro]]></description>
<content:encoded><![CDATA[The House of Tomorrow, 1933, Indiana version In the first installment of The truth and change, I wro]]></content:encoded>
</item>
<item>
<title><![CDATA[Verbosity]]></title>
<link>http://everbosity.wordpress.com/2009/08/17/verbosity/</link>
<pubDate>Mon, 17 Aug 2009 23:34:44 +0000</pubDate>
<dc:creator>Tench Ringgold</dc:creator>
<guid>http://everbosity.wordpress.com/2009/08/17/verbosity/</guid>
<description><![CDATA[Dreadfully sorry about the lateness of this post. I chose verbosity because it is obviously a namsak]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Dreadfully sorry about the lateness of this post.</p>
<p>I chose verbosity because it is obviously a namsake to this blog.  Not a particularly obscure word, it means <strong>the use of more words than necessary. </strong>It is, however, a great example of how you can have a literal understanding of a word but entirely miss the semantic one.  The dictionary makes the connotation of verbosity clear: it is a negative phrase.  As a child, however (and well into young adulthood),  I saw it as a compliment.  Someone who was verbose was someone who spoke in great detail with discriptive language to provide the listener with a complete picture.  Where did this mistake come from? When I was young, my favorite form of entertainment was text adventures on the TRS-80.  The most famous of this was, of course Zork.  When you reentered a room, the computer would only repeat the name and mutable information (e.g. whether or not a door is open).  A careful player though needed to reread information over and over again, making sure nothing was missed.  By typing &#8220;verbose&#8221; you would be given a full description each time you came back to the room.  One of the most important commands in the game, verbose carried only the best of connotations to me.</p>
<p>The original name for this blog was supposed to be eDiction, but the word was already taken.  It is a rather <a href="http://ediction.wordpress.com">weak word blog</a> that never has not been updated since its original nine entries ending in May, but it is easy to lose a good name to a weak blog when they don&#8217;t cost a thing.  Instead, I chose eVerbosity.  The name was free, but after I thought of the title, I did notice that someone else had coined the phrase before.  A google search brought me to a review on Yelp by <a href="http://www.yelp.com/biz/cheek-2-cheek-dance-studio-san-diego">Jon &#8220;Motor Mouth&#8221; B</a>. <strong> EVerbosity to him is using more words than necessary online.</strong></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Hello World!]]></title>
<link>http://johnaweberpmp.wordpress.com/2009/08/01/hello-world/</link>
<pubDate>Sat, 01 Aug 2009 07:14:37 +0000</pubDate>
<dc:creator>johnaweberpmp</dc:creator>
<guid>http://johnaweberpmp.wordpress.com/2009/08/01/hello-world/</guid>
<description><![CDATA[The title of this post is the first &#8220;output&#8221; I had to program way back in highschool on ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>The title of this post is the first &#8220;output&#8221; I had to program way back in highschool on a TRS-80 Model 1 in BASIC (yes, folks, BASIC for DOS &#8211; can&#8217;t remember the DOS version, but it pre-dates the 6.21 &#38; 6.22 for sure). It was the stuttttteeeeerrrrriiiiinnnngggg keyboard model if any of you out there can remember that one.</p>
<p>Just wanted you to know I&#8217;m still alive and haven&#8217;t dropped off the face of the earth. Just have had a whole bunch of summer things going on and gearing up for some new events on the horizon. Hopefully I can write some more things in another week.</p>
<p>Signing off. STOP End of Program // 99 and so on.</p>
<p>Oh, and by the way, later, to quote Geico, &#8220;So easy a caveman can do it&#8221; would have been what I said looking back on that first step in programming.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Flunking the Turing Test]]></title>
<link>http://radioflyer1980.wordpress.com/2009/07/05/flunking-the-turing-test/</link>
<pubDate>Sun, 05 Jul 2009 07:00:35 +0000</pubDate>
<dc:creator>Bob</dc:creator>
<guid>http://radioflyer1980.wordpress.com/2009/07/05/flunking-the-turing-test/</guid>
<description><![CDATA[I’ve been interested in computers since I watched them on Star Trek reruns when I was a kid.  Back t]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I’ve been interested in computers since I watched them on <span style="text-decoration:underline;">Star Trek</span> reruns when I was a kid.  Back then in the 1970’s, computers weren’t exactly interactive.  I remember when my friend Greg got a program called <a href="http://www-ai.ijs.si/eliza/eliza.html">ELIZA</a> for his TRS-80.  It was an early attempt at artificial intelligence.  Mathematician Alan Turing tried to answer the question whether or not a computer might be considered intelligent.  He came up with the “<a href="http://www.turinghub.com/">Turing Test</a>”.  Basically, if you could talk to a computer and didn’t realize it <em>was</em> a computer, the computer would be considered intelligent.</p>
<p>Greg and I could type in statements in English and ELIZA would respond back in English.  While that was a novelty (generally all typing on the TRS-80 was in BASIC), the actual conversations with ELIZA sound more interesting than they really were.  The original ELIZA program was written in 1966, the same year <span style="text-decoration:underline;">Star Trek</span> debuted on television.  The TRS-80 version of ELIZA struggled to make conversation from whatever words could fit into 4,000 bytes of memory.  Pretty much anything we typed in was answered with something like “<em>That’s interesting, please go on.</em>” or “<em>Why do you say that?</em>”  It was like having a conversation with a Magic 8-Ball.</p>
<p>Surprisingly, the concept behind ELIZA – having a large pre-programmed list of words and phrases – is still in use in artificial intelligence programs today.  The major difference is speed and scale.  Even a basic system today can hold a million times as much data and access it in nanoseconds.  I was curious to see how these new artificial intelligences matched up against old ELIZA.  I found a few so-called “chatterbots” online.  They all seem to work the same way.  A chat window is available on the page.  You type in English and it answers in English.</p>
<p>The first one I tried – <a href="http://www.newweb.net/cgi-bin/yeti/yeticgi.pl">Yeti</a> – was pretty bad.  Everything it answered with was all in caps, so it seemed like it was shouting random things at me.  I guess it could have passed for human if the person was seriously deranged. I had a better time with <a href="http://www.jabberwacky.com/">Jabberwacky</a>.  I managed to talk back and forth with it a half dozen times before things started to get a little… off.</p>
<p style="padding-left:30px;"><strong>JABBERWACKY</strong>: <em>London</em><em> is my favorite place in the world</em>.<strong><br />
ME</strong>: Why?<br />
<strong>JABBERWACKY</strong>: <em>My friends don’t like me</em>.  <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p>I lost my connection to Jabberwacky shortly after that.  I hope it didn’t do anything rash.</p>
<p>After talking to machines that were obviously machines, I thought I’d try an actual Turing Test.  I was supposed to have a chat for five minutes.  Sometimes the site connects to actual people, other folks talking the Turing Test.  And sometimes it connects to a machine.  My chat partner was named “Landru”.  We had a very pleasant chat for about a minute and a half before he froze.</p>
<p><a rel="attachment wp-att-2348" href="http://radioflyer1980.wordpress.com/2009/07/05/flunking-the-turing-test/turing-test/"><img class="alignnone size-full wp-image-2348" style="border:1px solid black;margin:5px;" title="Turing Test" src="http://radioflyer1980.wordpress.com/files/2009/07/turing-test.jpg" alt="Turing Test" width="357" height="181" /></a></p>
<p>Apparently Meka was right.  I watched too much <span style="text-decoration:underline;">Star Trek</span> as a kid.  Like Captain Kirk in so many episodes, I am able to bring a machine to its metaphorical knees just by having a discussion with it.  So, note to NASA: if Pioneer 11 shows up again, rebuilt as a planet killing death machine, give me a call.  I should be able to take care of it in a jiffy.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Making a Computer Sing]]></title>
<link>http://radioflyer1980.wordpress.com/2009/05/19/making-a-computer-sing/</link>
<pubDate>Tue, 19 May 2009 07:00:02 +0000</pubDate>
<dc:creator>Bob</dc:creator>
<guid>http://radioflyer1980.wordpress.com/2009/05/19/making-a-computer-sing/</guid>
<description><![CDATA[My friend Greg was the first person I knew who owned a computer.  We spent many hours after school w]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>My friend Greg was the first person I knew who owned a computer.  We spent many hours after school working on his TRS-80 Model I from Radio Shack.  We played games, we connected to Bulletin Board Systems via his modem, we wrote programs in BASIC.  In the spring of 1981, he got a music synthesis package called Orchestra-80.  It consisted of a little hardware device that attached to the back of the CPU and a cassette tape of software that allowed us to enter musical notes.</p>
<p>We had used a simpler program called Micro Music.  It allowed you to enter musical notes by name (A, B, C) and note length (quarter notes were 4’s, half notes were 2’s).  So, <span style="text-decoration:underline;">Mary Had a Little Lamb</span> looked something like this in Micro Music:</p>
<table style="height:28px;" border="0" cellspacing="0" cellpadding="0" width="228">
<tbody>
<tr>
<td width="43" valign="top">E4</td>
<td width="36" valign="top">D4</td>
<td width="39" valign="top">C4</td>
<td width="33" valign="top">D4</td>
<td width="36" valign="top">E4</td>
<td width="36" valign="top">E4</td>
<td width="48" valign="top">E2</td>
</tr>
<tr>
<td width="43" valign="top"><strong><em>Ma-</em></strong></td>
<td width="36" valign="top"><strong><em>ry</em></strong></td>
<td width="39" valign="top"><strong><em>had</em></strong></td>
<td width="33" valign="top"><strong><em>a</em></strong></td>
<td width="36" valign="top"><strong><em>lit-</em></strong></td>
<td width="36" valign="top"><strong><em>tle</em></strong></td>
<td width="48" valign="top"><strong><em>lamb</em></strong></td>
</tr>
</tbody>
</table>
<p>That had been pretty cool… in 1978.  It sounded like someone plunking out the melody on a piano with a single finger.  Orchestra-80 had four “voices” that could play notes simultaneously.  This allowed us to not only play the tune, but the chords as well.  However, more abilities meant more work for us.  Notes were converted to numbers based on how close they were to Middle C (which was zero), whether they were sharp (+) or flat (-), and how long the note should be played (like Micro Music, quarter notes were 4’s).</p>
<p>It wasn’t enough to just type in long strings of note information.  With four voices going simultaneously, it was easy to get out of sync with a single mistake.  Like real music, Orchestra-80 split a song into discrete “measures” that only contained a small number of notes, rests and voice information.</p>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="43" valign="top">M01</td>
<td width="36" valign="top"></td>
<td width="40" valign="top"></td>
<td width="44" valign="top"></td>
<td width="48" valign="top"></td>
<td width="48" valign="top"></td>
<td width="60" valign="top">
<p align="right">M02</p>
</td>
<td width="36" valign="top"></td>
<td width="48" valign="top"></td>
<td width="48" valign="top"></td>
<td width="48" valign="top"></td>
<td width="48" valign="top"></td>
</tr>
<tr>
<td width="43" valign="top"></td>
<td width="36" valign="top">V1</td>
<td width="40" valign="top">2n4</td>
<td width="44" valign="top">1n4</td>
<td width="48" valign="top">0n4</td>
<td width="48" valign="top">1n4</td>
<td width="60" valign="top"></td>
<td width="36" valign="top">V1</td>
<td width="48" valign="top">2n4</td>
<td width="48" valign="top">2n4</td>
<td width="48" valign="top">2n2</td>
<td width="48" valign="top"></td>
</tr>
<tr>
<td width="43" valign="top"></td>
<td width="36" valign="top">V2</td>
<td width="40" valign="top">R4</td>
<td width="44" valign="top">0n4</td>
<td width="48" valign="top">R4</td>
<td width="48" valign="top">0n4</td>
<td width="60" valign="top"></td>
<td width="36" valign="top">V2</td>
<td width="48" valign="top">R4</td>
<td width="48" valign="top">0n4</td>
<td width="48" valign="top">R4</td>
<td width="48" valign="top">0n4</td>
</tr>
<tr>
<td width="43" valign="top"></td>
<td width="36" valign="top">V3</td>
<td width="40" valign="top">R4</td>
<td width="44" valign="top">2n4</td>
<td width="48" valign="top">R4</td>
<td width="48" valign="top">2n4</td>
<td width="60" valign="top"></td>
<td width="36" valign="top">V3</td>
<td width="48" valign="top">R4</td>
<td width="48" valign="top">2n4</td>
<td width="48" valign="top">R4</td>
<td width="48" valign="top">2n4</td>
</tr>
<tr>
<td width="43" valign="top"></td>
<td width="36" valign="top">V4</td>
<td width="40" valign="top">0n4</td>
<td width="44" valign="top">4n4</td>
<td width="48" valign="top">4n4</td>
<td width="48" valign="top">4m4</td>
<td width="60" valign="top"></td>
<td width="36" valign="top">V4</td>
<td width="48" valign="top">0n4</td>
<td width="48" valign="top">4n4</td>
<td width="48" valign="top">4n4</td>
<td width="48" valign="top">4m4</td>
</tr>
<tr>
<td width="43" valign="top"><strong><em> </em></strong></td>
<td width="36" valign="top"><strong><em> </em></strong></td>
<td width="40" valign="top"><strong><em>Ma-</em></strong></td>
<td width="44" valign="top"><strong><em>ry</em></strong></td>
<td width="48" valign="top"><strong><em>had</em></strong></td>
<td width="48" valign="top"><strong><em>a</em></strong></td>
<td width="60" valign="top"><strong><em> </em></strong></td>
<td width="36" valign="top"><strong><em> </em></strong></td>
<td width="48" valign="top"><strong><em>lit-</em></strong></td>
<td width="48" valign="top"><strong><em>tle</em></strong></td>
<td width="48" valign="top"><strong><em>lamb</em></strong></td>
<td width="48" valign="top"><strong><em> </em></strong></td>
</tr>
</tbody>
</table>
<p>The beginning of the song contained information relevant to all the measures: clef, key signature, tempo, what instrument each voice was playing the notes on.  Greg and I spent a lot of time entering a single song – <span style="text-decoration:underline;">Maxwell’s Silver Hammer</span> by the Beatles &#8211; into Orchestra-80.  We had to translate the musical notes on the page to the numbers the application would understand.  We had to come up with a way to write out the chords so they would simulate a beat.  Finally, as we started playing the song back, we had to make corrections to the music from typos and actual goofs in the music book where they had one note, but we heard a different one played on <span style="text-decoration:underline;">Abbey Road</span>.  We debuted it in our music class at school that fall.</p>
<p><a href="http://radioflyer1980.wordpress.com/files/2009/05/trs80pic.jpg"><img class="alignright size-medium wp-image-1952" style="margin-left:5px;margin-right:5px;" title="trs80pic" src="http://radioflyer1980.wordpress.com/files/2009/05/trs80pic.jpg?w=320" alt="trs80pic" width="320" height="210" /></a>The syntax of the Orchestra-80 software was based on the MUSIC programming languages developed in the fifties and sixties.  When we were typing in songs, we were actually writing a program that would be compiled into music.  I haven’t typed a song into Orchestra-80 in twenty years, but the idea of breaking up a large “song” into smaller pieces &#8211; measure, voice, note – is something that resonates with me when I write programs today.  Almost all programming languages are “object oriented”; they split a complex program into smaller, manageable chunks.  When any programmer finishes their latest “killer application” and they run through it successfully for the first time… no matter how dominant their logical right brain might be, it’s literally music to their ears.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[In the beginning....]]></title>
<link>http://forkboysmac.wordpress.com/2009/03/16/in-the-beginning/</link>
<pubDate>Mon, 16 Mar 2009 20:46:08 +0000</pubDate>
<dc:creator>forkboy</dc:creator>
<guid>http://forkboysmac.wordpress.com/2009/03/16/in-the-beginning/</guid>
<description><![CDATA[And so it starts. Not just the journey into the realm of Apple computers, but into another WordPress]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>And so it starts.</p>
<p>Not just the journey into the realm of Apple computers, but into another WordPress blog.  The idea to chronicle my sojourn with Apple came to me shortly after I had posted an entry into my dSLR <a href="http://forkboy1965.wordpress.com/2009/03/14/i-dont-yet-know-what-it-means/" target="_blank">blog</a> about the purchase of said Apple computer.  &#8220;If I&#8217;m blogging about my photography journey, why not blog about a whole new way of computing?&#8221; thought I.  Why not indeed?  And so I came to the conclusion that it seemed like both a reasonable and interesting thing to do.</p>
<p>So here we are&#8230;..but now what?  I think that with this first blog entry I should offer some history as to how I came to find myself at this place in time.  Moving to Mac is, for me, a monumental step in a different and possibly exciting direction, but context is necessary.  Or so I think.  And since it&#8217;s my blog what I think rules!  Into the abyss, shall we?</p>
<p>Let us go way back in time, shall we?  Way back to when personal computing really didn&#8217;t exist.  To a time when a computer at home was one that was built from a kit (like <a href="http://oldcomputers.net/heathkit-h8.html" target="_blank">Heathkit</a>).  I remember seeing these things advertised starting way back in 1977, but I never knew anyone who owned one.  But I, like some of my friends, were very interested in computers and computing.  I think some of us were prescient enough to recognize the potential of not just computing, but home computing in particular.  However, my interest could go nowhere other into the realm of dreams as my family had neither the money to acquire this sort of stuff nor the technical skill required to build such.  </p>
<p>Jump forward to my junior year of high school (1981-1982) and my how the world had changed in just a few short years!  Home computers had moved from kits you assembled to complete packages, but they were still rather crude and most anybody in America couldn&#8217;t come up with a single reason why they <i>needed</i> one, so they remained relatively obscure.  Yet, my particular high school was lucky enough to have in its possession a variety of computer equipment and classes to go with it.  The school owned an <a href="http://www.columbia.edu/acis/history/026.html" target="_blank">IBM 026</a> card punch machine (or was it two?), an <a href="http://www.columbia.edu/acis/history/129.html" target="_blank">IBM 129</a> card punch/verifier machine (or was it two?) as well as, and this is the greatest part, a Tandy/Radio Shack <a href="http://oldcomputers.net/trs80ii.html" target="_blank">TRS-80 Model II</a> computer!</p>
<p>In that junior year of college I took both of the computer-related courses the school offered.  One class was geared towards the history and future of computing (lots of text reading, note-taking, dates and names to remember &#8211; very unexciting), while the other was a hands on course, whereby we learned how to use the punch card machines (with practice sets and such) as well as learning how to use the Disk Operating System (DOS) of the TRS-80 Model II along with about the only software we had for the Model II; some word processing application.  The school year proved to be very exciting in that at some point the computer in Tallahassee, Florida, where our grades were processed and printed, died and it meant our grades would not be tabulated, printed and mailed for some weeks.  The instructor for these classes volunteered the hands-on class students to process the student&#8217;s grades via the punch card machines.  We actually took the handwritten records presented by the schools teachers and input them to punch card templates, then verified the punched cards, processed them and then forwarded that information to Tallahassee where they were able to do the actual printing of report cards.  It was a great task and a great learning experience and while punching cards is not exciting work, it was one of the best things I ever did in high school.</p>
<p>My senior year presented me with no more courses to take, but did allow me to become a teacher&#8217;s aid and so I put in my name for such so that I could be an aid to the instructor taking over these two courses for the 1982-1983 school year (the teacher who had taught me left to teach at a local community college).  Having finished both courses with A&#8217;s and showing quite an aptitude for the work I was immediately selected for the aid position.  This was another great moment for me and allowed me to grow even more within the computing environment.</p>
<p>Again, my school was very lucky in that with the commencement of the 1982-1983 school year the school had purchased and was receiving a bunch of the brand new <a href="http://oldcomputers.net/trs80iii.html" target="_blank">Tandy/Radio Shack TRS-80 Model III</a> computers.  I don&#8217;t recall the exact number, but it was somewhere around 40.  When the gentlemen from Radio Shack arrived to deliver and install these computers, I, as the teacher&#8217;s aid, was tasked with giving them any and all help they needed and to soak in as much information I could so that I might be as of much help as possible to the new teacher.  I spent the next three weeks or so helping the two gentlemen un-box, set-up, connect, wire, turn-on, test, etc. these new machines as well as help install a printer hub device that would allow each computer to print to a single networked printer. (this was really cool, but so rudimentary compared to today&#8217;s networks &#8211; a person had to physically operate the hub &#8211; whenever a student needed to print the hub had to have a dial turned to a number that indicated what station was the computer requesting to print before the station could actually send the document to be printed)  </p>
<p>The truly special thing about this entire experience was the lead guy from Radio Shack.  When all was said and done and he was around for a few days to answer questions for the teacher, he pulled me aside and said to me how much he had enjoyed working with me over the past few weeks.  He further explained that he thought I had what it would take to work for Radio Shack in their computer division.  He believed that I could be a salesperson or set-up technician or both if I wanted to do such.  We actually spoke about this off and on during the course of the school year, but in the end I decided that it wasn&#8217;t the direction in which I wished to go.  Good thing too seeing how short-lived was the computer division of Radio Shack after the Model III.  Regardless, the gentleman was really quite kind and I appreciated that he saw something in me that I didn&#8217;t see myself.</p>
<p>After graduating high school I began working for a local bank&#8217;s computer operations center.  Making decent money my mind turned towards purchasing a computer so that I could tinker, if you will, with what I had learned over time.  There was actually a local <a href="http://oldcomputers.net/kayproii.html" target="_blank">Kaypro</a> dealer and I regularly visited them in hopes of getting up enough nerve to commit to spending what was a princely sum of money at that time (maybe $1,500?).  Alas, my better judgment was to not make the purchase (entirely for fiscal reasons) and I moped about my decision for many, many months.  And if you ask why I would have purchased the Kaypro over the Osbourne 1 it is quite simple:  (1) 9-inch screen versus a 5-inch screen AND the metal case of the Kaypro was just begging to be painted something cool!</p>
<p>In junior college I took all the computer-related courses I could get my hands upon (and enjoyed seeing my old junior year instructor again!) and seriously considered a career in computing.  However, something bad occurred on the way to this dream.  When I visited the guidance counseling office my counselor pointed out that so many students were going into the world of computers, software, etc. that it would likely create such a glut of graduates I would find it both difficult to find work and that wages would be pushed downward.  Regardless of how much I enjoyed what I was doing I heeded their advice and abandoned this direction.  Needless to say, the counselor couldn&#8217;t have been more wrong as there was explosive growth in the computing world and graduating students were making money hand-over-fist for years and years to come.</p>
<p>There was, after this time period, something of a darkness in my world regarding computers.  I withdrew from junior college and wandered fairly aimlessly for some years.  However, wherever I worked I almost always had exposure to computers and regularly learned as much as I could and often became the de facto go-to guy for questions about software and such amongst my fellow employees. </p>
<p>My first real exposure to anyone who owned a computer at home was through a girlfriend I dated in the mid 1990&#8217;s.  Her brother owned a 1993 Apple Color Classic (also released as the Performa 250), but I really didn&#8217;t have any appreciable exposure to it other than he thought it was the total bomb.  Not too much later, my best friend, George, acquired a computer from his father.  George was off to university and his father, having loads of dough, thought his son could make use of these wonderful machines during George&#8217;s matriculations.  And he was right.  George did make good use of the computer, but to be frank we never did anything with it.  It wasn&#8217;t like today when folks play games, get on the Internet, e-mail, IM, etc.  It was really a tool for school.  For writing papers mostly I imagine (and maybe some game play).  Jump forward just a bit further and my other best friend, Tad, also left for school and his parents acquired for him a desktop computer.  Still long before the Internet and e-mail, Tad made use of the device for school, but by now computer games had really come into their own.  He actually owned and we regularly played (when we visited him at school, which was out of Florida) computer games on his machine; being particularly fond of Atomic&#8217;s <i>V for Victory</i>.  But still, a computer had not yet entered my domain.</p>
<p>Leaping forward to around 1995 I met the woman who would become my wife.  She actually owned a personal computer and because it had a host of problems (no doubt brought about due to a lightning strike) we elected to purchase a new PC together when we started living together.  It was some Hewlett Packard model running Windows 3.1.  I do not have any particular memories about the machine other than it worked as advertised and we used it mostly for getting onto the burgeoning world of the Internet and for e-mail, which had become more well-known, but was still in its infancy in so many ways.</p>
<p>In or around 1999 we replaced our first HP with a second HP computer with Windows 98.  This computer also stands out for nothing in particular, which is probably a good thing when you get down to it.  Not standing out in my mind means that it didn&#8217;t do anything stupid or otherwise untoward.  I think these are positive qualities in a computer when you get right down to it.  A computer should be a means to an end and not get in the way.  It was with this computer that we started to find more and more uses for a home PC.  We used it for all our letter writing.  For lots of e-mail.  For plenty of Internet access (even at dial-up speeds it was still a brave new world).  And for school.  In 2000 I returned to university to work towards obtaining a degree in accounting, which I finished in December of 2004.  During my time back at school the computer became an indispensable tool; a requirement actually.  There were required courses in computer-related areas and there was such a need for one we purchased our first laptop: a HP zt1130 (very basic, but it was all I needed and all we could afford, but it was a trooper and a most excellent laptop, which we still own, but do not use).</p>
<p>Wow.  I just realized how much I have been typing.  To be frank, I really haven&#8217;t ever given much thought to my long history with computers and computing-related issues.  And I&#8217;ve left out a bunch of stuff (if you can imagine such) that could further expand this entry, but I&#8217;m not going to do that.  Instead, I&#8217;m going to jump into the more recent history, which helped bring me to where I am today:  a new iMac owner.  So please hang on for a bit longer&#8230;.</p>
<p>Around the end of 2003 my wife and I began to think that it was time to update (i.e. replace) our then-current HP desktop PC.  We now had two digital cameras as well as a Sony MiniDV camcorder and the HP just wasn&#8217;t quite up to spec to work with these devices and the files they create.  We began our search at Best Buy and with Hewlett Packard.  And why not?  We had, by this time, owned three HP computers (plus two HP printers) and they had all performed just fine for us.  And this includes the various versions of Windows operating systems which had been installed upon those machines.  We really had no reason to consider doing anything other than another HP desktop PC and so the window shopping, comparing and contrasting began.  </p>
<p>However, by this time I had also become rather aware of the home-built desktop PC market.  I really didn&#8217;t know much about it, but I knew that there were folks out there building their own home computers.  Successfully.  Reliably.  But I wasn&#8217;t anywhere near considering this route.  After all, in my mind folks still had to solder together motherboards and hand-craft RAM&#8230;.or so I thought.  About the same time as all this shopping, my sister had been married to a nice young man who was very computer literate.  So much so that he had been building his own home PCs for some years.  When I was discussing my issues and concerns in trying to find the right HP model he suggested I build.  &#8220;But I don&#8217;t know anything about it,&#8221; I replied.  However, he assured me that it really wasn&#8217;t that difficult.  He talked to me at length regarding how to go about this endeavor.  He suggested some web sites for me to read and suggested I try putting together a PC of my own by selecting the components through some online retailers and that he would look over my choices to make certain they were compatible.  And this I did.</p>
<p>I had a budget for the replacement PC and I used this budget to assign my priorities.  I read the recommended web sites.  I carefully culled the components that I thought would be both compatible with each other as well as meeting my needs and expectations.  I shared my selections with my brother-in-law and upon his approval I placed my order.  Once all the components arrived I drove over to my sister and brother-in-law&#8217;s home and together we assembled my new PC on a lovely Saturday afternoon.  The actual assembly of the PC took maybe two hours, which surprised me as I had anticipated it taking much longer.  It was, however, the installation of the OS (Windows XP Pro) and other software/drivers that took the rest of the afternoon.  But this was, of course, a good time to enjoy some libations!</p>
<p>Let me say this about my home-built PC:  it was an incredibly rewarding process.  Not only had I done something I would have never considered doing on my own, but I was now so much more aware of what goes into a computer as well as how they work.  This home-built PC has been fantastic.  We&#8217;ve had zero problems with it.  It only has loaded onto it software that I want as opposed to what a manufacturer might wish to install.  It&#8217;s been a wonderful device to own.  Really.  I can&#8217;t say enough good things about having built my own PC.  I think everyone should do it.  I was so excited and happy with the results that I offered to build one for my parents as well and they still have and use it daily as we do ours. </p>
<p>And so we now jump forward to today.  Or, to be more accurate, we jump to November 2008.  My home-built desktop PC would be celebrating its fifth birthday in January 2009 and we have long held a belief that computers have to be replaced at regular intervals so that we can take advantage of new software and features that come along, which are more taxing on a computer&#8217;s hardware.  The interval that has worked for us thus far is five years and this date was quickly looming.  As I saw things I had one of four options:  build again, buy from a big name (HP, Sony, Dell, etc.), buy from a custom builder (Puget Systems being my choice), or go Mac.  </p>
<p>My foray into dSLR photography has had a very real impact on the need for us to update our computing power.  If it weren&#8217;t for this hobby I think we could have put off this purchase for another year.  Maybe two.  Upgrading the current desktop to new and larger hard drives along with another stick of 1GB RAM would have been more than sufficient for 99% of our needs.  But more powerful photo and video editing software really drags our current desktop PC to a screeching halt; sometimes crashing the poor rig.  But as long as I&#8217;m involved in both photography and video (and hopefully high def video late this year/early 2010) the current desktop wouldn&#8217;t suffice.</p>
<p>And so I began the process of determining which of my options I would take.  Honestly&#8230;..I really thought that I would wind up buying a custom-made rig from Puget Systems.  I could build again, but I saw what I thought was the smart choice of paying a bit more to have someone else do it and offer a warranty (and a long warranty at that!).  I&#8217;m certain a home-built machine would have been fine, but there is the advantage these custom builders have in that they see, over time, how well the components they use work together, which is something I could not do.  But there was a fly in this ointment:  Windows Vista.</p>
<p>In December 2007 I purchased a mid-level HP laptop for my tiny home business.  I had no choice and took the laptop with Windows Vista Home Premium.  I really did not want Vista.  It had received so much bad press during the year-plus it had been out, that I was in no mood to deal with it.  But my choices were thin.  I could have obtained a Dell or IBM laptop with XP installed, but they were out of my price range.  So Vista it was.  During those first few months of Vista ownership I could be found thinking to myself &#8220;You know&#8230;Vista isn&#8217;t too bad.  I don&#8217;t know what all the bad press was about.&#8221;  But after the first few months of ownership things started to change.  I began to encounter more and more problems with the laptop (which doesn&#8217;t have much loaded on it anyway &#8211; it&#8217;s pretty stripped down software-wise) and in most every case I was able to eliminate both the hardware and/or other software as the culprit.  It was, time and time again, Vista.  And as my first year of Vista use came to a close I was quite certain that I did not want Vista on a new desktop PC.  I would  pay the extra bucks to have XP installed and when Windows 7 came out I would then determine the desirability of upgrading. (as an aside, the press has been very positive thus far regarding Windows 7 and I truly hope that Microsoft has a winner on its hands as XP was good, but not great, and Vista has been an unmitigated disaster for them&#8230;.and for most of us using it)</p>
<p>So, there I sat, staring at the specs of a machine I had built via the Puget Systems web site, and I was satisfied.  But there remained this niggling sense of doubt.  This feeling that I could do&#8230;..better, if &#8220;better&#8221; is the right word (and I&#8217;m not certain it is).  This sense that I needed to try something new instead of once again putting all my eggs into the Microsoft basket.  And so I began looking at Macs.</p>
<p>The Mac Mini was my first choice.  This may seem strange considering that it really is nothing more than a laptop in a small, but elegant box.  But it seems awfully pricey at $599 and $799.  No keyboard.  No mouse.  No display.  Okay, keyboard and mouse:  $60.  Monitor?  No problem&#8230;.I could attach it to my current 20-inch Viewsonic monitor and use the monitor for both my desktop PC as well as the Mini.  But there remained one killer to the whole deal:  the 64MB of onboard video.  As I would like to go with high-def video in the not too distant future I didn&#8217;t see 64MB of shared video as appropriate.  Not at all.  And so my interest in the Mini quickly disappeared.  Next up was the iMac.  I&#8217;ve never been fond of Apple&#8217;s all-in-one philosophy on their desktop counterpart.  Granted, the iMac line is very beautiful to behold; elegant.  But it never felt right to purchase an all-in-one and I really don&#8217;t know why, other than that I&#8217;m so accustomed to the whole separate tower and monitor set-up.  There probably isn&#8217;t any real reason for me to dislike it other than it is outside of my sphere of experience.</p>
<p>As I&#8217;m doing the whole photography and video thing it was clear that I should be looking only at the 24-inch varieties of the iMac.  But wow.  The prices really were hard to swallow.  I know there is a premium for Apple equipment (for a variety of reasons:  elegant and thoughtful design, Mac OS, the additional software that comes loaded, etc.), but it is a bit hard to handle when one looks at the price tags.  But as I read more and more about them and considered what I was getting with my Puget Systems customized rig I quickly realized that there wasn&#8217;t that much of a difference in price.  But there was one thing holding me back at that time:  the iMac line hadn&#8217;t been updated in some time and rumors were rife that an update was coming.  If Apple remained true to their history it was most likely that they would update the specs of the machines while holding prices steady.  So I opted to wait.  I didn&#8217;t need the new machine right away and why purchase a current rig at the end of its life cycle?  I mean, other than trying to get a deal on it, but Apple keeps supplies pretty tight in advance of a new replacement, as such I wasn&#8217;t certain I could really get that great a deal on an out-going model anyway.</p>
<p>And so it came to be.  On 3 March (if memory serves) Apple announced a whole slew of updates to their computer line.  New Minis.  New iMacs.  New Power Mac.  But Apple had done something different this time.  While the new lines were introduced with little fanfare they were not only updated on specs, but at lower pricing for the entry level iMac.  Mind you, the entry level iMac, while a competent machine, wasn&#8217;t going to serve my needs.  One quickly learns that purchasing entry level computers only leads to replacing them sooner than one might otherwise.  In other words:  spending a bit more up front will save you in the long run (at least in my opinion).</p>
<p>The new iMacs were a nice step up from their predecessors, but they were not marked improvements.  Sure, they doubled the size of the hard drives (but hard drives are cheap) and they doubled the RAM (which is also cheap, but they did upgrade to DDR3 from DDR2!), but no quad-core option, which was what some in the Mac rumor crowd were suggesting we&#8217;d see (at least as a top-of-the-line version).  Otherwise it was pretty much the same, but hey:  better specs for the same dollars is nothing to sneeze at.  And while looking at Apple products online is fine, seeing them in person and asking questions is even better.  However, there is no official Apple store where I live (Dayton, Ohio), but there is an authorized Mac reseller who I quickly went to visit.</p>
<p>My trips to <a href="http://www.applesales.com/" target="_blank">MacTown (&#8220;Behind the Dayton Mall&#8221;)</a> were well spent.  I asked all the questions I had and I didn&#8217;t leave until I felt I had a more thorough understanding of the iMac and how they work, etc.  And let me offer a shout-out to the staff at MacTown, who were always polite and helpful, which, in no small part, helped cement my decision to purchase from them instead of directly from Apple (which would have allowed me to spread out my payments for the Mac over time instead of paying for it all at once).  </p>
<p>I&#8217;m really not certain where or when the tipping point occurred in regard to this purchase.  Having been a life-long Windows user I confess to being slightly weirded out by the addition of an iMac to our household.  It is, the OS that is, weirdly familiar, but foreign at the same time.  I really wish I could identify the precise moment when I said to myself &#8220;I&#8217;m going Mac,&#8221; but I can&#8217;t find it in the recesses of my memory.  It just happened.  Suddenly I was no longer interested in anything other than the iMac I had settled upon (budget being important I opted for the 2.93GHz middle-of-the-pack model).  And just as suddenly I was at MacTown and laying down the dough for an iMac.  Maybe, as the next few weeks roll by I will discover what exactly it was that made the decision for me.  I mean, there are plenty of reasons why to make the change (no need for anti-virus software, the Mac OS, reliability, its popularity with the photography crowd, etc.), but I really want to know what it was that pushed me over the line and into the arms of Woz and Jobs.</p>
<p>And here we are.  Last Saturday night (two days ago) I dropped by MacTown with Amex card in pocket and selected the 24-inch iMac with 2.93GHz dual-core processor along with a copy of iWorks and the AppleCare extended warranty (three years &#8211; hell yeah!).  I drove home, feeling slightly nervous and queasy (because I had (1) just spent a buttload of money &#8211; the sort we normally don&#8217;t drop all at once for anything &#8211; and (2) I bought a Mac, which still seemed very weird) and upon arrival made room for the new computer on my desk in my small office area for my little home job.  I brought up the boxed Mac, opened said box, pulled out the little box with the user&#8217;s start-up guide and read through the directions (all what?  8 or 10 pages?) and then followed the directions.  </p>
<p>Funny&#8230;.it actually took me longer to take off the protective plastics and anti-static cover than it did to plug it in and turn it on.  I mean really&#8230;.all that was involved was to remove the protective coverings, install the power cord, plug in the keyboard, then mouse and turn it on.  It found our wireless network without any intervention from me (granted, we don&#8217;t have it running with any security options because they are not necessary where we live) and quickly sped me through the registration and set-up process.  From clearing off the desk to downloading Firefox (sorry Safari) <i>maybe</i> 30-minutes had passed.  I was impressed already.</p>
<p>I was also rather intimidated.</p>
<p>On the display counter at MacTown the 24-inch models didn&#8217;t look particularly large.  But once I had it home, out of the box and on the desk, it suddenly loomed over me and the rest of the room.  It seemed massive, but still delicate.  The screen truly overwhelms the rest of the device so it appears huge, but weightless at the same time.  </p>
<p>But what are my impressions thus far, right?  What do I think from my five or six hours of playing around with it?  Well, I&#8217;ll tell you:</p>
<p>It&#8217;s gorgeous.  It&#8217;s very quiet (except for when the DVD drive first engages).  The built-in microphone looks more like a spot on the frame than a microphone.  I don&#8217;t like the Mighty Mouse (but I don&#8217;t like mice in general and have been using trackballs for probably 10 years or more).  The packaging is nice, but I find it bit funny that they boldly display &#8220;Designed in California&#8221;, while not bothering to boldly announce that everything is made in China.  It has been, thus far, pretty easy to navigate around and find things.  When you put it to sleep it goes right to sleep and when you wake it up it wakes up right away (my laptop with Vista constantly struggles to do either appropriately).</p>
<p>But it&#8217;s not all sunshine and bunnies.</p>
<p>As I already stated, I very much dislike the Mighty Mouse.  The method by which one actually completely closes a running application is a bit more convoluted when compared to Windows (at least in my opinion and since this is my blog it is my opinion that counts).  The stand could use more in the way of non-skid pads on the bottom.  I think there could be a bit more resistance built into the tilting mechanism (it works very smoothly, but feels like it is too loose and could fail to hold the body in place in the future, but I don&#8217;t know that this would ever occur).  And why o&#8217; why does Finder remain up all the time and light with a light in the doc?  One or the other would be fine, but both seems needless.</p>
<p>As you can see, my complaints are really pretty insignificant in the great scheme of things.  I&#8217;m already looking into a trackball option for the Mac and I could always purchase a few non-skid pads from the local hardware store if I really wished.  </p>
<p>I do have one final complaint issue, but it is not related to the computer itself.  As MacTown is closed on Sundays I had to resort to contacting Apple tech support for a quick question, which was actually about my AppleCare plan and not any question I had about the computer or software.  While speaking with folks about the AppleCare plan it was made known to me that the technicians to whom I would speak would be Americans, thus letting me know that AppleCare was not outsourced to folks in countries where English was not their first language.  This was very satisfying to know and you would feel the same way if you have ever had to deal with technician who not only speaks English as a second language, but also comes with a heavy accent.  (Let me make this perfectly clear:  I have no problem with folks living in other countries, having their own languages and cultures.  I don&#8217;t speak a second language and it&#8217;s amazing how well these folks are trained in speaking English.  But none of this changes the fact that they can be difficult to understand and this isn&#8217;t good considering the importance of the information one is trying to obtain from them.  Something as important as tech support really should be coming from within the United States as far as I&#8217;m concerned and shame on U.S. companies for not doing such.)  However, when I was on the phone with Apple tech support the person to whom I was speaking definitely had a heavy Indian (continent) accent and I had some difficulty understanding her.  I don&#8217;t know if this means that I was given inaccurate information or if the U.S. tech support facility hires employees who do not speak English as their first language, but whatever the reason, I wasn&#8217;t particularly thrilled.  But we&#8217;ll see how that goes in the future as well.</p>
<p>And here we now are&#8230;.at the end of this opening tome.  I&#8217;m so very sorry that this opening blog entry is so incredibly long and winding, but I confess to enjoying blogging.  And typing.  And telling a story, regardless of how boring it may be for you.  But I felt it important, if for no one else but myself, to get out there the history I have experienced in the world of computing and how all these various roads have led me to this point: the owner of a Vista-driven laptop; a XP Pro-driven, home-built, desktop PC; and a brand spanking new iMac from Apple.  Never mind that I&#8217;m not really certain how I&#8217;m now with a Mac, but getting this all out of my head may help illuminate the matter as the next few days pass.</p>
<p>Hope you have enjoyed the ride just a little bit and come back for updates as they appear, which should be regular and frequent.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[My Soft Spot for Hardware]]></title>
<link>http://radioflyer1980.wordpress.com/2009/03/10/my-soft-spot-for-hardware/</link>
<pubDate>Tue, 10 Mar 2009 07:00:31 +0000</pubDate>
<dc:creator>Bob</dc:creator>
<guid>http://radioflyer1980.wordpress.com/2009/03/10/my-soft-spot-for-hardware/</guid>
<description><![CDATA[My house can be compared to a computer graveyard.  Over the years I&#8217;ve owned a number of PC co]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>My house can be compared to a computer graveyard.  Over the years I&#8217;ve owned a number of PC compatible machines.  While I&#8217;ve stripped most of them for usable parts: RAM, hard drives and so on, I do have a couple of complete machines.  I kept my first PC &#8211; a 486 SX &#8211; less for nostalgia and more for money.  It cost me $2,500 back in the day.  All of my other computers put together didn&#8217;t cost me that much.  I can&#8217;t just let it go.</p>
<p>I have my first computer &#8211; a Radio Shack TRS-80 Model III &#8211; set up in my office closet (yes, I&#8217;m a closet TRS-80 user).  My second computer &#8211; a Color Computer 2 &#8211; is down in the basement on a shelf in its original box.  I also have two old laptops.  I kept my laptop running Windows 95 because it is the only machine that will run certain apps.  And I have my TRS-80 Model 100 on a prominent place on my bookshelf along with my TRS-80 related books.  They&#8217;re all about the same size; it appeals to my technical <em>feng shui</em>.</p>
<p>All of these machines could probably be emulated by my current home computer.  I have a number of virtual machines I use for work development.  Supposedly, you can load up other operating systems besides Windows: Linux and even DOS.  Virtual TRS-80&#8217;s are available on the Internet in many flavors from the original Model I through the early Tandy machines that I sold when I worked at Radio Shack.</p>
<p>I can understand the appeal and &#8211; eventually when the hardware finally dies &#8211; I might go that route.  However, emulation only goes so far.  I can run the programs; I can see a (similar) interface on the screen.  But it lacks the true input and output and what made the machines themselves important or intriguing.  My TRS-80, for example, had its own key for the [@] symbol (ironically, this was before e-mail addresses had &#8220;@&#8221; in them).  While they may be able to run programs, they wouldn&#8217;t be able to run them off the original floppy disks or the cassettes that I have.  There is no cartridge interface available for the emulated Color Computer.</p>
<p>Ultimately I feel there is still room for growth when the original hardware still exists.  A quarter century on, there is <a href="http://www.club100.org/nadsboxoverview.html">new and exciting hardware being developed for the TRS-80 Model 100</a>.  Without the special characteristics, the quirkiness and &#8211; yes &#8211; the limitations of the hardware, there would be no need for this kind of creativity.  Emulation is &#8211; at best &#8211; static.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Old computers bring back old memories]]></title>
<link>http://curtfletcher.wordpress.com/2008/12/06/old-computers-bring-back-old-memories/</link>
<pubDate>Sat, 06 Dec 2008 17:13:13 +0000</pubDate>
<dc:creator>curtfletcher</dc:creator>
<guid>http://curtfletcher.wordpress.com/2008/12/06/old-computers-bring-back-old-memories/</guid>
<description><![CDATA[The Obsolete Technology Website  is a great resource for photos, chronological history, and features]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>The <a title="Obsolete Technology Website" href="http://oldcomputers.net/index.html" target="_blank">Obsolete Technology Website </a> is a great resource for photos, chronological history, and features of computers that kicked off the pc revolution.  These computers bring back a lot of memories and it is hard to believe that most of them are only 4k-128k in memory while the memory card in my cellphone is 8,000,000,000k (8 gig).</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/okHAmAxztNk&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/okHAmAxztNk&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p>I owned the Radio Shack TRS-80 Color Computer (that my parents bought me as a Christmas present) which provided hours and hours of fun and learning even though really all it could do is play chess and write BASIC programs.  I think I had a couple other games as well.   The computer attached to a cassette player to save programs on tape.  I wish I still had that thing.</p>
<p>Check out the web site to see what you used to have.</p>
<p> </p>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-1095" title="This was a big part of my childhood, the TRS-80 Color Computer" src="http://curtfletcher.wordpress.com/files/2008/12/color-computer.jpg" alt="This was a big part of my childhood" width="270" height="157" /></p>
<p> </p>
<p><img class="aligncenter size-full wp-image-1096" title="Ad for the TRS-80 Color Computer" src="http://curtfletcher.wordpress.com/files/2008/12/color-computer-ad.jpg" alt="Ad for the TRS-80 Color Computer" width="270" height="364" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Visicalc]]></title>
<link>http://rhodblog.wordpress.com/2008/11/16/visicalc/</link>
<pubDate>Sun, 16 Nov 2008 15:25:05 +0000</pubDate>
<dc:creator>Rhod</dc:creator>
<guid>http://rhodblog.wordpress.com/2008/11/16/visicalc/</guid>
<description><![CDATA[J&#8217;ai reçu, il y a quelques temps déjà, deux versions de VISICALC, les versions ATARI 8 BIT et ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>J&#8217;ai reçu, il y a quelques temps déjà, deux versions de <strong>VISICALC</strong>, les versions <strong>ATARI 8 BIT </strong>et <strong>Apple II</strong>.</p>
<p style="text-align:center;"><a href="http://rhodblog.files.wordpress.com/2008/11/visicalc.jpg"><img class="aligncenter size-full wp-image-136" title="visicalc" src="http://rhodblog.wordpress.com/files/2008/11/visicalc.jpg" alt="visicalc" width="459" height="464" /></a></p>
<p>C&#8217;est la première <strong>KILLER APPLICATION</strong> et aussi le<em> 1er tableur de l&#8217;histoir</em>e de l&#8217;informatique&#8230; La version d&#8217;origine est celle sortie sur l&#8217;<strong>Apple II</strong>, puis elle fut portée sur <strong>Commodore PET, Atari 8 BIT, IBM PC, TRS 80</strong> et bien d&#8217;autres machines. Bien sur cette très bonne idée a été rapidement copiée. <strong>SuperCalc</strong>, puis<strong> LOTUS 1-2-3, Multiplan, AppleWorks, Excel</strong>&#8230;. Ce logiciel révolutionnaire pour l&#8217;époque a été développé par <strong>Dan Bricklin</strong> et<strong> Bob Frankston</strong>.</p>
<p style="text-align:center;"><a href="http://rhodblog.files.wordpress.com/2008/11/visi2.jpg"><img class="aligncenter size-full wp-image-137" title="visi2" src="http://rhodblog.wordpress.com/files/2008/11/visi2.jpg" alt="visi2" width="471" height="396" /></a></p>
<p style="text-align:center;"><strong>Bob Frankston et </strong><strong>Dan Bricklin</strong><strong> </strong></p>
<p>Ce logiciel était le rêve pour tout comptable !  Il a permis à APPLE de vendre des milliers de micro-ordinateurs rien que pour son utilisation. Ce fut donc bien une Killer Application !</p>
<p style="text-align:center;"><a href="http://rhodblog.files.wordpress.com/2008/11/visicalc.png"><img class="aligncenter size-full wp-image-138" title="visicalc" src="http://rhodblog.wordpress.com/files/2008/11/visicalc.png" alt="visicalc" width="500" height="342" /></a></p>
<p style="text-align:center;">
<p style="text-align:center;"><a title="Visicalc / Apple II" href="http://www.rhod.fr/pages/visicalc-apple2.html" target="_blank">Visicalc / Apple II</a></p>
<p style="text-align:center;">
<p style="text-align:center;"><a title="le site de Dan Bricklin" href="www.bricklin.com" target="_blank">Dan Bricklin&#8217;s Web Site</a></p>
<p style="text-align:center;"><a title="la section Visicalc du site" href="http://www.bricklin.com/visicalc.htm" target="_blank">la section Visicalc du site</a></p>
<p style="text-align:center;">
<p style="text-align:left;"><strong>Début janvier sera mis en ligne un article complet</strong> sur <strong>VISICALC</strong>, un logiciel qui mérite qu&#8217;on explore un peu plus son histoire.</p>
<p style="text-align:center;"><a href="http://rhodblog.files.wordpress.com/2008/11/lotus123.jpg"><img class="aligncenter size-full wp-image-139" title="lotus123" src="http://rhodblog.wordpress.com/files/2008/11/lotus123.jpg" alt="lotus123" width="340" height="256" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Lamotrigine dream]]></title>
<link>http://mikestermike.wordpress.com/2008/11/14/lamotrigine-dream/</link>
<pubDate>Fri, 14 Nov 2008 21:10:08 +0000</pubDate>
<dc:creator>mikestermike</dc:creator>
<guid>http://mikestermike.wordpress.com/2008/11/14/lamotrigine-dream/</guid>
<description><![CDATA[It has been a few days since I have posted anything. I have just been too tired in the evening, main]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">It has been a few days since I have posted anything. I have just been too tired in the evening, mainly due to the lamotrigine I ingest, as well as my desire to play some Call of Duty or Company of Heroes. Hell, I even logged in to Second Life, but what few friends I had are pretty much gone. It’s a terribly boring game I’ll probably leave when my subscription is up.</span></span></p>
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;"> </span></span></p>
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:14pt;line-height:150%;"></span></p>
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;"><!--more--></span></span></p>
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:14pt;line-height:150%;"></span></p>
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">The dreams are still there. Hey Cathy, you made one of my dreams. Not a main character or guest star. Not even a cameo. More like an uncredited appearance. But, it was you. Nothing funky or sexual, just there. Oh well.</span></span></p>
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;"> </span></span></p>
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">I have really grown tired of the dreams. My mind shouldn’t work that hard when I am resting. I think I will try to quash them with a big ol tub of Margaritas I have chilled. We’ll see how that goes.</span></span></p>
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;"> </span></span></p>
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">The boy is growing up. He has hit those terrible twos, so he pretty much as bi-polar as I am, just I didn’t throw a fuss when it was bath time. </span></span></p>
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;"> </span></span></p>
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">Those who know me and know Chel really well, all 2 of you it seems, know that we haven’t been active in any extracurricular activities. Not sailing or the other. We have definitely hit the doldrums as a couple. We do stuff with Nikolai, but as far as our relationship goes, it’s pretty much idle.</span></span></p>
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;"> </span></span></p>
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">I was thinking about a response I made to Cathy’s blog about how irritating it is for a woman (or girl of any age during any timeframe or point in my life) to blurt out when I first meet them that “I AM MARRIED”. What is even worse are women who can’t shut up about their husbands. I don’t give a rat’s ass that you are married. I don’t. I am not gonna throw down with you. Why does it bother me so?:</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .5in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">I don’t tell you something about my life when I first meet you. Your marriage is your business, not mine.</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .5in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">If I want to know, I will ask. Especially if I think I might boink you.</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .5in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">When guys meet, they don’t talk about their wives, unless that is an established part of their repertoire. </span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .5in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">By talking just about your husband and not yourself, you either have deep emotional issues about your shortcomings, you are incredibly dull, or you are afraid of what your husband might do to you if you say anything else.</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .5in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">As a currently married man, it wouldn’t matter if I was breaking one vow or two because I’d be breaking them if I do boink you, so the point of you being married is moot.</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .5in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">If I weren’t married, and you were, it would be only YOUR issue if I were to boink you (that is a willing boink, and assuming your husband is not a ninja, pirate, or NRA member), so the fact you are married will not prevent me from trying a boink if you seemed receptive to the idea of a boink. No means no, regardless of marriage status.</span></span></p>
<p class="MsoNormal" style="line-height:150%;margin:0 0 0 .25in;"><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">I believe that women do that because they believe by saying so that men would stop looking at them as sexual object and treat them normally. Sorry, hon, men treat women as sexual objects constantly, married or not. The gentlemen just keep it in their heads.</span></span></p>
<p class="MsoNormal" style="line-height:150%;margin:0 0 0 .25in;"><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;"> </span></span></p>
<p class="MsoNormal" style="line-height:150%;margin:0 0 0 .25in;"><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">So, what else irks me? Hmmm:</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">People driving and talking on handset cell phones. You don’t notice how bad a driver you are because you are on that damned thing, because you don’t notice anything! Pull over &#38; talk. No drive &#38; text either…</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">I am paranoid about bad breath. You should be, too.</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">People who can’t use Outlook and its Calendar feature. If you have a meeting at 8:30, DON’T schedule one with me at 8:30 as well! I don’t get to see that you have a meeting conflict. Think, man!</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">People who want to get on the web and try to fire up their dusty old TRS-80 and call me asking why it doesn’t work. Read a magazine, figure out what “modern” means, get a book and get you a decent machine. </span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">If I do work for you, and install freeware antivirus/anti-malware software on your machine, don’t take it off. The reason I had to work on your machine was because it had 1,000’s of Trojans and worms on it from all your porn surfing. Those will prevent it. And, since I don’t charge for my services, it pisses me off because I wasted my time.</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">If you say you will meet me somewhere, and you cancel at the last second, and it ain’t no fucking crisis but rather something more sinister, I will be peeved but ok. If you do it twice I will be irate. And you can just go fuck yourself at thrice.</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;"><span> </span>If you don’t know what a router is, you don’t need one, so stop asking.</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">I let little old ladies go in front of me in line at the grocery. I do not let people go in front of me because they ride in those store-owned electric fat-ass carts. Too bad. </span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">People who still write a check at the grocery. Most likely it will bounce anyways. Forgiveness given to those who have dickwad banks who turn off their ATM cards for no damn reason (TDECU).</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">People at TDECU, especially those in the ATM card department. You are ALL a bunch of idiots, including the vice president. Or terrible liars. Or grossly incompetent. Or a smattering of all three adjectives.</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">People who don’t listen. If you aren’t going to listen, just tell me beforehand and we’ll get along fine. </span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">Christians.</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">Muslims</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">Wanna-be other religion followers who do it because it’s not Christian and may get a rise out of someone. Usually Wiccans.</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">Actually, anyone joining one religion just because its NOT another.</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">SL n00bz who are on there to see naked avatars and avs having pixel sex. Um, internet porn is much more entertaining sexually.</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">RTS games. I suck at them. Give me the FPS ones.</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">Commercial airports. The whole experience from beginning to end.</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">People who lie about other people, especially my ass.</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">People who take advantage of me. And not the fun kind of advantage.</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">The fact no one takes the fun kind of advantage of me.</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">Unsalted peanuts.</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">Salted margaritas</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">Bad European beer and the snobs who think beer brewed 6 months ago can taste better than a day old Bud.</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">People who make fun of me drinking Lone Star. Fuck you.</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">People who have done drugs and say they haven’t, and those who say they have but haven’t.</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">Modern pop music. Eww.</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">Poor dancing by anyone of any ethnicity.</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">Guys who pretend to be girls online. The other way doesn’t bother me.</span></span></p>
<p class="MsoNormal" style="text-indent:-.25in;line-height:150%;margin:0 0 0 .75in;"><span style="font-size:14pt;line-height:150%;font-family:Symbol;"><span>·<span style="font:7pt &#34;">        </span></span></span><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">Anyone who thought the bailout did the country good or was worth it.</span></span></p>
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;"> </span></span></p>
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">Ok, enough negativity. I might do a picture post next time. Who knows?</span></span></p>
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;"> </span></span></p>
<p class="MsoNormal" style="line-height:150%;margin:0;"><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;">L8rs-</span></span></p>
<p class="MsoNormal" style="line-height:150%;margin:0 0 0 .25in;"><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;"> </span></span></p>
<p class="MsoNormal" style="line-height:150%;margin:0 0 0 .25in;"><span style="font-size:14pt;line-height:150%;"><span style="font-family:Times New Roman;"><span> </span></span></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Peekbot]]></title>
<link>http://rhodblog.wordpress.com/2008/11/12/peekbot/</link>
<pubDate>Wed, 12 Nov 2008 10:00:45 +0000</pubDate>
<dc:creator>Rhod</dc:creator>
<guid>http://rhodblog.wordpress.com/2008/11/12/peekbot/</guid>
<description><![CDATA[Peekbot est un &#8220;webtool&#8221; dévelopé avec Jonno Downes, une application qui permet de voir ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="aligncenter" src="http://peekbot.jamtronix.com/dispatch.fcgi/static/peekbot.png" alt="" width="229" height="130" /></p>
<p><strong>Peekbot </strong>est un &#8220;<strong><em>webtool</em></strong>&#8221; dévelopé avec <strong>Jonno Downes,</strong> une application qui permet de voir le contenu d&#8217;images disk pour <strong>Apple II, Commodore 64, Atari 8 Bit, et Tandy TRS 80</strong>. C&#8217;est vraiment très utile et simple d&#8217;utilisation. Mais il permet aussi, une fois à l&#8217;intérieur de l&#8217;image disk, de consulter  l&#8217;HEX des fichiers, de lire des fichiers textes&#8230;</p>
<p style="text-align:center;"><a title="Peekbot" href="http://peekbot.jamtronix.com/" target="_blank">Peekbot</a></p>
<p style="text-align:center;">quelques screenshots</p>
<p style="text-align:center;"><a href="http://rhodblog.files.wordpress.com/2008/11/peekbot1.jpg"><img class="aligncenter size-full wp-image-104" title="peekbot1" src="http://rhodblog.wordpress.com/files/2008/11/peekbot1.jpg" alt="peekbot1" width="500" height="286" /></a></p>
<p style="text-align:center;"><a href="http://rhodblog.files.wordpress.com/2008/11/peekbot2.jpg"><img class="aligncenter size-full wp-image-105" title="peekbot2" src="http://rhodblog.wordpress.com/files/2008/11/peekbot2.jpg" alt="peekbot2" width="500" height="255" /></a></p>
<p style="text-align:center;"><a href="http://rhodblog.files.wordpress.com/2008/11/peekbot3.jpg"><img class="aligncenter size-full wp-image-106" title="peekbot3" src="http://rhodblog.wordpress.com/files/2008/11/peekbot3.jpg" alt="peekbot3" width="500" height="300" /></a></p>
<p style="text-align:center;">plus d&#8217;informations sur cette page, avec une marche à suivre pour un test en ligne.</p>
<p style="text-align:center;"><a title="a2central.com" href="http://a2central.com/?p=1618" target="_blank">a2central.com</a></p>
<p><em>source : forum atariage / a2central</em></p>
<p><strong>Visitez aussi</strong> <a title="dsktool" href="http://instiki.jamtronix.com/dsktool/show/HomePage" target="_blank">dsktool</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Microsoft Windows at 25 years old]]></title>
<link>http://daxmars.wordpress.com/2008/11/10/microsoft-windows-at-25-years-old/</link>
<pubDate>Tue, 11 Nov 2008 01:28:08 +0000</pubDate>
<dc:creator>daxmars</dc:creator>
<guid>http://daxmars.wordpress.com/2008/11/10/microsoft-windows-at-25-years-old/</guid>
<description><![CDATA[Just seen a short segment on the new, That today is the 25th birthday of the first release of Window]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Just seen a short segment on the new, That today is the 25th birthday of the first release of Windows.  I&#8217;ve never seen Windows 1.0,  I have use Windows 2.0 though, that&#8217;s really going back a while..</p>
<p>Keep in mind, I got my first computer just over 29 years ago <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   An original TRS-80 model 1 with a whopping huge 16 K or RAM and a 1.78MHz 8080 CPU, software was saved and loaded on it on cassette tapes.   The web didn&#8217;t exist back then.  The internet was limited to government, universities and so on.  300 baud (bit per second) were the standard.  printers were expensive loud daisy wheel or dotmatix types.    I still have my old TRS-80, and it&#8217;s fully operational.</p>
<p>I then went to an Atari 800 and then to my first PC in the mid/late 1980&#8217;s, a blazing fast XT 8088 with 512K of ram.  And since I&#8217;ve built all my own PC&#8217;s up to my present 2.4Ghz Pentium 4, running Windows XP pro..</p>
<p>Times have changed&#8230;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Pass&eacute; num&eacute;rique...]]></title>
<link>http://mcomeau.wordpress.com/2008/09/13/pass-numrique/</link>
<pubDate>Sat, 13 Sep 2008 19:07:57 +0000</pubDate>
<dc:creator>Martin</dc:creator>
<guid>http://mcomeau.wordpress.com/2008/09/13/pass-numrique/</guid>
<description><![CDATA[Peut-être suis-je le seul à y être intéressé, mais j&#8217;aime à connaitre le passé des individus q]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://mcomeau.files.wordpress.com/2008/09/ti.jpg"><img style="margin:0 10px 0 0;" src="http://mcomeau.files.wordpress.com/2008/09/ti-thumb.jpg?w=240&#038;h=212" alt="ti" width="240" height="212" align="left" /></a> Peut-être suis-je le seul à y être intéressé, mais j&#8217;aime à connaitre le passé des individus quant aux équipements informatiques qu&#8217;ils ont utilisés au fil du temps. J&#8217;aime à voir l&#8217;évolution des choix qu&#8217;ils ont posés et les raisons qui ont fait en sorte de les amener à telle ou telle autre technologie. J&#8217;ajouterai donc à ce blogue ce que j&#8217;appelerai mon passé technologique, un terme qui me plait plus ou moins mais qui fait le travail pour l&#8217;instant.</p>
<p>Je vous résume pour l&#8217;instant la chose&#8230;</p>
<p>1982: <a href="http://www.ti99.com/" target="_blank">TI-99 &#8211; Texas Instrument 994A</a>&#8230; Premiers pas dans la programmation en Basic, j&#8217;ai environ 9 ans, nous achetons le magazine TI et nous programmons nos propres jeux, que nous enregistrons sur cassette audio.</p>
<p>1983: <a href="http://www.silicium.org/us/tandy/coco.htm" target="_blank">TRS-80</a> et le Baby CO (<a href="http://www.silicium.org/us/tandy/mc10.htm" target="_blank">MC-10</a>):  Encore de la programmation Basic, un modem de 300 bps, début de la fréquentation des BBS, (Bulletin Board System). Enregistrement sur cassette audio, puis floppy disc, sans compter l&#8217;impression sur une imprimante thermique et une autre à marguerite&#8230; j&#8217;envie ceux qui en possède une à matrice de point&#8230;</p>
<p>1986 ou autour: Tandy 1000, qui m&#8217;apparait alors comme le bout du monde&#8230; pas visionnaire pour un sous le monsieur, on ne faisait que commencer!</p>
<p>1990: MacPlus: Je dois m&#8217;acheter une machine capable de produire côté graphisme&#8230; j&#8217;ai un budget qui tourne autour des 8000.00$ à cette époque, alors que je décide d&#8217;abandonner la table à dessin pour produire infographiquement. La guerre est commencée, on me présente, enfin de mémoire, Amiga, IBM avec Corel, et Apple&#8230; mon choix s&#8217;arrête sur le <a href="http://en.wikipedia.org/wiki/Macintosh_Plus" target="_blank">MacPlus</a> avec une <a href="http://en.wikipedia.org/wiki/LaserWriter_II" target="_blank">laserwriter II NTX</a>. PageMaker, Freehand, et un <a href="http://www.shopping.com/xPF-Logitech-ScanMan-2000" target="_blank">scanman</a> de logitech. Je défonce mon budget de 2000$</p>
<p>1991:  Mac discontinue son MacPlus et je passe au <a href="http://en.wikipedia.org/wiki/Macintosh_LC" target="_blank">LC</a>&#8230; J&#8217;adore l&#8217;arrivée de mon moniteur couleur grand format (!). Mon fil corona sur ma laserwriter me lâche fréquemment.</p>
<p>1993 ou autour: Je fais l&#8217;acquisition d&#8217;un 486 DXII 66. Si j&#8217;avais commencé à surfer un peu depuis la résidence de mon père, avec <a href="http://www.trumpet.com.au/winsock/winsoc5.html" target="_blank">trumpet</a> comme dialer (merci <a href="http://www.micheldumais.com" target="_blank">Michel</a> pour la mémoire des choses), là je surf en 28,8 kbps, la vitesse pure (!).  J&#8217;aurais bien du mal à me souvenir de sa configuration, vous me pardonnerez.</p>
<p>Le reste de l&#8217;histoire nous mène à ce jour&#8230; Où j&#8217;ai récemment fais l&#8217;acquisition d&#8217;un portable Dell Inspiron, d&#8217;un HP Pavillon Quad Core, d&#8217;un blackberry, d&#8217;un Palm pour ma conjointe et autres trucs à synchroniser du genre. Caméra numérique Pentax et près de 1000 watts de son pour les ordis au salon. Voilà&#8230;</p>
<div id="scid:0767317B-992E-4b12-91E0-4F059A8CECA8:2813dcbe-8492-4720-9778-6d4bac25e42e" class="wlWriterSmartContent" style="display:inline;margin:0;padding:0;">Mots clés Technorati : <a rel="tag" href="http://technorati.com/tags/pass%c3%a9%20num%c3%a9rique">passé numérique</a>,<a rel="tag" href="http://technorati.com/tags/trs-80">trs-80</a>,<a rel="tag" href="http://technorati.com/tags/ti-994a">ti-994a</a>,<a rel="tag" href="http://technorati.com/tags/ti">ti</a>,<a rel="tag" href="http://technorati.com/tags/mac%20plus">mac plus</a>,<a rel="tag" href="http://technorati.com/tags/mac%20lc">mac lc</a>,<a rel="tag" href="http://technorati.com/tags/laserwriter%20II%20Ntx">laserwriter II Ntx</a>,<a rel="tag" href="http://technorati.com/tags/Amiga">Amiga</a>,<a rel="tag" href="http://technorati.com/tags/IBM">IBM</a>,<a rel="tag" href="http://technorati.com/tags/Corel%20Draw">Corel Draw</a>,<a rel="tag" href="http://technorati.com/tags/PageMaker">PageMaker</a>,<a rel="tag" href="http://technorati.com/tags/FreeHand">FreeHand</a>,<a rel="tag" href="http://technorati.com/tags/technologie">technologie</a></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[The Ghost of Elliot Smith ]]></title>
<link>http://pinkcloudevents.wordpress.com/2008/08/01/the-ghost-of-elliot-smith/</link>
<pubDate>Fri, 01 Aug 2008 09:38:50 +0000</pubDate>
<dc:creator>pinkcloudevents</dc:creator>
<guid>http://pinkcloudevents.wordpress.com/2008/08/01/the-ghost-of-elliot-smith/</guid>
<description><![CDATA[Today I went on a downtown art gallery jaunt with Julie Solomon of Visionary Media House and on our ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/r65Ez89Ce-4&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/r65Ez89Ce-4&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p>Today I went on a downtown art gallery jaunt with Julie Solomon of <a href="http://www.visionarymediahouse.com" target="_blank">Visionary Media House</a> and on our way to the <a href="http://www.cirrusgallery.com" target="_blank">Cirrus Gallery </a>on Alameda, the <a href="http://www.sweetadeline.net" target="_blank">Elliot Smith</a> song Alameda got stuck in my head&#8230; it remained there for quite a while, I sang it all the way there, while enjoying a delicious <a href="http://www.cefiore.com" target="_blank">Ce fiore</a> raspberry pomegranate fro-yo with mochi, strawberries and granola, and even on the way to a late night drink with <a href="http://www.fenslerfilm.com" target="_blank">Eric Fensler</a> of <a href="http://www.trs80.com" target="_blank">TRS-80</a> at <a href="www.yelp.com/biz/the-roost-los-angeles " target="_blank">The Roost</a> in Atwater Village, where Mr. Smith used to regularly haunt. For some unknown reason, the ghost of Elliot Smith has haunted me today and I&#8217;m not complaining&#8230;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Taking the Scenic Route Around a Circle]]></title>
<link>http://radioflyer1980.wordpress.com/2008/07/23/taking-the-scenic-route-around-a-circle/</link>
<pubDate>Wed, 23 Jul 2008 07:00:45 +0000</pubDate>
<dc:creator>Bob</dc:creator>
<guid>http://radioflyer1980.wordpress.com/2008/07/23/taking-the-scenic-route-around-a-circle/</guid>
<description><![CDATA[I&#8217;m not much of a computer programmer.  However, every so often, I get the urge to just ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I&#8217;m not much of a computer programmer.  However, every so often, I get the urge to just &#8220;play around&#8221; and write something&#8230; just to see if I still can.  It&#8217;s not so much the programming that interests me.  I like to see if I can puzzle things out and maybe learn something new in the process.</p>
<p>So, I was thinking about <em>pi</em> (&#8220;π&#8221;).  For those who aren&#8217;t big on geometry, <em>pi</em> is the ratio of the diameter of a circle to its circumference.  If you have a circle that is one inch across, you will measure a little more than 3 inches around the outside edge.  Depending on how accurate you are, you may get 3.1 inches or even 3.14.  It actually breaks down farther than that.  <em>Pi</em> is a special kind of number; it goes on forever (as far as anyone can tell).  But it never repeats in a pattern unlike &#8211; say, 1/3, which is .3 and a trail of threes that goes on endlessly.</p>
<p>There are many ways to figure out <em>pi</em>.  The one I was familiar with from high school math was a series of additions that starts like this:</p>
<p>4/1 &#8211; 4/3 + 4/5 &#8211; 4/7&#8230;</p>
<p>It goes on forever and the ultimate answer (if you could calculate this to 4/<em>infinity</em>) is <em>pi</em>.  I started up the old TRS-80 Model III I keep in my closet (yes, I am a closet TRS-80 user) and wrote a little program.  I kicked it off and quickly had a string of numbers marching up the screen:</p>
<p>4, 2.666666, 3.466666, 2.895238, 3.339682&#8230;</p>
<p>It took a moment, but it eventually it locked in 3.1.  However, that next decimal place took quite awhile to settle down.  At first I thought I botched the programming.  However it was only six lines long; there wasn&#8217;t much to botch.  My TRS-80 isn&#8217;t exactly a powerhouse; it can do about 330 calculations a minute using BASIC, but still&#8230;  I got online and took a look around.  What I was using is called the Leibniz Series.  I happen to know the first eleven places of <em>pi</em> are 3.14159265358.  Using the Leibniz Series, my poor TRS-80 would have to labor through something like a hundred billion iterations to approach that level of accuracy!  I found an article on the Chudnovsky brothers who came up with a &#8211; shall we say &#8211; bit more involved way to calculate <em>pi</em>.  It wasn&#8217;t as simple to figure out, but it gave me the first 1,234,567,890 digits of <em>pi</em> in less than four hours.</p>
<p>Gottfried Leibniz was a legendary mathematician who came up with calculus (independent of Isaac Newton) and figured out binary.  He was also a noted philosopher in the 17<sup>th</sup> Century and developed what is now known as optimism.  He believed that everything in the universe was done in the best possible way.  With that in mind, I wonder what he would have made of the fact his name is lent to the slowest, most inefficient method of calculating <em>pi</em>?</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[In the Beginning...]]></title>
<link>http://mudinyouri.wordpress.com/2008/07/21/in-the-beginning/</link>
<pubDate>Sun, 20 Jul 2008 21:19:46 +0000</pubDate>
<dc:creator>mudinyouri</dc:creator>
<guid>http://mudinyouri.wordpress.com/2008/07/21/in-the-beginning/</guid>
<description><![CDATA[  Long ago, in a world quite different from today’s, I actually lived without a computer in my life.]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p> </p>
<p><a href="http://mudinyouri.files.wordpress.com/2008/07/istock_000005283419xsmall.jpg"><img class="alignnone size-medium wp-image-35" src="http://mudinyouri.wordpress.com/files/2008/07/istock_000005283419xsmall.jpg?w=300" alt="" width="300" height="249" /></a></p>
<p><span>Long ago, in a world quite different from today’s, I actually lived without a computer in my life. Letters were either written in longhand, or pecked out with two fingers on on some clunky typewriter (I still have an old “daisy wheel” model in the garage. Graphic design was accomplished with a pen and ink, with the help of rub on letters and graphic elements (yes, I created many projects in with my technical pen and <a href="http://en.wikipedia.org/wiki/Letraset">Letraset</a> sheets).</span></p>
<p><span>The first personal computers fascinated me, but I could find little to do with them, other than play games. I did have a friend who could write some rudimentary BASIC and make my old <a href="http://en.wikipedia.org/wiki/TI-99">TI 994a </a>do some things that seemed amazing at the time, but apparently didn’t impress me enough to remember. I knew that there was something magical about these machines, I just couldn’t figure out how to make them do anything.</span></p>
<p><span>Desperate to utilize these machines hidden power, I even tried to learn BASIC myself. The structure of computer code cause me to suffer from the same type of anxiety I experienced when I tried to learn to type (with all my fingers &#8212; not just two). I now realize that this was part of my affliction. I experienced the same symtoms in my 9th grade Algebra class. So, I just kept playing games until I grew bored with them and sold the computer at a garage sale.</span></p>
<p><span>Yet, I still knew that there was something special about these highfalutin calculators. I just needed to find something they could do it was actually worth doing. Along the way I wasted a great deal of money (and it <em>was</em> <strong>a lot</strong> for a married twentysomething) on a string out worthless products from the Coleco Adam to the RadioShack TRS-80 model 100. I do remember visiting a couple computer stores and drooling over the Apple II. The price kept me from buying one.</span></p>
<p><span>The Coleco Adam was a hunk of junk (I think I got it because it came with a printer), while the TRS 80 was pretty cool. The only problem was the fact that, again, I couldn’t find anything useful to do with the machine (again, because I just couldn’t write any kind of code). Creating a database of my record albums seemed like such an utter waste of time.</span></p>
<p><span>Of course, I regularly ran into IBM PCs. These were mainly found in work environments, so I knew they tended to be more “serious” computers. Plus, the few times I was actually called upon to use them, I found all of the commands and special keystroke combinations a bit daunting for my “right-leaning” brain (to this day, a &#8220;PC&#8221; creates anxiety and elicits some sort of primeval &#8220;fight or flight&#8221; response, causing me to either curse the computer or run back to the safety of my Mac &#8211;  but, I&#8217;m getting ahead of myself).</span></p>
<p>It wasn&#8217;t until 1984 that I saw a hint of light at the end of my dark and dreary technology tunnel. It was called a MacIntosh. It was really expensive, at $2,000 (nothing like the $10,000 Apple had asked for the &#8220;Lisa&#8221; several years prior), but it was amazing technology. Still, it was tough to justify that kind of expense for a cool-looking word processor.</p>
<p>I wanted to be a true &#8220;early-adopter,&#8221; but decided to wait (as I have for most new Apple technologies since) until the memory was upgraded to 512k (that&#8217;s half a <em>mega</em>byte). Four times the memory for the same price seemed like too good a deal to pass up. So, I pulled out the old credit card and headed to my local Mac dealer in Colorado Springs to pick one up.</p>
<p>It was love at first sight! Not only was the machine beautiful, it was easy to setup and a breeze to operate, and totally intuitive. It still couldn&#8217;t do much, but I made the most of it. It wasn&#8217;t long before I was creating beautiful letters and proposals using my dot-matrix printer and storing files on those impressive 3.5&#8243; plastic-cased floppies (much nicer than those flimsy 5.25&#8242; paper covered IBM floppies). </p>
<p>As the years passed, more programs appeared. There was even a audio recording program that I used to create radio features (far earlier than almost anyone in the industry where tape was king). What truly changed my life, though, was a desktop publishing program called &#8220;Ready, Set, Go&#8221; by Letraset (the same people who made those rub on letters and lines I used in my early graphic design work).</p>
<p>Now I could create page layouts on the screen and carry them to a printer on a floppy disk. This innovation changed one of my avocations into a true vocation. As I grew more skilled at page layout and my fame grew on the radio, I was ready to create my own investment newsletter (by this time I had moved up from a Mac 512k to a Mac Color to a MacIIcx &#8211; my third machine). With the help of AppleWorks (for graphics creation and databases), I started my newsletter in 1991 and it grew to more than 1,000 paid subscribers within a year. I eventually traded up to Pagemaker (then made by Aldus).</p>
<p>A year or two later and, I ventured into the world of portable computing with the Mac Portable. This behemoth weighed over 15 pounds, but it allowed me to write my newsletter while traveling. When I was unexpectedly released from my radio network, it saved the newsletter business, when I quickly relocated to Florida to get back on the air. While my wife sold the house, I was able to write and create newsletters on the Portable and FedEx the disks back to Colorado.</p>
<p>From that point, I lost track of the number of Macs I have owned. I am sure they have numbered in the dozens (heck, I am looking at four right now). Add to that a few Apple printers (including that wonderful Laserwriter), Apple&#8217;s failed digital camera, a few Newton&#8217;s, and many iPods, and I have, singlehandedly, kept Steve Jobs in mock turtlenecks and jeans. Given the fact that he (and his company) were instrumental in my success, I think we&#8217;re even.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Silent Movie Theater &amp; dublab debut awesome videos tomorrow]]></title>
<link>http://pinkcloudevents.wordpress.com/2008/06/16/silent-movie-theater-dublab-debut-awesome-videos-tomorrow/</link>
<pubDate>Mon, 16 Jun 2008 16:45:23 +0000</pubDate>
<dc:creator>pinkcloudevents</dc:creator>
<guid>http://pinkcloudevents.wordpress.com/2008/06/16/silent-movie-theater-dublab-debut-awesome-videos-tomorrow/</guid>
<description><![CDATA[An evening of visions burning bright. Unseen music videos, documentaries, comedy clips, out-there an]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img src="http://farm3.static.flickr.com/2114/2479038870_5b2f1fbf6f.jpg" alt="" width="376" height="500" /></p>
<p>An evening of visions burning bright. Unseen music videos, documentaries, comedy clips, out-there animation, short films, eye melting magic, and special surprises!</p>
<p>Music Videos Featuring:<br />
American Music Club, Animal Collective, Ariel Pink, Awesome Color, Battles, Beach House, Bon Iver, Caribou, Daedelus, Dan Deacon, Devendra Banhart, Dntel, Entrance, Excepter, Flight of the Conchords, MGMT, My Robot Friend, Nobody presents: Blank Blue, Okkervil River, Sebastien Tellier, The Dodos, Trans Am, and more…</p>
<p>Films By:<br />
Ace Norton, Andy Cahill, Ben Barnes, Clay Lipsky, Dean Fernando, Fernando Cardenas, Damon Jones, Dave Hughes, Derek Waters, Eric Fensler, Erik Barnes, Ghost Town, Hashim Bharoocha, Jimmy Joe Roche, JFR/Fingered, John Leone, Josh Forbes, Julia Croon, Lana Kim, Matt Amato, Maximilla Lukacs, Miranda July, Nima Nourizadeh, No Domain, Ray Tintori, Roel Wonter, Saul Levitz, Skizz Cyzyk, The Masses, The Wilderness, Timothy Saccenti, Tim &#38; Eric, Travis Peterson, Video Marsh, and more…</p>
<p>+ the debut of DUBLAB VISION VERSION<br />
<img src="http://farm4.static.flickr.com/3085/2554581666_003cf92244_m.jpg" alt="dublab VisionVersion logo" width="228" height="240" /></p>
<p>+ a live performance by <a href="http://www.trs80.com/" target="_blank">TRS-80</a><br />
<a href="http://www.trs80.com/" target="_blank"><img src="http://i243.photobucket.com/albums/ff17/dublabrat/trs80.jpg" border="0" alt="Photobucket" /></a></p>
<p>films: 8-11pm<br />
TRS-80 &#38; dublab djs: 11-Mid</p>
<p>$10 general or $6 members / All Ages</p>
<p>Cinefamily<br />
at the Silent Movie Theatre<br />
611 N Fairfax Avenue<br />
Los Angeles, 90036<br />
323.655.2510</p>
<p><a href="http://www.silentmovietheatre.com/" target="_blank">silentmovietheatre.com</a><br />
<a href="http://dublab.com/" target="_blank">dublab.com</a></p>
<p>I want to thank Honest Tea and IZZE for donating some product for this event&#8230; you guys are rad!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[The Language of Technology: The Big Con]]></title>
<link>http://writingqueen.wordpress.com/2008/05/25/the-language-of-technology-the-big-con/</link>
<pubDate>Sun, 25 May 2008 05:52:22 +0000</pubDate>
<dc:creator>almarose</dc:creator>
<guid>http://writingqueen.wordpress.com/2008/05/25/the-language-of-technology-the-big-con/</guid>
<description><![CDATA[Good Old MPUI and Other Merry Pranks It is no accident that modern information-technology history al]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><h2><span style="color:#993300;">Good Old MPUI and Other Merry Pranks</span></h2>
<p style="margin:6pt 0 0;"><a href="http://writingqueen.files.wordpress.com/2008/05/stan_musial_rookie_card1.jpg"><img class="alignleft size-full wp-image-50" src="http://writingqueen.wordpress.com/files/2008/05/stan_musial_rookie_card1.jpg" alt="" width="202" height="238" /></a></p>
<p style="margin:6pt 0 0;">It is no accident that modern information-technology history all but began the day I was born (October 23, 1947). My birth, in fact, coincides with the formation of the <a href="http://www.acm.org/" target="_blank">Association for Computing Machinery</a>. Which is why I’m sure the <a href="http://www.bittorrent.com/" target="_blank">Bittorrent Client</a> and <a href="http://portal.acm.org/citation.cfm?id=1144264" target="_blank">Pareto front</a> are part of the Big Con.</p>
<p style="margin:6pt 0 0;"><a href="http://writingqueen.files.wordpress.com/2008/05/stan_musial_rookie_card1.jpg"></a></p>
<h3><span style="color:#993300;">Early history: Mistakes are made</span></h3>
<p style="margin:6pt 0 0;">As a child, I live, breathe, and eat technology:</p>
<p style="text-indent:.2in;margin:6pt 0 0;">1948: The transistor is invented. I discover radio. A Philco. I pull knobs off and gum them.</p>
<p style="text-indent:.2in;margin:6pt 0 0;"><a href="http://writingqueen.files.wordpress.com/2008/05/philco_radio_gregoryfmaxwell1.jpg"><img class="alignright size-full wp-image-47" src="http://writingqueen.wordpress.com/files/2008/05/philco_radio_gregoryfmaxwell1.jpg" alt="" width="288" height="279" /></a></p>
<p style="text-indent:.2in;margin:6pt 0 0;">1949: MIT’s <a href="http://en.wikipedia.org/wiki/Claude_Shannon" target="_blank">Claude Shannon</a> builds first chess-playing machine. I discover <a href="http://en.wikipedia.org/wiki/Chess" target="_blank">chess</a> pieces — entire drawerful. My experiments yield the following data: The knights are gristly and bitter while the pawns can be swallowed whole. I learn that experimentation sometimes produces intense pain.</p>
<p style="text-indent:.2in;margin:6pt 0 0;">1950: <a href="http://en.wikipedia.org/wiki/Maurice_V._Wilkes" target="_blank">Maurice V. Wilkes</a> uses symbolic assembly language on <a href="http://en.wikipedia.org/wiki/EDSAC" target="_blank">EDSAC</a>. Experimentally, I use language on my dad that replicates model my brother uses with his friends. I hypothesize that my dad, like my brother and his friends, will pee his pants with amusement, but results surpass anything I might have hoped for: My dad washes my brother’s mouth out with <a href="http://en.wikipedia.org/wiki/Soap" target="_blank">soap</a>. I learn that experimentation sometimes produces intense gratification.</p>
<p style="text-indent:.2in;margin:6pt 0 0;"><a href="http://writingqueen.files.wordpress.com/2008/05/ivory_soap.jpg"><img class="alignleft size-medium wp-image-55" src="http://writingqueen.wordpress.com/files/2008/05/ivory_soap.jpg?w=300" alt="" width="300" height="182" /></a></p>
<p style="text-indent:.2in;margin:6pt 0 0;">1952: <a href="http://en.wikipedia.org/wiki/Univac" target="_blank">Univac</a> predicts <a href="http://www.whitehouse.gov/history/presidents/de34.html" target="_blank">Eisenhower</a> landslide soon after polls close. Big whoop. My dad predicted Eisenhower landslide previous February.</p>
<p style="text-indent:.2in;margin:6pt 0 0;">1953: <a href="http://www.rrand.com/" target="_blank">Remington-Rand</a> develops high-speed printer for use with Univac. I become highly efficient self-contained printer for use with spelling tests, independent of hoity-toity Remington-Rand, though I do collaborate with Jane Frovick, who sits beside me in back row, on spelling test containing unhypothesized word <em>comb</em>. Based on Univac-type logical algorithm (<em>home</em> = H-O-M-E, <em>tome</em> = T-O-M-E, and so forth), we experimentally print C-O-M-E at high speed on our spelling papers. We learn that <a href="http://en.wikipedia.org/wiki/First-order_logic" target="_blank">logic</a> is inimical to spelling.</p>
<p style="text-indent:.2in;margin:6pt 0 0;"><a href="http://writingqueen.files.wordpress.com/2008/05/univac_1951.jpg"><img class="alignright size-full wp-image-48" src="http://writingqueen.wordpress.com/files/2008/05/univac_1951.jpg" alt="" width="288" height="223" /></a></p>
<p style="text-indent:.2in;margin:6pt 0 0;">1954: I memorize spelling of <em><a href="http://en.wikipedia.org/wiki/Antidisestablishmentarianism" target="_blank">antidisestablishmentarianism</a></em>. Univac is still scratching its head over <em>comb</em>.</p>
<p style="text-indent:.2in;margin:6pt 0 0;">1955-1956: This period marked by squabbles among large entities such as <a href="http://en.wikipedia.org/wiki/Burroughs_Corporation" target="_blank">Burroughs</a>, <a href="http://www.nndb.com/company/743/000055578/" target="_blank">Sperry-Rand</a>, <a href="http://www.ibm.com/us/" target="_blank">IBM</a>, and the <a href="http://en.wikipedia.org/wiki/United_States_of_America" target="_blank">U.S.A.</a> I am likewise at odds with my brother, a large entity relative to me, over <a href="http://www.stan-the-man.com/" target="_blank">Stan Musial</a> rookie card. In ill-advised midsquabble replication of 1950 language experiment, outcome is again not as predicted: My dad washes my mouth out with <a href="http://www.ivory.com/" target="_blank">soap</a>.</p>
<h3><span style="color:#993300;">Adolescence to young adulthood: Reactionary period</span></h3>
<p style="margin:6pt 0 0;">1959: Computers and ordinary people (which is to say, people who rarely need to calculate guided-missile trajectories) begin to “interface” routinely. Early encounters are not promising. Ordinary people are receptive to computers much as Plains Indians were receptive to Iron Horse. The next few years are notable for…</p>
<p style="text-indent:-13.5pt;margin:6pt 0 0 .25in;">·   Dawn of <strong>Era of </strong><a href="http://en.wikipedia.org/wiki/Verbing" target="_blank"><strong>Verbing</strong></a><strong>,</strong> with nouns such as <em>interface</em> appropriated for simultaneous use as verbs.</p>
<p style="text-indent:-13.5pt;margin:6pt 0 0 .25in;">·   Mutual suspicion erupting into overt hostility as ordinary people receive electric bills for $17,009.83 and college students enrolling in “History of the Napoleonic Era” end up in “Marine Biology Practicum” doing <a href="http://environment.newscientist.com/article/dn10756-marine-census-reveals-jurassic-shrimp-and-more.html" target="_blank">shrimp census</a> in <a href="http://en.wikipedia.org/wiki/Gulf_of_California" target="_blank">Gulf of California</a>.</p>
<p style="text-indent:-13.5pt;margin:6pt 0 0 .25in;">·   Gangs raiding corporate offices, seizing <a href="http://en.wikipedia.org/wiki/Punch_card" target="_blank">punch cards</a> to Staple, Cut, Fold, Spindle, and Tear.</p>
<p style="text-indent:-13.5pt;margin:6pt 0 0 .25in;">·   Regression to older, less threatening technologies (<a href="http://en.wikipedia.org/wiki/Carbon_paper" target="_blank">carbon-paper</a> consumption surges).</p>
<p style="text-indent:-13.5pt;margin:6pt 0 0 .25in;"><a href="http://writingqueen.files.wordpress.com/2008/05/punchcard.jpg"><img class="alignright size-full wp-image-51" src="http://writingqueen.wordpress.com/files/2008/05/punchcard.jpg" alt="" width="360" height="170" /></a></p>
<p style="margin:6pt 0 0;">1962: At public library, I discover 25-cent <a href="http://en.wikipedia.org/wiki/Photocopier" target="_blank">photocopier</a> that produces a negative; for another quarter you can photocopy the negative and get a positive. Machine is slow compared to later models. In same amount of time, I could manually copy page twice, in <a href="http://en.wikipedia.org/wiki/Calligraphy" target="_blank">calligraphy</a>.  </p>
<p style="text-indent:.2in;margin:6pt 0 0;">1963: Through volunteer work, I learn to use <a href="http://en.wikipedia.org/wiki/Addressograph" target="_blank">Addressograph</a>, <a href="http://en.wikipedia.org/wiki/Mimeograph" target="_blank">Mimeograph</a>, and <a href="http://en.wikipedia.org/wiki/Ditto_machine" target="_blank">Ditto</a> machines. I discover with glee that Ditto “masters” are available not only in purple, the official public-school Ditto color, but in red, green, and turquoise. Why were we not told?</p>
<p style="text-indent:.2in;margin:6pt 0 0;">1965: Technology and I begin a dizzying convergence. Summer job requires mastery of IBM <a href="http://en.wikipedia.org/wiki/IBM_Selectric_typewriter" target="_blank">electric typewriter</a>, <a href="http://www.smithsonianeducation.org/scitech/carbons/copiers.html" target="_blank">Verifax “wet copier,” and Thermo-fax copy machine</a> requiring use of special pink tissue sheets and heavy white paper with faint blue flowers on one side. Late in summer we acquire <a href="http://inventors.about.com/od/xyzstartinventions/a/xerox.htm" target="_blank">Xerox</a> machine that prints “Xerox” in tiny letters across the top and bottom of every page.</p>
<p style="text-indent:.2in;margin:6pt 0 0;">September: I arrive at <a href="http://www.stanford.edu/" target="_blank">Stanford University</a> for my freshman year. I gain instant popularity due to ownership of 1930s-era <a href="http://www.typewritermuseum.org/collection/index.php3?machine=royal1&#38;cat=kf" target="_blank">Royal typewriter</a> that has big, fat <a href="http://sam.dgs.ca.gov/TOC/3600/3670/3674.htm" target="_blank">pica type</a>, filling page with fewer words than weenie <a href="http://en.wikipedia.org/wiki/Typewriter" target="_blank">elite type</a> of most other typewriters in dorm.</p>
<p style="text-indent:.2in;margin:6pt 0 0;">1968: I work for temp agency, accepting every assignment regardless of skill requirement. Confronted with massive <a href="http://en.wikipedia.org/wiki/Telephone_switchboard" target="_blank">cord switchboard</a> like mutant <a href="http://en.wikipedia.org/wiki/Octopus" target="_blank">octopus</a>, I plead temporary amnesia and ask for “a few reminders.” I catch on quickly and adopt officious nasal patois: “One moment, puh-leez; connecting you with your party.”</p>
<p style="text-indent:.2in;margin:6pt 0 0;"><a href="http://writingqueen.files.wordpress.com/2008/05/cord_switchboard.jpg"><img class="alignright size-full wp-image-52" src="http://writingqueen.wordpress.com/files/2008/05/cord_switchboard.jpg" alt="" width="288" height="259" /></a></p>
<h3><span style="color:#993300;">Technology and I grow up, get down to business</span></h3>
<p style="margin:6pt 0 0;">1970s find me in vanguard of emerging technology, from dictation equipment that shrinks each generation to sleek 64-line <a href="http://en.wikipedia.org/wiki/Private_branch_exchange" target="_blank">PBX systems</a> and <a href="http://www-03.ibm.com/ibm/history/exhibits/modelb/modelb_office2.html" target="_blank">Mag Card</a> electric-range-size <a href="http://en.wikipedia.org/wiki/Word_processor" target="_blank">word processors</a>.</p>
<p style="text-indent:.2in;margin:6pt 0 0;">1977: I am in <a href="http://az.gov/webapp/portal/" target="_blank">Arizona</a> and new territory, literally and metaphorically. I edit <a href="http://www.arizona.edu" target="_blank">University of Arizona</a> catalog, programmed in <a href="http://en.wikipedia.org/wiki/Snobol" target="_blank">SNOBOL</a>, using HTML-like <a href="http://www.anvari.org/fortune/Jargon_File/25249_sos-s-o-s-n-obs-an-infamously-losing-text-editor.html" target="_blank">SOS</a> (Son of Sam) text editor. We take turns arriving at office before dawn to avoid “login queue” since all <a href="http://en.wikipedia.org/wiki/Cathode_ray_tube" target="_blank">CRTs</a> on campus are “timesharing” on single <a href="http://en.wikipedia.org/wiki/Digital_Equipment_Corporation" target="_blank">DEC 10</a> computer occupying largish red-brick building three blocks north. Every five minutes or so we have to punch a few keys to let CRT know we’re there. Otherwise it will “throw you off.” Sometimes it throws you off anyway, with maniacal chuckle.</p>
<p style="text-indent:.2in;margin:6pt 0 0;">We order printout, wait three days, walk to DEC-10 site, pick up printout, walk back. Done periodically to make sure all coding accurate. If we have inserted code &#60;it&#62; as instruction to <em>italicize text</em>, but we omit &#60;eit&#62; at <em>end</em> of specified text, italics go on and on until halted at state border for illegal vegetable transportation inspection.</p>
<p style="text-indent:.2in;margin:6pt 0 0;"><a href="http://writingqueen.files.wordpress.com/2008/05/dec_10.jpg"><img class="alignright size-full wp-image-53" src="http://writingqueen.wordpress.com/files/2008/05/dec_10.jpg" alt="" width="288" height="198" /></a></p>
<p style="text-indent:.2in;margin:6pt 0 0;">Our <a href="http://en.wikipedia.org/wiki/Spellchecker" target="_blank">spellchecker</a> is called Mary Lindley, who astutely points out peculiarities in text, such as <a href="http://en.wikipedia.org/wiki/Special_education" target="_blank">Special Education</a> course title entered as “Reading and Study Skills for the Dead,” which ordinary spellchecker, not yet invented, would in any case ignore, at sacrifice of much office merriment.</p>
<p style="text-indent:.2in;margin:6pt 0 0;">When time to print catalog, we haul tractor-tire-size <a href="http://en.wikipedia.org/wiki/Computer_data_storage" target="_blank">magnetic tape</a> to printer.</p>
<p style="text-indent:.2in;margin:6pt 0 0;">1983: I am in <a href="http://www.hutchinsonkansas.com/" target="_blank">Hutchinson</a>, <a href="http://www.kansas.gov/index.php" target="_blank">Kansas</a>, working at <a href="http://en.wikipedia.org/wiki/Videotex" target="_blank">dial-up news service</a> designed for farmers. We have <a href="http://en.wikipedia.org/wiki/TRS-80" target="_blank">TRS-80 Model II</a> computers with up to four floppy disk drives and zero hard drives. If someone runs vacuum cleaner near server, it (server, not vacuum cleaner) reboots, causing total loss of data. Our <a href="http://en.wikipedia.org/wiki/Modem" target="_blank">modem</a> is telephone-receiver cradle transmitting thirty characters per second.</p>
<p style="text-indent:.2in;margin:6pt 0 0;">I am computer genius. I converse smoothly about <a href="http://en.wikipedia.org/wiki/Binary_numeral_system" target="_blank">binary code</a>, bits, bytes, and “baud” (modem speed). Computers produce mainly letters and numbers. It is cake to understand how each bit in <a href="http://en.wikipedia.org/wiki/Extended_ASCII" target="_blank">eight-bit code</a> represents tiny switch that is either ON or OFF and how sequence of ON and OFF switches determines letters or numbers.</p>
<p style="text-indent:.2in;margin:6pt 0 0;">We have full-time staff person, pretty Vicki, to instruct owners of TRS-80, <a href="http://www.ti.com/" target="_blank">Texas Instruments</a>, <a href="http://oldcomputers.net/ts1000.html" target="_blank">Sinclair</a>, <a href="http://www.commodore.ca/" target="_blank">Commodore</a>, IBM, <a href="http://www.atarimuseum.com/computers/computers.html" target="_blank">Atari</a>, <a href="http://applemuseum.bott.org/sections/computers/IIe.html" target="_blank">Apple II-e</a>, and other computers how to access our database. It is precise configuration; tiny mistake links user’s computer to <a href="http://www.interpol.int/" target="_blank">Interpol</a>, causes international incident.</p>
<p style="text-indent:.2in;margin:6pt 0 0;"><a href="http://writingqueen.files.wordpress.com/2008/05/commodore.jpg"><img class="alignright size-full wp-image-54" src="http://writingqueen.wordpress.com/files/2008/05/commodore.jpg" alt="" width="288" height="227" /></a></p>
<p style="text-indent:.2in;margin:6pt 0 0;">1992: Am back at University of Arizona. DEC 10 has been converted to student housing, CRTs are in museum with Commodores, <a href="http://en.wikipedia.org/wiki/Daisy_wheel_printer" target="_blank">Daisy-Wheel</a> printers. New software is suspiciously colorful. What’s with the sinister floating <a href="http://www.microsoft.com/windows/" target="_blank">windows</a>? I balk at using <a href="http://en.wikipedia.org/wiki/Computer_mouse" target="_blank">mouse</a>.</p>
<p style="text-indent:.2in;margin:6pt 0 0;">Recover aplomb, become adept at learning software, even if not easily comprehended in terms of ON and OFF switches. By end of decade emerge as <a href="http://en.wikipedia.org/wiki/Internet" target="_blank">Internet</a> pioneer with own <a href="http://en.wikipedia.org/wiki/Website" target="_blank">Web site</a>. Breeze through <a href="http://en.wikipedia.org/wiki/Pagemaker" target="_blank">graphic-design</a>, <a href="http://en.wikipedia.org/wiki/Spreadsheet" target="_blank">spreadsheet</a>, database classes. Experience bliss of <a href="http://en.wikipedia.org/wiki/Broadband" target="_blank">broadband</a>.</p>
<p style="text-indent:.2in;margin:6pt 0 0;">1995: Create “<a href="http://abcnews.go.com/Business/SmallBiz/story?id=88061&#38;page=1" target="_blank">Small Business Builder</a>” feature on fledgling <a href="http://abcnews.go.com/" target="_blank">ABCNEWS.com</a> Web site. Is first of many one-hundred-percent-remote assignments made possible by marvel of <a href="http://en.wikipedia.org/wiki/Telecommunication" target="_blank">telecommunication</a>.   </p>
<p style="text-indent:.2in;margin:6pt 0 0;">May 2000: Leave secure University of Arizona position with desirable benefits to accept big bucks, cushy job, impressive title with <a href="http://en.wikipedia.org/wiki/Dot-com_bubble" target="_blank">dot-com</a> in posh foothills location. My ship has come in.</p>
<p style="text-indent:.2in;margin:6pt 0 0;">September 2000: Ship sails away. Am stranded on <a href="http://www.gilligansisle.com/" target="_blank">Gilligan</a>-type island minus Gilligan, Captain, Professor, <a href="http://www.imdb.com/name/nm0000822/" target="_blank">Jim Backus</a>, Lovey. Some days am Ginger, other days am Mary Ann. Occasionally am <a href="http://en.wikipedia.org/wiki/Bishop_Desmond_Tutu" target="_blank">Bishop Desmond Tutu</a>, <a href="http://www.thepointersistersfans.com/" target="_blank">Pointer Sisters</a>. It is as <a href="http://www.theodoreroosevelt.org/" target="_blank">Teddy Roosevelt</a> on <a href="http://www.eyewitnesstohistory.com/roughriders.htm" target="_blank">San Juan Hill</a> that I see passing ship, fire musket to signal, provoking <a href="http://specialoperations.military.com/navy-seals/training.html" target="_blank">Navy SEAL</a> mission resulting in rescue.</p>
<h3 style="margin:6pt 0 0;"><span style="color:#993300;">I age gracefully, I.T. develops dementia</span></h3>
<p style="margin:6pt 0 0;">2007. I am <a href="http://en.wikipedia.org/wiki/Neanderthal" target="_blank">Neanderthal</a> woman. My computer is dinosaur. I no longer have vocabulary to describe problem to computer-fixer guy. I feel like caller on “<a href="http://www.cartalk.com/" target="_blank">Car Talk</a>” making sick-transmission noises.</p>
<p style="text-indent:.2in;margin:6pt 0 0;">Attempt to download <a href="http://www.mplayerhq.hu/design7/dload.html" target="_blank">Mplayer</a> for Windows. Do I need <a href="http://www.ghacks.net/2008/05/07/smplayer-uncommon-codecs-package/" target="_blank">Binary Codec Package</a>? What does “supported natively” mean? Is it racist/<a href="http://www.google.com/search?hl=en&#38;q=define%3A+chauvinist" target="_blank">chauvinist</a> thing, like “American-owned”?</p>
<p style="text-indent:.2in;margin:6pt 0 0;">“Great news,” subhead blares. My heart does a little dance. “Mplayer package contains <a href="http://smplayer.sourceforge.net/" target="_blank">SMPlayer</a> front-end.” Sigh. “Of course, good old <a href="http://mpui.sourceforge.net/" target="_blank">MPUI</a> is still included.” Whew!</p>
<p style="text-indent:.2in;margin:6pt 0 0;">I click “download.” Do I want “Secure Download (US)” or “Secure Download (RO)”? What is “RO”? <a href="http://en.wikipedia.org/wiki/Rome" target="_blank">Rome</a>? Republic of Ontario?</p>
<p style="text-indent:.2in;margin:6pt 0 0;">Am advised that “To download from torrent links” I “must download and install a <a href="http://en.wikipedia.org/wiki/BitTorrent_client" target="_blank">bittorrent client</a>.”</p>
<p style="text-indent:.2in;margin:6pt 0 0;">Scales fall from my eyes, clog keyboard. No matter. Is all Big Con. If I bite on “bittorrent client” scam, will get error message: “Access denied. Could not find active alienated download buffer. Repair by finding Pareto front of simple problem using Genetic Algorithms with fitness sharing. Or you could just stick <a href="http://en.wikipedia.org/wiki/Peanut" target="_blank">peanuts</a> up your nose. P.S. Your computer has 2,937 <a href="http://en.wikipedia.org/wiki/Windows_registry" target="_blank">registry errors</a>. Hahahahahahaha.”</p>
<p class="MsoNormal" style="text-indent:.2in;margin:6pt 0 0;"> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Tech Fears Revisited]]></title>
<link>http://noreenseebacher.com/2008/05/01/globest-realty-bytes-noreen-seebacher-4/</link>
<pubDate>Thu, 01 May 2008 12:19:45 +0000</pubDate>
<dc:creator>Noreen Seebacher</dc:creator>
<guid>http://noreenseebacher.com/2008/05/01/globest-realty-bytes-noreen-seebacher-4/</guid>
<description><![CDATA[A decade ago, when I named my first wireless network Cry for Help, I was more intent on keeping tech]]></description>
<content:encoded><![CDATA[A decade ago, when I named my first wireless network Cry for Help, I was more intent on keeping tech]]></content:encoded>
</item>
<item>
<title><![CDATA[Hey Luddites! Renovate Your Office or Move Out!]]></title>
<link>http://mediatide.wordpress.com/2008/03/11/hey-luddites-renovate-your-office-or-move-out/</link>
<pubDate>Wed, 12 Mar 2008 03:58:20 +0000</pubDate>
<dc:creator>mediatide</dc:creator>
<guid>http://mediatide.wordpress.com/2008/03/11/hey-luddites-renovate-your-office-or-move-out/</guid>
<description><![CDATA[The purpose of this blog is not to brag about my place of employment. However, UC-Clermont is farthe]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href='http://mediatide.wordpress.com/files/2008/03/office_pro_boxshot.png' title='office_pro_boxshot.png'><img src='http://mediatide.wordpress.com/files/2008/03/office_pro_boxshot.thumbnail.png' alt='office_pro_boxshot.png' /></a></p>
<p>The purpose of this blog is not to brag about my place of employment. However, <a href="http://www.ucclermont.edu">UC-Clermont </a>is farther ahead of the curve than many other institutions. We upgrade our computers every three years and our software every summer. </p>
<p>We have been using <a href="http://office.microsoft.com/en-us/default.aspx?ofcresset=1">Microsoft Office 2007 </a>since September. Some people hate it, but I&#8217;ve adapted to it. It&#8217;s not perfect, and it&#8217;s a total learning curve removed from its predecessor. Once you figure out what&#8217;s on all the tabs, it&#8217;s not that bad. The problem for me is that a lot of places are still using <a href="http://support.microsoft.com/ph/2488">Office 2003</a>. When I send a document to one of these neanderthals, I keep forgetting to save the doc in Office 97-2003 format. So I get the inevitable reply to resend it in the outdated format so they can open it on their computer. That&#8217;s OK when my 70-year-old cousin Frank, a retired construction worker, asks me. However, when a colleague at one of the <a href="http://uc.edu">top-rated research universities in the USA </a>asks, then I get a little irritated.</p>
<p>If you want to play the tech game, upgrade regularly or step away from the workstation! And go play with your <a href="http://www.trs-80.com/">TRS-80</a>.</p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
