<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8441874</id><updated>2012-01-17T23:55:37.325-05:00</updated><category term='snack'/><category term='video'/><category term='scene'/><category term='christmas'/><category term='tv'/><category term='diy'/><category term='mac'/><title type='text'>News of Shawn</title><subtitle type='html'>News and updates from the Vincent-Wilder clan</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default?start-index=101&amp;max-results=100'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>336</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8441874.post-1741188722721953686</id><published>2011-02-04T14:55:00.001-05:00</published><updated>2011-02-04T14:57:43.638-05:00</updated><title type='text'>Thoughts on computers and languages.</title><content type='html'>&lt;i&gt;Note: this needs editing and more explanation.  This is more of a brain dump / stream of consciousness thing...&lt;/i&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;It’s all about languages and communication.&lt;br /&gt;&lt;br /&gt;All data is expressed in some language: binary, assembly, C, JVM bytecodes, relational data structures, LISP s-expressions, JSON, XML, API calls, object models, user interfaces (icon languages, screen layouts, etc), or even human language (so-called “human entered text” or “raw text”).&lt;br /&gt;&lt;br /&gt;Languages have dialects.&lt;br /&gt;&lt;br /&gt;Each use of a language (in a particular program, used by a particular user) is a dialect of the main language.  Dialects can refine.&lt;br /&gt;&lt;br /&gt;Every use of language fall into a universal pattern.  One actor wants to send a message.  So, the actor takes the data that is in its mind and translates it into some language that will hopefully be understood by somebody other than itself.  Then, the actor writes this message into some substrate that is accessible by other actor(s).&lt;br /&gt;&lt;br /&gt;At some point later, another actor (maybe the same one) reads the data from the substrate and translates it into some data that is comprehensible and meaningful to the reading actor.  There can be multiple receiving actors (multicasting).&lt;br /&gt;&lt;br /&gt;That’s it.  That’s pretty much everything computers ever do.&lt;br /&gt;&lt;br /&gt;Note that actors could be: people, computers, processes, networks, threads, function or method activations, or even the same actor at various points in time.&lt;br /&gt;&lt;br /&gt;The substrate can be: computer memory, human memory, hard disks, network signals on a wire, phosphor on a computer screen, light or sound travelling through the air.&lt;br /&gt;&lt;br /&gt;The data is generally information of some sort.&lt;br /&gt;&lt;br /&gt;The language could be: encoding in human neurons, HTML, a programming language, data structures or bits in memory, records and bytes on disk, a particular set of icons or visual cues in a user interface, colors, sounds, etc.&lt;br /&gt;&lt;br /&gt;There are two broad uses of this general pattern:&lt;br /&gt;&lt;br /&gt;1. writing: data at rest.  Here the data is stored, and the actors tend to be separated substantially through time.&lt;br /&gt;&lt;br /&gt;Stored data creates backwards compatibility problems: this is the same problem as written language being written with some assumptions and cultural ideas shifting around it, making it no longer “readable”.  In the worst case, the language is lost and nobody can read it at all.&lt;br /&gt;&lt;br /&gt;This can be rephrased as: translation is hard because time passes, and the world may change in ways that the old language is lost, misinterpreted, or forgotten.&lt;br /&gt;&lt;br /&gt;Examples: databases, books, in memory data structures, generated reports, current state of a user interface, etc&lt;br /&gt;&lt;br /&gt;Canonical example: data structures&lt;br /&gt;&lt;br /&gt;2. spoken/conversational: data in motion.  Here you are communicating between two parties. The actors are usually very close to each other (even realtime).  Also, the messaging tends to be bidirectional: a message is sent, and then the receiver replies to the sender.&lt;br /&gt;&lt;br /&gt;This is inherently a translation problem.  In the best case, the two communicators know each other intimately and there is very little (not none) loss of information.  In the worst case, the two communicators share very little common understanding, and only very limited information can pass between them.&lt;br /&gt;&lt;br /&gt;Examples: API calls, queries + results, messaging, RPC, user actions in user interface&lt;br /&gt;&lt;br /&gt;Canonical example: API call (which has a two-way messaging component: the passing of information TO the function activation, and the passing of the result BACK from the function activation, so maybe this isn’t a great canonical example.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;These two uses are identical.  Each of them is communication between two actors at some point in time.  One actor translates its intent into some new language, and then writes this language into a substrate that the receiver has access to.  Then, the receiver reads the data in this language and translates it into something meaningful for himself.  Note that there are two levels of translation, and a storage aspect to all communication.  What we usually call “data at rest” is just a mechanism by which we can communicate with actors (perhaps ourselves even) that live in the future.&lt;br /&gt;&lt;br /&gt;Translation is pretty much always lossy.  There are lossless translations (lossless compression, pig latin), but for the most part, you are translating meaning and not just structure (Tao Te Ching to english, Cerner to Epic)&lt;br /&gt;&lt;br /&gt;Made worse by the fact that people using a particular system are actually creating their own dialect through use: “misusing” fields, stylized work habits: this leads to the “broken” data that needs periodic “cleanup”.  It’s not dirty data: it’s just in a dialect that you don’t understand, with its own idioms, etc.&lt;br /&gt;&lt;br /&gt;Standards are just language definitions.  They don’t solve the problem.&lt;br /&gt;&lt;br /&gt;Most languages are domain specific.&lt;br /&gt;&lt;br /&gt;Computers, processes, threads, groups of processes are people (or groups/committees) of people.  Communicating between two processes or two computers is analogous to communicating between a computer and a person.&lt;br /&gt;&lt;br /&gt;Computers are people (single autonomous processing units).  Processes are like alters in a DID sense - that is, they are more or less separate people.&lt;br /&gt;&lt;br /&gt;Algorithms are weird.  They basically tell the computer-people what to do, and how to interpret and transform and whatever.  It’s like neurons in our heads.  There is also languages, data, and translations, but here it’s describing LOGIC, which is basically what the computer-people should do.  They generally are logic for manipulating stored data and sending messages in various languages.&lt;br /&gt;&lt;br /&gt;What about AJAX and other “rich” UIs?  They are a more complex beast.&lt;br /&gt;&lt;br /&gt;What about static typing?  This is an odd one.  Basically, static typing (and, really, dynamic typing that fails at runtime when you violate constraints) is telling the computer what the rules of the language are.  Hence, XSDs, relational schemas, Java static types, pre and post conditions, etc are all forms of typing.  They prevent violations of the language when writing algorithms, to make writing algorithms easier.&lt;br /&gt;&lt;br /&gt;Alternatives are: comprehensive unit tests.&lt;br /&gt;&lt;br /&gt;This kind of typing (and strong contract definitions in general) are a good thing, in balance.  When many people, or people from different organizations, etc, are going to write significant amounts of programs or data in a certain language, it is nice to be able to say: this was “good” or this was “bad”.&lt;br /&gt;&lt;br /&gt;On the other hand, static typing can bloat the bejeezus out of any program that has to do anything with dynamic data (read: all of the big ones), including: reading comma delimited files, relational data, XML, build user interfaces, etc, etc.&lt;br /&gt;&lt;br /&gt;Template languages?  They’re all about language translation.  Language translation generally consists of two parts: reading the data of relevance into some intermediate language that is easy for a program to deal with (say, loading relational data into an in-memory data structure that represents meaningful business objects), and then generating some target language (say HTML or some such).  Templates are a nice way for humans to express things in output languages: the program itself (the template) has the same general “form” and “shape” as the generated output.  Some compiler backends use templates, as do UI frameworks and obviously report writing and HTML generation.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-1741188722721953686?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/1741188722721953686/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=1741188722721953686' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/1741188722721953686'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/1741188722721953686'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2011/02/thoughts-on-computers-and-languages.html' title='Thoughts on computers and languages.'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/04149601560258042094</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://4.bp.blogspot.com/_elOOh-pAOqc/TUxaouVzdMI/AAAAAAAAAEs/Gr0UDZPoqLA/s220/BlueIcon64x64.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-6836087397681096554</id><published>2010-02-10T21:51:00.003-05:00</published><updated>2010-02-10T21:52:19.931-05:00</updated><title type='text'>Blog moved...</title><content type='html'>My blog has moved to blogspot (they're discontinuing the support of ftp upload).  Kindof sucks, but here I am now.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-6836087397681096554?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/6836087397681096554/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=6836087397681096554' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6836087397681096554'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6836087397681096554'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2010/02/blog-moved.html' title='Blog moved...'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-9049233262741555748</id><published>2009-11-15T20:17:00.002-05:00</published><updated>2009-11-15T20:44:24.625-05:00</updated><title type='text'>CNC Haps: started a new Y axis, and Toner Transfer fun!</title><content type='html'>Long time no write...&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;I've been busy recently working on more CNC fun-ness.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;In particular, I'm trying a form of building a CNC axis with OSB (Oriented Strand Board, AKA chipboard, used for house sheathing).&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Ugly, horrible wood, but unbelievably cheap: $8CAD per 4x8 sheet, 3/4 inch thick.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;I'll take some pictures at some point (I'm in my pyjamas and my camera is upstairs!), but my scheme is to try to build an axis (and, if that works out, a whole machine) based on adjustable, simple construction using only OSB, 2x4 scrap, and wood screws.  I'm using found printer bearings and linear slides (cheat), but my final design will probably use skate bearings and pipe of some sort.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;So far, I've built an axis and carriage that slides nice and smooth, and mounted a hardware store coupling nut underneath (one of those long nuts).  With a hand drill and a piece of threaded rod, it runs nicely.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;My goal thus far (and still) is to build a DC gearmotor-based servo setup with feedback loop control.  My current prototype is using a partially disassembled optical mouse wired to my Arduino.  It reads changes in position accurately, but loses some ticks over long runs.  It may not be accurate enough for my needs.  We'll see.  I still have to try improving the mousing surface (I figured just putting paper down for the mouse to run on.  OSB is a pretty terrible mousing surface! :-) )&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Next steps are to mount a drill motor and chuck, cut a piece of threaded rod to length, and use a bit of white plastic cutting board at the other end of the threaded rod for a bearing.  Based on this, I'll write a little Arduino sketch that drives the thing around, and see how it all goes.  Should be fun.  :-)&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;I found a good source of skate bearings.  Used rollerblades.  At a church bazaar I was at this weekend, I got a pair of inline skates for $1.  Each skate had 8 bearings, so each bearing cost me 6 1/4 cents.  :-)  I wish I'd picked up a few more pair.  You can sometimes get them for free, too.  Nobody wants old dirty nasty inline skates.  Except me!  :-)  ABEC-1 bearings, nothing too great, but they spin nice, and should be good enough for my junkbot.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Finally, I'm sold on the wonders of toner transfer PCBs.  I tried it twice tonight (the first one turned out backwards, and I didn't iron it quite enough), and the second time came out as close to perfect as I can imagine.  I'm going to try the hydrochloric acid/hydrogen peroxide scheme talked about on the Net for etching -- trip to the hardware store in my future.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;For reference, I've got an HP LaserJet 4mp - nice workhorse of a printer.  I use generic brand Staples (Canada) HP compatible toner cartridges.  I am using this week's Wal Mart flyer (glossy, thin, low quality paper) to print on.  Scrub the board with a green scrubby, put the printed (reversed) circuit on the board, set a clothes iron real hot, and just press the heck out of it.  Soak in an inch or so of soapy water, rub the paper a bit, then slowly remove.  Then scrub the result with your fingertips.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;I'm going to make 3 DC motor drivers based on the LM18200T.  Simple circuits, just some female headers, a few components, and the IC.  I've got some heat sinks I've ripped out of old electronics that should fit the 18200s.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Cool stuff.  I'm enjoying it.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Oh yeah -- also, I discovered the joys of &lt;a href="http://www.active123.com/"&gt;Active Electronics&lt;/a&gt;!  They've got a retail outlet here in Ottawa, and it's awesome.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-9049233262741555748?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/9049233262741555748/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=9049233262741555748' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/9049233262741555748'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/9049233262741555748'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2009/11/cnc-haps-started-new-y-axis-and-toner.html' title='CNC Haps: started a new Y axis, and Toner Transfer fun!'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-2837168853243110826</id><published>2009-09-16T19:58:00.003-04:00</published><updated>2009-11-10T10:46:59.500-05:00</updated><title type='text'>Disturbing.</title><content type='html'>I find this very disturbing:&lt;br /&gt;&lt;br /&gt;&lt;a href="http://thebreakthrough.org/blog/2009/09/the_trouble_with_sustainabilit.shtml"&gt;http://thebreakthrough.org/blog/2009/09/the_trouble_with_sustainabilit.shtml&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Is it just me, or is it clear to others that there are too many people on the earth, and that trying to shore up the alarmingly dwindling resources using technology is just delaying the inevitable.  Some crash must come, just as though we were an island overpopulated by rabbits.&lt;br /&gt;&lt;br /&gt;Why is this not obvious?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-2837168853243110826?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/2837168853243110826/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=2837168853243110826' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/2837168853243110826'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/2837168853243110826'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2009/09/disturbing.html' title='Disturbing.'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-4062737581474420641</id><published>2009-09-14T09:19:00.001-04:00</published><updated>2009-09-14T09:20:55.272-04:00</updated><title type='text'>British finally own up to destroying Turing</title><content type='html'>&lt;a href="http://www.number10.gov.uk/Page20571"&gt;http://www.number10.gov.uk/Page20571&lt;/a&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;This is awesome.  The treatment of Turing is one of the great tragedies of the 20th century.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Gordon Brown is good to own up to this.&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-4062737581474420641?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/4062737581474420641/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=4062737581474420641' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/4062737581474420641'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/4062737581474420641'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2009/09/british-finally-own-up-to-destroying.html' title='British finally own up to destroying Turing'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-7860793240907020229</id><published>2009-08-21T22:09:00.000-04:00</published><updated>2009-08-26T22:09:53.998-04:00</updated><title type='text'>Today</title><content type='html'>Today is the first day of the rest of my life.&lt;br /&gt;&lt;br /&gt;For real.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-7860793240907020229?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/7860793240907020229/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=7860793240907020229' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/7860793240907020229'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/7860793240907020229'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2009/08/today.html' title='Today'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-9008983554250262194</id><published>2009-08-08T15:11:00.003-04:00</published><updated>2009-08-08T15:57:34.341-04:00</updated><title type='text'>Energy and Human Existence</title><content type='html'>Weighty title.  :-)&lt;br /&gt;&lt;br /&gt;I recently read the netbook &lt;a href="http://www.withouthotair.com/"&gt;&lt;span style="font-style: italic;"&gt;Sustainable Energy: Without the Hot Air&lt;/span&gt;&lt;/a&gt;, and found it quite thought provoking.&lt;br /&gt;&lt;br /&gt;In particular, showing energy production and consumption in terms of kWh/d/person I find refreshing.  Finally, somebody telling you something comprehensible.&lt;br /&gt;&lt;br /&gt;The most interesting thing to me, however, was the insight (not horribly profound, just I hadn't had it before) that really all of life is an energy game.&lt;br /&gt;&lt;br /&gt;Microbes burn energy to get to nutrients, which gives them energy.&lt;br /&gt;&lt;br /&gt;Plants consume energy from the sun and use it to grow.&lt;br /&gt;&lt;br /&gt;Wild carnivores use energy to catch prey, which gives them energy.&lt;br /&gt;&lt;br /&gt;Some odd edge cases occur, as well.&lt;br /&gt;&lt;br /&gt;If wild carnivores consume too much prey, then their source of energy is depleted.  They need to either (a) find another source of energy, use another strategy, or (b) die.&lt;br /&gt;&lt;br /&gt;Thinking of energy availability in terms of kWh/day/person is fun: if you have twice the people, the available energy per person goes down by half.  If you have half the people, the available energy per person doubles.&lt;br /&gt;&lt;br /&gt;This is the same as the wild carnivore.  If there's lots of prey, the available energy per individual is high.  Their life is good, so they breed.  At some point, their prey is diminished or their numbers get too high.  Either way, their available energy per person is too low, and they die off.&lt;br /&gt;&lt;br /&gt;Humans are an interesting case.  First, we discovered tribes/cooking/intelligence/agriculture/whatever that made us successful.  All of the advantages conferred by these advances are in terms of increased available energy per individual.  Life was good.&lt;br /&gt;&lt;br /&gt;Life was so good that in many cases, human have outstripped their available energy.  Forests are felled (all the energy in the wood is gone), mines are mined out, cropland is occupied, oil reserves are consumed, power grids can't keep up, whatever.&lt;br /&gt;&lt;br /&gt;Really, this is very similar to the wolves that eat all the rabbits and then don't have any rabbits left.  The only difference is that humans are creative enough that when one energy source runs dry, they move on to another one.  And we're getting more and more creative all the time.&lt;br /&gt;&lt;br /&gt;The trick, however, is that in all cases in nature, when life is good (which it still is for people), the population grows (which we're doing) until the energy is consumed (which it will be).  Then, there's the big die-off.&lt;br /&gt;&lt;br /&gt;We haven't reached that yet.&lt;br /&gt;&lt;br /&gt;Environmentalists have been predicting doom for a long time.  Leave aside the fact that environmentalists often have bizarre views on the world that don't quite match reality.  The essential truth is that they're right.  If we keep consuming energy, and keep increasing our population, we will eventually die out.  It's nature, it's inevitable.&lt;br /&gt;&lt;br /&gt;We need to do one of a few things to avoid this fate:&lt;br /&gt;&lt;br /&gt;(1) come up with more sources of energy.&lt;br /&gt;(2) consume less per individual&lt;br /&gt;(3) stop growing / decrease our population&lt;br /&gt;&lt;br /&gt;(1) is what we're mostly doing now.  Some of the sources of energy are nonrenewable (like most sources of energy, just like the rabbits for the wolves), and will eventually be depleted.  Some sources are renewable, but will still be consumed if our population keeps increasing.  In the end, as long as we remain on this planet, this option can't work on its own.&lt;br /&gt;&lt;br /&gt;There are other issues here as well.  Consumption of energy costs more than just the energy itself.  Pollution is a well known one, but the scarier one is global warming.&lt;br /&gt;&lt;br /&gt;We may be seeing some global warming now, based on carbon emissions.  This is largely irrelevant, I say, in view of the real risk.&lt;br /&gt;&lt;br /&gt;Say we avoid this, somehow reduce carbon emissions, and everybody's life is good again.  In the best case scenario, we find an essentially limitless source of free, nonpolluting energy.  Say we perfect cold fusion.&lt;br /&gt;&lt;br /&gt;All of the energy consumed from this clean limitless source would do something, but ultimately end up as heat energy.  All of this heat energy would be generated where people are consuming the energy (say on the surface of the earth).  If we manage to have an unbounded population and energy consumption, we're essentially piping the heat of a sun onto the earth.  This is going to really screw up our living conditions.&lt;br /&gt;&lt;br /&gt;So, short of leaving the planet (which is an option, at some point, although seeming increasingly unlikely with the current space climate), this is a dead end.&lt;br /&gt;&lt;br /&gt;(2) is more interesting.  Say we could get everybody (through a miracle) to cut their personal energy consumption down to 1/100th of what it is now.  Note that this involves eating less, having fewer hobbies, heating and cooling less, probably moving less (you'd need to eat more).  Eliminating all personal hobbies and entertainment.&lt;br /&gt;&lt;br /&gt;Now, this is going to be a very difficult thing to do.  It's basically like saying to the wolves: now eat fewer rabbits, please, and sleep more.  It goes against our profound animal nature.  As individuals, we want to grow, to succeed, to have more leisure time, to consume more energy.&lt;br /&gt;&lt;br /&gt;This goes against our hard wiring.  When energy is plentiful, we want to consume it.  We strive  consume available free energy.&lt;br /&gt;&lt;br /&gt;Maybe you could do it.  Probably the easiest way is to eliminate all culture and degenerate to a primitive society without modern conveniences.  Cook everything you eat.  Walk to get places.&lt;br /&gt;&lt;br /&gt;This buys us time.  Basically, if there's more energy to go around, then (nature says) the population will increase until we consume it again.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Which brings us to (3).  This is by far the easiest solution, but it's the one nobody ever talks about.  Sterilize 1/2 of the population at random, and the problem goes away in one generation, probably without much social upheaval.  Oh, but this goes against our natural rights as creatures that live upon the earth!  Can you imagine the riots?  You can't even enforce parenting classes for new parents, let alone question their inalienable right to breed and reproduce.&lt;br /&gt;&lt;br /&gt;No wonder, this is the fundamental force of nature as well.  We're hard wired to increase our population when things get better, when energy is freely available.  Going against this hard wiring will obviously ruffle some feathers.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;So, we can't keep using more energy.  We aren't likely to force people to change their lifestyles.  We'd be shot politically if we proposed decreasing the population.&lt;br /&gt;&lt;br /&gt;We have two more choices: (A) go into space, and hopefully (randomly) find another inhabitable planet, or (B) give up and prepare for the worst.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;These are pragmatic options. &lt;br /&gt;&lt;br /&gt;(A) is a nice dream, and I'm all in favor of it.  I'm furious when the space program languishes - it may be our one real chance to do something here.  Unfortunately, as an individual, there's not much you can do about it.&lt;br /&gt;&lt;br /&gt;(B) is more interesting.  Survivalists have been saying this for years: a plague, or a war, or something will bring down society, and they'll have to survive.  Maybe this is true.  Eventually, we're going to run out of energy, and they'll have been proven right.  Will it happen in our lifetime?  Maybe, maybe not.&lt;br /&gt;&lt;br /&gt;What can you do about it?  The real question here is what kind of society do you want to have after the crash?  Do you want it to be a regression to primitive times, but with guns and Mad-Max style gang warfare?  Do you want to lose our culture, our knowledge, the legacy of the human race?&lt;br /&gt;&lt;br /&gt;It's unlikely that things will go quietly.  It's a depopulation, obviously, and the depopulated will be unhappy about it.  They'll fight.  Lots of things will be destroyed.  Society will likely collapse.&lt;br /&gt;&lt;br /&gt;How do we protect the human legacy through these end times?  How will the smaller human population that survives the wars have access to our legacy?&lt;br /&gt;&lt;br /&gt;This is probably one of the most important problems of our day.  By all means, try to stave off the end, by approximating solutions (1) (2) and (3).&lt;br /&gt;&lt;br /&gt;But work on (A), and fund the space program.&lt;br /&gt;&lt;br /&gt;And work on (B) too.  Come up with ways of encapsulating knowledge, and spreading it far and wide, in ways that will survive the apolcalypse.  Make sure that anybody sifting through the dust and rubble finds LOTS to rebuild with.  Build enclaves and such that won't be destroyed somehow.&lt;br /&gt;&lt;br /&gt;This we can do something about as individuals.  Come up with robust ways of storing knowledge.  Come up with easy ways of learning everything we know today.&lt;br /&gt;&lt;br /&gt;The beauty of this strategy is that it works no matter what's the cause of the fall.  If there's a plague or a bad war, or the goverment just screws up really bad, or terrorists get their act together and kill everybody.  Disaster recovery makes pragmatic sense.  It's a way cheaper than prevention (there are too many possible avenues of attack, but only one consequence).&lt;br /&gt;&lt;br /&gt;Just some random thoughts.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-9008983554250262194?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/9008983554250262194/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=9008983554250262194' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/9008983554250262194'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/9008983554250262194'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2009/08/energy-and-human-existence.html' title='Energy and Human Existence'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-1690218463345579283</id><published>2009-08-01T20:18:00.002-04:00</published><updated>2009-08-01T20:25:26.891-04:00</updated><title type='text'>Scene: babbage machine versus child</title><content type='html'>A massive mechanical computer, building-sized, beneath the earth.  Rusted iron catwalks and ladders run crazily through massive grinding brass and stone gears and clouds of dust.  Rotating pillars throughout the structure glow from within with red-hot energy....&lt;br /&gt;&lt;br /&gt;traps...&lt;br /&gt;&lt;br /&gt;a small child, clutching a leather sack, calling for help as she rides a gear (the catwalk above which gave way).  How to get to her before the slowly rising gear crushes her against another?  The nearest catwalk is 10 feet away, and looks none too sturdy itself.&lt;br /&gt;&lt;br /&gt;Complicated by: once involved in rescuing the girl, an attack by the guardians of the machine: tiny dexterous gremlins that grasp and claw, dressed in leather vests with dozens of pockets, wielding vicious curved wrenches.&lt;br /&gt;&lt;br /&gt;The sack contains a tiny device: a glowing gemstone surrounded by several oddly shaped moving silver gears.  What is its purpose?  The girl does not know.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-1690218463345579283?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/1690218463345579283/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=1690218463345579283' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/1690218463345579283'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/1690218463345579283'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2009/08/scene-babbage-machine-versus-child.html' title='Scene: babbage machine versus child'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-5016948207750949899</id><published>2009-08-01T20:12:00.003-04:00</published><updated>2009-08-01T20:18:07.820-04:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='scene'/><title type='text'>Age versus Earth</title><content type='html'>An ancient man, crackling with arcane energies.  Passing birds are electrocuted, and fall to the earth with a dull thud, smelling of cooked chicken.&lt;br /&gt;&lt;br /&gt;Locked in a standoff conflict with:&lt;br /&gt;&lt;br /&gt;A creature made of stone, earth and clay, bits of turf still attached, a gopher trying desperately to dodge the electricity.&lt;br /&gt;&lt;br /&gt;Impossible to damage or destroy either participant, but they could damage each other with a little help.&lt;br /&gt;&lt;br /&gt;Who to help?&lt;br /&gt;&lt;br /&gt;Made more difficult by the fact that once involved in the battle, one or both sides summon reinforcements: either nearby plants and stones rise up in defense of the earth creature, or dozens of shockingly beautiful flying ethereal creatures come down to defend the ancient man.&lt;br /&gt;&lt;br /&gt;After resolution, a previously unseen cloaked figure hiding nearby vanishes into a tornado-like cloud of leaves and dirt.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-5016948207750949899?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/5016948207750949899/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=5016948207750949899' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/5016948207750949899'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/5016948207750949899'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2009/08/age-versus-earth.html' title='Age versus Earth'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-6799560563786280165</id><published>2009-08-01T15:43:00.002-04:00</published><updated>2009-08-08T16:01:38.039-04:00</updated><title type='text'>The Story of Stuff</title><content type='html'>An interesting video, well produced, that talks about where stuff comes from, and where it goes.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.storyofstuff.com/"&gt;http://www.storyofstuff.com/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Politically charged, of course, but not nutty.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-6799560563786280165?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/6799560563786280165/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=6799560563786280165' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6799560563786280165'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6799560563786280165'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2009/08/interesting-video-well-produced-that.html' title='The Story of Stuff'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-3412493781845993130</id><published>2009-08-01T10:25:00.002-04:00</published><updated>2009-08-01T10:31:00.758-04:00</updated><title type='text'>I find this INCREDIBLY funny...</title><content type='html'>This is incredibly surreal to me:&lt;br /&gt;&lt;p style="margin-left: 0.5in; color: rgb(51, 102, 255);"&gt;&lt;span style=";font-family:serif;font-size:180%;"  &gt;&lt;span style="font-style: italic;"&gt;Today the average American spends a mere 27 minutes a day on food preparation (another four minutes cleaning up); that’s less than half the time that we spent cooking and cleaning up when Julia arrived on our television screens. It’s also less than half the time it takes to watch a single episode of “Top Chef” or “Chopped” or “The Next Food Network Star.” What this suggests is that a great many Americans are spending considerably more time watching images of cooking on television than they are cooking themselves — an increasingly archaic activity they will tell you they no longer have the time for.&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;a href="http://www.nytimes.com/2009/08/02/magazine/02cooking-t.html?em"&gt;Out of the Kitchen, Onto the Couch&lt;/a&gt;, New York Times&lt;/p&gt;&lt;br /&gt;And... they don't even get to EAT the food!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-3412493781845993130?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/3412493781845993130/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=3412493781845993130' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/3412493781845993130'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/3412493781845993130'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2009/08/i-find-this-incredibly-funny.html' title='I find this INCREDIBLY funny...'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-1690006402454576078</id><published>2009-07-22T20:33:00.003-04:00</published><updated>2009-07-22T20:36:13.986-04:00</updated><title type='text'>More pictures of the aluminum melt</title><content type='html'>&lt;table style="float: right; width: 194px;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="background: transparent url(http://picasaweb.google.com/s/c/transparent_album_background.gif) no-repeat scroll left center; height: 194px; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous;" align="center"&gt;&lt;a href="http://picasaweb.google.com/shawn.vincent/MeltingAluminum?feat=embedwebsite"&gt;&lt;img src="http://lh4.ggpht.com/_KmWAahOhDDk/SmOKZUyM0cE/AAAAAAAACKI/GmaqCGdVGoo/s160-c/MeltingAluminum.jpg" style="margin: 1px 0pt 0pt 4px;" height="160" width="160" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="text-align: center; font-family: arial,sans-serif; font-size: 11px;"&gt;&lt;a href="http://picasaweb.google.com/shawn.vincent/MeltingAluminum?feat=embedwebsite" style="color: rgb(77, 77, 77); font-weight: bold; text-decoration: none;"&gt;Melting Aluminum&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;Thanks to Jessica, I've got a bunch more photos of my first aluminum melt.  Enjoy!&lt;br /&gt;&lt;br /&gt;I took an old aluminum ladder that was hanging around the property and chopped a bunch of chunks off of it tonight.  Getting ready for my second melt.  :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-1690006402454576078?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/1690006402454576078/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=1690006402454576078' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/1690006402454576078'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/1690006402454576078'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2009/07/more-pictures-of-aluminum-melt.html' title='More pictures of the aluminum melt'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh4.ggpht.com/_KmWAahOhDDk/SmOKZUyM0cE/AAAAAAAACKI/GmaqCGdVGoo/s72-c/MeltingAluminum.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-7911750592819440430</id><published>2009-07-19T16:59:00.005-04:00</published><updated>2009-07-19T19:06:06.001-04:00</updated><title type='text'>I melted aluminum!</title><content type='html'>&lt;table style="float: right; width: 194px;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="background: transparent url(http://picasaweb.google.com/s/c/transparent_album_background.gif) no-repeat scroll left center; height: 194px; -moz-background-clip: border; -moz-background-origin: padding; -moz-background-inline-policy: continuous;" align="center"&gt;&lt;a href="http://picasaweb.google.com/shawn.vincent/MeltingAluminum?feat=embedwebsite"&gt;&lt;img src="http://lh4.ggpht.com/_KmWAahOhDDk/SmOKZUyM0cE/AAAAAAAACH0/TIH3RVZVDA0/s160-c/MeltingAluminum.jpg" style="margin: 1px 0pt 0pt 4px;" height="160" width="160" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="text-align: center; font-family: arial,sans-serif; font-size: 11px;"&gt;&lt;a href="http://picasaweb.google.com/shawn.vincent/MeltingAluminum?feat=embedwebsite" style="color: rgb(77, 77, 77); font-weight: bold; text-decoration: none;"&gt;Melting Aluminum&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;&lt;span style="font-weight: bold;"&gt;Note: this is very dangerous. &lt;/span&gt; Melted aluminum is hot enough to vaporize human flesh.  Dropping molten aluminum on water causes flash vaporization and hurls the molten metal everywhere, like a fragmentation grenade.  Be VERY CAREFUL if you do this.  In a world of way too many stupid warning signs everywhere, this is a warning that is very real: take it very seriously. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;A long time dream come true: I melted aluminum this afternoon!&lt;br /&gt;&lt;br /&gt;I've wanted to do this for a long time now: I never believed it would be particularly difficult, and I was right!  Anybody can melt aluminum for practically free.  :-)&lt;br /&gt;&lt;br /&gt;I've always had a thing about recycling - I generally am against it, giving away my valuable materials for somebody else to benefit from: on the other hand, I have no way of taking advantage of them myself.&lt;br /&gt;&lt;br /&gt;Melting aluminum changes that.  I can make cast metal objects, and keep my own aluminum.  Aluminum is a valuable metal, but it's essentially free - you can get free aluminum garbage everywhere: people mostly want you to haul it away.  :-)&lt;br /&gt;&lt;br /&gt;First, I took a couple of coffee cans (free off Kijiji).  The first coffee can was going to be my fire chamber.  I drilled a bunch of holes in the bottom of it for airflow.&lt;br /&gt;&lt;br /&gt;The second coffee can was going to be my air chamber.  I Dremelled a round hole near the bottom of the can for the forced air to come in.  The fire chamber had to sit on top of this can, and to make it secure, I chopped slits down the side of the air chamber can so that it could expand and grab hold of the fire chamber can.&lt;br /&gt;&lt;br /&gt;Next, I got an old blower out of a fume extractor (free off Kijiji).  I wired a Decora lightswitch to it (free from my junk box from previous home renovations ), and a mains power cord (free from a dead hair dryer I got from Crystal at work).  I built a air director from the wide rectangular output port on the blower to a small round hole that matched the hole in the air chamber.  This was made out of aluminum foil (free-ish from Lisa's cupboard), and taped with foil tape (free from previous home renos).&lt;br /&gt;&lt;br /&gt;Lisa got me a bean can (free from her cupboard), I bent a spout on it with pliers, drilled two holes near the top, and made a loop of steel single strand fence wire (free from our quarter mile spool that we use for fencing) as a handle.  Instant cheap crucible.  Won't last too many melts, but for free, can't complain!&lt;br /&gt;&lt;br /&gt;Finally, I filled the fire chamber up with charcoal ($10 for an expensive bag of lump charcoal at Home Depot - it's all they had) packed around the crucible.  Doused with lighter fluid ($5 at Home Depot), it started easily.  Once the flames died down a bit, I turned on the blower, and was rewarded with a dull roar of fire.  Soon, the bean can glowed red hot.  I dropped a bunch of crushed soda tins (free garbage) into the fire, they melted, and I poured the aluminum out into a coffee can of sand.&lt;br /&gt;&lt;br /&gt;Basically free.  The only thing I paid for was the charcoal, of which I used probably 50 cents or so, and the lighter fluid, which I used pretty aggressively, but still -- this was a super cheap project.&lt;br /&gt;&lt;br /&gt;If you're even cheaper, you can make your own charcoal.  :-)&lt;br /&gt;&lt;br /&gt;The result was the awesome ingot in the pictures!  Hooray!  This was awesome!&lt;br /&gt;&lt;br /&gt;The furnace itself held up very well.  It's still outside with cooling coals in it.  The label burned/melted off, but otherwise, it's in good shape.  The crucible also held up well.  I wouldn't trust it through too many melts (I don't want to lose aluminum), but it's fine for single use melting.&lt;br /&gt;&lt;br /&gt;I used around 8 cans (I didn't count beforehand), hammered flat with a hammer.  The ingot (or rather, "mishapen blob" :-) weighs 1.95 ounces.  I didn't weight the slag, but I got about 1/3 aluminum by volume.  The slag is pretty neat nasty looking stuff.  It's still outside also.&lt;br /&gt;&lt;br /&gt;A fun project.  Recommended (but heed the warnings at the beginning of this post!)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-7911750592819440430?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/7911750592819440430/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=7911750592819440430' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/7911750592819440430'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/7911750592819440430'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2009/07/i-melted-aluminum.html' title='I melted aluminum!'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh4.ggpht.com/_KmWAahOhDDk/SmOKZUyM0cE/AAAAAAAACH0/TIH3RVZVDA0/s72-c/MeltingAluminum.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-9196852738425817197</id><published>2009-04-12T19:45:00.004-04:00</published><updated>2009-04-12T20:37:42.618-04:00</updated><title type='text'>Fixed my MacBookPro noisy fan for free!</title><content type='html'>&lt;table style="float: right; width: 194px;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="background: transparent url(http://picasaweb.google.com/s/c/transparent_album_background.gif) no-repeat scroll left center; height: 194px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" align="center"&gt;&lt;a href="http://picasaweb.google.com/shawn.vincent/FixingMacBookProNoisyFanForFree?feat=embedwebsite"&gt;&lt;img src="http://lh4.ggpht.com/_KmWAahOhDDk/SeJ90WJR7_E/AAAAAAAAB-U/nHAAWikKU3A/s160-c/FixingMacBookProNoisyFanForFree.jpg" style="margin: 1px 0pt 0pt 4px;" height="160" width="160" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="text-align: center; font-family: arial,sans-serif; font-size: 11px;"&gt;&lt;a href="http://picasaweb.google.com/shawn.vincent/FixingMacBookProNoisyFanForFree?feat=embedwebsite" style="color: rgb(77, 77, 77); font-weight: bold; text-decoration: none;"&gt;Fixing MacBookPro noisy fan for free&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;I've had a very irritating (and worrisome) noisy MBP fan for a few years now.   It was the right fan, by the right speaker.&lt;br /&gt;&lt;br /&gt;It got worse today.  Which is irritating: I figured that I'd have to bring it into a service center, or the fan would die, and my MBP would overheat, and worse things would happen.&lt;br /&gt;&lt;br /&gt;So I read around online, and found one guy who replaced it himself.  He bought a replacement fan online, and put it in.&lt;br /&gt;&lt;br /&gt;I read around some more, and some people tried lubricating it, etc.&lt;br /&gt;&lt;br /&gt;I've had luck fixing power supply fans before with a bit of light machine oil and a good cleaning, so I thought: what the heck, how hard could it be?  I mean, I spend most of my waking hours taking apart electronics, the only difference is that I want this one to work again when I'm done.  :-)&lt;br /&gt;&lt;br /&gt;So I tore it all down, and took the fan out (thank you iFixit.com for detailed teardown directions).  It was quite easy: even the dreaded front of the case stickiness wasn't too bad: I guess I'm used to that by now: I just eased it open with my little pry tool I have for just such occassions.  Only a couple little nicks to give my MBP character.  :-)&lt;br /&gt;&lt;br /&gt;I took the fan out, and sure enough there was some dust.  I cleaned it out, and read the fan: apparently it's just a little +5V job.  I hooked it up to my bench power supply, and it ran silent (+5V to red and ground to black, in case you're doing this yourself).  Nice.&lt;br /&gt;&lt;br /&gt;I reinstalled it in the computer, and before plugging it back into the motherboard, I hooked it up again to 5V: still silent.  :-)  So then I reassembled it.&lt;br /&gt;&lt;br /&gt;I had two scares:&lt;br /&gt;&lt;br /&gt;1. I didn't follow the iFixit.com advice, and I didn't actually unplug the keyboard from the motherboard.  I just swivelled it sortof out of the way (you can see in the pictures).  Once I forgot though, and kindof yanked it, and it came partially unplugged.  So then I plugged it back in and all was well.&lt;br /&gt;&lt;br /&gt;2. I put all my screws on a piece of paper, labelled.  I thought about it at the time, be careful not to bump it.  Then, when I grabbed wires to hook up the fan to my bench top power supply, I bumped it.  Luckily, nothing went far (about a half an inch move), but I nearly had a heart attack.&lt;br /&gt;&lt;br /&gt;I turned it on, and I now am the proud owner of a silent MacBook Pro.  It's amazing.  In all the years I've had this thing, it's chugged along.  Now it sounds like a brand new computer!  Just to make sure the fan was still operating (maybe it was TOO silent!), I cranked it up with smcFanControl, and sure enough, the fan still works.&lt;br /&gt;&lt;br /&gt;I'm so happy.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Oh: I forgot.  I don't own an T6 Torx driver.  So I just used a .05 hex key: it works fine.&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-9196852738425817197?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/9196852738425817197/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=9196852738425817197' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/9196852738425817197'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/9196852738425817197'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2009/04/fixed-my-macbookpro-noisy-fan-for-free.html' title='Fixed my MacBookPro noisy fan for free!'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh4.ggpht.com/_KmWAahOhDDk/SeJ90WJR7_E/AAAAAAAAB-U/nHAAWikKU3A/s72-c/FixingMacBookProNoisyFanForFree.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-1934558027430523657</id><published>2009-04-12T18:32:00.002-04:00</published><updated>2009-04-12T18:39:33.427-04:00</updated><title type='text'>Z axis begun</title><content type='html'>&lt;table style="float: right; width: 194px;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="background: transparent url(http://picasaweb.google.com/s/c/transparent_album_background.gif) no-repeat scroll left center; height: 194px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" align="center"&gt;&lt;a href="http://picasaweb.google.com/shawn.vincent/FreeCNCMachine?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_KmWAahOhDDk/SeFWRpuv2SE/AAAAAAAAB90/sW_qnG_ufOI/s160-c/FreeCNCMachine.jpg" style="margin: 1px 0pt 0pt 4px;" height="160" width="160" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="text-align: center; font-family: arial,sans-serif; font-size: 11px;"&gt;&lt;a href="http://picasaweb.google.com/shawn.vincent/FreeCNCMachine?feat=embedwebsite" style="color: rgb(77, 77, 77); font-weight: bold; text-decoration: none;"&gt;Free CNC Machine&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;Built a support structure for the Z axis today -- the first time I've used my sliding miter saw to do half lap joints.  It turned out pretty well.  :-)&lt;br /&gt;&lt;br /&gt;Now I just need a motor and some sort of carriage, and I'll be set.&lt;br /&gt;&lt;br /&gt;The software is working out pretty well, although there were some odd artifacts in the plots today that I want to investigate.  Also, the stepper on my Y axis stopped working for a while.  I am suspicious it overheated: I might need to do a chopper current limiter on my driver circuits, but it started working again, so that's fine.&lt;br /&gt;&lt;br /&gt;The fan on my MacBook Pro got noisier again.  :-(  At some point I'll probably have to replace it.  &lt;sigh&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-1934558027430523657?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/1934558027430523657/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=1934558027430523657' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/1934558027430523657'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/1934558027430523657'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2009/04/z-axis-begun.html' title='Z axis begun'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh6.ggpht.com/_KmWAahOhDDk/SeFWRpuv2SE/AAAAAAAAB90/sW_qnG_ufOI/s72-c/FreeCNCMachine.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-7070134325067689026</id><published>2009-04-11T22:37:00.003-04:00</published><updated>2009-04-11T22:52:10.402-04:00</updated><title type='text'>A little further towards a CNC machine</title><content type='html'>&lt;table style="float: right; width: 194px;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="background: transparent url(http://picasaweb.google.com/s/c/transparent_album_background.gif) no-repeat scroll left center; height: 194px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" align="center"&gt;&lt;a href="http://picasaweb.google.com/shawn.vincent/FreeCNCMachine?feat=embedwebsite"&gt;&lt;img src="http://lh6.ggpht.com/_KmWAahOhDDk/SeFWRpuv2SE/AAAAAAAAB9o/UIM-30KpwJU/s160-c/FreeCNCMachine.jpg" style="margin: 1px 0pt 0pt 4px;" height="160" width="160" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="text-align: center; font-family: arial,sans-serif; font-size: 11px;"&gt;&lt;a href="http://picasaweb.google.com/shawn.vincent/FreeCNCMachine?feat=embedwebsite" style="color: rgb(77, 77, 77); font-weight: bold; text-decoration: none;"&gt;Free CNC Machine&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;Big progress yesterday and today.&lt;br /&gt;&lt;br /&gt;First of all, I wrote a bunch of new software to drive the mill.  My basic architectural choice was to let the firmware draw lines only, and do smart buffering to drive all curves from the host machine.  With some care, the buffer size on the Arduino can be quite large.&lt;br /&gt;&lt;br /&gt;I've defined a virtual machine on the Arduino to handle a stream of operations.  A timer interrupt sits and loops and reads and processes instructions off the queue.  A series of registers are used that can be updated or read by instructions.&lt;br /&gt;&lt;br /&gt;The interesting twist in this VM is that each instruction can take a fair bit of time to execute.  One instruction, for example, is GO, which travels in a straight line at the current feedrate to the point defined by the X, Y, and Z registers.  The timer loop is controlled by the feedrate, and each time through the loop, the same instruction's SLICE function is called (as in timeslice), and it does one step or whatever.  Other instructions are LOADX, LOADY, GORELXYZ - it's a CISC machine, and the instruction set will be optimized to keep the mill busy with the constraints of the queue.&lt;br /&gt;&lt;br /&gt;Also, Philippe (a friend from work) came over yesterday.  His kids came to see the goats and sheep, and he came to drop off some awesome old electronics.  :-)  He brought a bunch of stuff, but one critical piece he brought was a scanner.  I couldn't leave it alone, so I stripped it down, and replaced the Y axis on my machine with the scanner.  It works good!  :-)  It's nicer to put objects on.&lt;br /&gt;&lt;br /&gt;I drew a few more houses with the machine (my only interesting program to date) with the new software, holding the pen by hand over the moving bed.&lt;br /&gt;&lt;br /&gt;Now all I've got to do is build some sort of gantry for the Z axis to mount on.  For starters, I'd be happy with something that would just hold the pen for me.  :-)&lt;br /&gt;&lt;br /&gt;Very cool.  It's coming along!  Pictures will be up soon...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-7070134325067689026?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/7070134325067689026/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=7070134325067689026' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/7070134325067689026'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/7070134325067689026'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2009/04/little-further-towards-cnc-machine.html' title='A little further towards a CNC machine'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh6.ggpht.com/_KmWAahOhDDk/SeFWRpuv2SE/AAAAAAAAB9o/UIM-30KpwJU/s72-c/FreeCNCMachine.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-7205676220572640379</id><published>2009-04-05T21:17:00.002-04:00</published><updated>2009-04-05T21:21:58.188-04:00</updated><title type='text'>Mini Free CNC - Mark 0.1</title><content type='html'>So I have my first "working" "CNC" machine.  :-)  It's actually kindof silly.&lt;br /&gt;&lt;br /&gt;As I was scrounging old and dead electronics from around Ottawa, I realized that scanners and dot matrix printers have already got the mechanics and motor control for stepper-powered axes.&lt;br /&gt;&lt;br /&gt;So, I took an old scanner and an old dot matrix printer, ripped everything except the motor and the belt-driven gantry out of each, and stacked them on top of one another orthogonally.&lt;br /&gt;&lt;br /&gt;Then, I built a couple of L297-based stepper drive circuits on my breadboard, hooked it up to the Arduino, and wrote a little sketch.&lt;br /&gt;&lt;br /&gt;Tonight, I have my own 2-axis CNC machine drawing a picture of a house.  I have to hold the pen in place by hand, but it does the drawing.  :-)  It's very neat.&lt;br /&gt;&lt;br /&gt;First real success.  One more axis, a little more work, and I'll be doing interesting things in no time!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-7205676220572640379?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/7205676220572640379/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=7205676220572640379' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/7205676220572640379'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/7205676220572640379'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2009/04/mini-free-cnc-mark-01.html' title='Mini Free CNC - Mark 0.1'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-2446875555601221392</id><published>2009-03-05T21:33:00.004-05:00</published><updated>2009-03-06T08:08:12.559-05:00</updated><title type='text'>Duinoscope v2.0</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.svincent.com/shawn/blog/uploaded_images/Duinoscope-739957.gif"&gt;&lt;img style="margin: 0px auto 10px; float: right; display: block; text-align: center; cursor: pointer; width: 320px; height: 210px;" src="http://www.svincent.com/shawn/blog/uploaded_images/Duinoscope-739954.gif" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;I revised my free Arduino oscilloscope software in a couple of ways: I changed the Arduino side to use the StandardFirmata sketch (one less thing to maintain, and quite a bit faster), and made a number of improvements to the software.  In particular, I added support for digital inputs, so Duinoscope is now capable of being a primitive logic analyzer.&lt;br /&gt;&lt;br /&gt;The biggest limitation right now is the low sampling rate.  I'm going to try a couple of approaches to improve this, but it's already quite useful in handling low frequency signals.  I used it to debug my rotary encoder project based on a PS/2 mouse.&lt;br /&gt;&lt;br /&gt;Here it is, in all its glory: load it into Processing, follow the embedded instructions, and enjoy!&lt;br /&gt;&lt;br /&gt;&lt;pre style="border: 1px solid gray; margin: 1em;"&gt;/*&lt;br /&gt;* Duinoscope: the free Arduino-based Oscilloscope/Logic Analyzer, V2.0&lt;br /&gt;*&lt;br /&gt;* Requires StandardFirmata to be loaded into a connected Arduino.&lt;br /&gt;*&lt;br /&gt;* Hereby placed into the Public Domain.&lt;br /&gt;*&lt;br /&gt;* 2009 by Shawn Vincent   &amp;lt;svincent@svincent.com&gt;&lt;br /&gt;* http://www.svincent.com/&lt;br /&gt;*&lt;br /&gt;* Inspired by source code by an anonymous poster at&lt;br /&gt;* http://accrochages.drone.ws/en/node/90&lt;br /&gt;*&lt;br /&gt;* There are a lot of features that this program *could* have, but&lt;br /&gt;* doesn't.  It is not a high end tool, but it's free, and it's a&lt;br /&gt;* single file Processing sketch.  What can you ask for?  Hopefully&lt;br /&gt;* you'll find it as useful as I have.&lt;br /&gt;*&lt;br /&gt;* The biggest limitation is that the sampling rate is limited by&lt;br /&gt;* Firmata and the refresh rate of the Processing sketch.  The latter&lt;br /&gt;* is not too hard to deal with, I plan to investigate if the Firmata&lt;br /&gt;* limitation is hard to resolve.&lt;br /&gt;*&lt;br /&gt;*/&lt;br /&gt;import processing.serial.*;&lt;br /&gt;import cc.arduino.*;&lt;br /&gt;&lt;br /&gt;/*&lt;br /&gt;Instructions for use&lt;br /&gt;&lt;br /&gt;1. Build two fonts:&lt;br /&gt;  Courier-48.vlw and Courier-14.vlw&lt;br /&gt;using Tools&gt;Create Font... in the Processing IDE.&lt;br /&gt;&lt;br /&gt;Place these fonts in the data/ directory of the sketch.&lt;br /&gt;&lt;br /&gt;2. Install the StandardFirmata sketch onto your Arduino.&lt;br /&gt;&lt;br /&gt;This sketch can be loaded in the standard Arduino IDE&lt;br /&gt;using File&gt;Sketchbook&gt;Examples&gt;Library-Firmata&gt;StandardFirmata&lt;br /&gt;&lt;br /&gt;Upload this sketch to your Arduino using File&gt;Upload to I/O Board&lt;br /&gt;&lt;br /&gt;3. Configure as needed&lt;br /&gt;&lt;br /&gt;In the Configuration section below, add or remove elements to the&lt;br /&gt;'data' array to configure the scope elements to display and which&lt;br /&gt;pins you would like to monitor.&lt;br /&gt;&lt;br /&gt;Advanced: it is possible to do different processing on the inputs&lt;br /&gt;before display.  A sample OhmStream that calculates resistance of&lt;br /&gt;a resistive sensor using a voltage divider is provided.  Others&lt;br /&gt;could be added easily.&lt;br /&gt;&lt;br /&gt;3. Run Duinoscope in Processing and enjoy.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;*/&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;// -----------------------------------------------------------------------------&lt;br /&gt;// ---- Configuration&lt;br /&gt;// -----------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;/**&lt;br /&gt;* This array defines the data sources read from the Arduino.  Each of&lt;br /&gt;* them represents a graph on the display.&lt;br /&gt;*&lt;br /&gt;* You can modify this if you like, to change colors or labels, or&lt;br /&gt;* more dramatically, to change the type of data source (so that you&lt;br /&gt;* can see values in Ohms rather than Volts, etc).&lt;br /&gt;*&lt;br /&gt;*/&lt;br /&gt;final DataStream[] data = new DataStream[] {&lt;br /&gt;new VoltStream("analog 0", analog(0), color(255,0,0)),&lt;br /&gt;new VoltStream("analog 1", analog(1), color(0,255,0)),&lt;br /&gt;new VoltStream("analog 2", analog(2), color(0,0,255)),&lt;br /&gt;//     new VoltStream("analog 3", analog(3), color(255,255,0)),&lt;br /&gt;//     new VoltStream("analog 4", analog(4), color(255,0,255)),&lt;br /&gt;//     new VoltStream("analog 5", analog(5), color(0,255,255)),&lt;br /&gt;&lt;br /&gt;//     new VoltStream("digital 0", digital(0), color(127,0,0)),&lt;br /&gt;//     new VoltStream("digital 1", digital(1), color(0,127,0)),&lt;br /&gt;//     new VoltStream("digital 2", digital(2), color(0,0,127)),&lt;br /&gt;new VoltStream("digital 3", digital(3), color(127,127,0)),&lt;br /&gt;//     new VoltStream("digital 4", digital(4), color(127,0,127)),&lt;br /&gt;//     new VoltStream("digital 5", digital(5), color(0,127,127)),&lt;br /&gt;&lt;br /&gt;//     new VoltStream("digital 6", digital(6), color(255,127,127)),&lt;br /&gt;//     new VoltStream("digital 7", digital(7), color(127,255,127)),&lt;br /&gt;//     new VoltStream("digital 8", digital(8), color(127,127,255)),&lt;br /&gt;//     new VoltStream("digital 9", digital(9), color(255,255,127)),&lt;br /&gt;//     new VoltStream("digital 10", digital(10), color(255,127,255)),&lt;br /&gt;//     new VoltStream("digital 11", digital(11), color(127,255,255)),&lt;br /&gt;&lt;br /&gt;//     new VoltStream("digital 12", digital(12), color(255,0,0)),&lt;br /&gt;//     new VoltStream("digital 13", digital(13), color(0,255,0)),&lt;br /&gt;&lt;br /&gt;};&lt;br /&gt;&lt;br /&gt;public static AnalogPin analog(int pin) { return new AnalogPin(pin); }&lt;br /&gt;public static DigitalPin digital(int pin) { return new DigitalPin(pin); }&lt;br /&gt;&lt;br /&gt;// -----------------------------------------------------------------------------&lt;br /&gt;// ---- Global state&lt;br /&gt;// -----------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;/**&lt;br /&gt;* The connection to the Arduino&lt;br /&gt;**/&lt;br /&gt;Arduino arduino;&lt;br /&gt;&lt;br /&gt;/**&lt;br /&gt;* Large font used to show the current value of a data source.&lt;br /&gt;*&lt;br /&gt;* Make sure you have these fonts made for Processing. Use Tools...Create Font.&lt;br /&gt;**/&lt;br /&gt;static PFont bigFont;&lt;br /&gt;&lt;br /&gt;/**&lt;br /&gt;* Smaller font used to show additional information about the data source.&lt;br /&gt;**/&lt;br /&gt;static PFont smallFont;&lt;br /&gt;&lt;br /&gt;// -----------------------------------------------------------------------------&lt;br /&gt;// -----------------------------------------------------------------------------&lt;br /&gt;// -----------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;/**&lt;br /&gt;* setup: called once&lt;br /&gt;**/&lt;br /&gt;void setup()&lt;br /&gt;{&lt;br /&gt;// Connect via Firmata&lt;br /&gt;String serialPortName = Arduino.list()[0];&lt;br /&gt;try {&lt;br /&gt;arduino = new Arduino(this, serialPortName);&lt;br /&gt;} catch (RuntimeException ex) {&lt;br /&gt;throw new RuntimeException&lt;br /&gt;  ("Could not find an Arduino on "+serialPortName, ex);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;// force all digital pins to be input pins.&lt;br /&gt;for (int i=0;i&amp;lt;14;i++)&lt;br /&gt;arduino.pinMode(i, Arduino.INPUT);&lt;br /&gt;&lt;br /&gt;// set the size of the window to 80% of the screen&lt;br /&gt;// Note: DO NOT USE P2D RENDERER.  For some unknown reason, it causes&lt;br /&gt;// analogRead() and digitalRead() to return spurious values.  Grrr.&lt;br /&gt;// http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1236214804/0&lt;br /&gt;size(screen.width*8/10, screen.height*8/10);&lt;br /&gt;&lt;br /&gt;// load the fonts&lt;br /&gt;bigFont = loadFont("Courier-48.vlw");&lt;br /&gt;smallFont = loadFont("Courier-14.vlw");&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;// -----------------------------------------------------------------------------&lt;br /&gt;// -----------------------------------------------------------------------------&lt;br /&gt;// -----------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;/**&lt;br /&gt;* draw: called to render each frame.&lt;br /&gt;**/&lt;br /&gt;void draw()&lt;br /&gt;{&lt;br /&gt;// once per frame, read stuff from the Arduino.&lt;br /&gt;for (int i=0; i&amp;lt;data.length; i++) {&lt;br /&gt;data[i].readData(arduino);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;// clear screen to black.&lt;br /&gt;background(0);&lt;br /&gt;&lt;br /&gt;// render the graphs&lt;br /&gt;for (int i=0; i&amp;lt;data.length; i++) {&lt;br /&gt;data[i].drawGraph(this,&lt;br /&gt;  0,     height/data.length*i,&lt;br /&gt;  width, height/data.length);&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;// -----------------------------------------------------------------------------&lt;br /&gt;// -----------------------------------------------------------------------------&lt;br /&gt;// -----------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;static abstract class Pin {&lt;br /&gt;&lt;br /&gt;protected final int pin;&lt;br /&gt;&lt;br /&gt;public Pin(int _pin) { pin = _pin; }&lt;br /&gt;&lt;br /&gt;public abstract int read(Arduino arduino);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;static class AnalogPin extends Pin {&lt;br /&gt;public AnalogPin(int _pin) { super(_pin); }&lt;br /&gt;public int read(Arduino arduino) {&lt;br /&gt;int r = arduino.analogRead(pin);&lt;br /&gt;if (r &amp;lt; 0 || r &gt; 1023)&lt;br /&gt;  System.out.println("Bad value a"+pin+": "+r);&lt;br /&gt;return r;&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;static class DigitalPin extends Pin {&lt;br /&gt;public DigitalPin(int _pin) { super(_pin); }&lt;br /&gt;public int read(Arduino arduino) {&lt;br /&gt;return arduino.digitalRead(pin) * 1023;&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;abstract static class DataStream {&lt;br /&gt;final int PrevValuesCount = 1000;&lt;br /&gt;&lt;br /&gt;private final String name;&lt;br /&gt;private final Pin pin;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;private int val = -1;&lt;br /&gt;private int min = -1;&lt;br /&gt;private int max = -1;&lt;br /&gt;private int total = -1;&lt;br /&gt;private int count = 0;&lt;br /&gt;&lt;br /&gt;// cyclic buffer&lt;br /&gt;private final int[] prevValues = new int[PrevValuesCount];&lt;br /&gt;private int prevValuesNext = 0;&lt;br /&gt;&lt;br /&gt;private final color displayColor;&lt;br /&gt;&lt;br /&gt;PImage prevImg;&lt;br /&gt;&lt;br /&gt;public DataStream(String _name, Pin _pin, color _displayColor) {&lt;br /&gt;name = _name;&lt;br /&gt;pin = _pin;&lt;br /&gt;displayColor = _displayColor;&lt;br /&gt;for (int i=0; i&amp;lt;PrevValuesCount; i++)&lt;br /&gt;  prevValues[i] = -1; // initialize to undefined.&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;public String getName() { return name; }&lt;br /&gt;public color getColor() { return displayColor; }&lt;br /&gt;&lt;br /&gt;public void add(int v) {&lt;br /&gt;&lt;br /&gt;// add value to cyclic buffer&lt;br /&gt;prevValues[prevValuesNext] = v;&lt;br /&gt;prevValuesNext = (prevValuesNext+1) % PrevValuesCount;&lt;br /&gt;&lt;br /&gt;val = v;&lt;br /&gt;&lt;br /&gt;if (min == -1 || v &amp;lt; min) min = v;&lt;br /&gt;if (max == -1 || v &gt; max) max = v;&lt;br /&gt;total += v;&lt;br /&gt;count++;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;public int getPrevRaw(int i) {&lt;br /&gt;int idx = (prevValuesNext-i) % PrevValuesCount;&lt;br /&gt;if (idx &amp;lt; 0) idx += PrevValuesCount; // normalize negative mod stuff&lt;br /&gt;return prevValues[idx];&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;public abstract String getUnit();&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;public int getNowRaw() { return val; }&lt;br /&gt;public float getNowCooked() { return cook(getNowRaw()); }&lt;br /&gt;&lt;br /&gt;public int getMinRaw() { return min; }&lt;br /&gt;public float getMinCooked() { return cook(getMinRaw()); }&lt;br /&gt;&lt;br /&gt;public int getMaxRaw() { return max; }&lt;br /&gt;public float getMaxCooked() { return cook(getMaxRaw()); }&lt;br /&gt;&lt;br /&gt;public int getAvgRaw() { if (count == 0) return -1; return total / count; }&lt;br /&gt;public float getAvgCooked() { return cook(getAvgRaw()); }&lt;br /&gt;&lt;br /&gt;abstract protected float cook(int v);&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;static float toVolts(int analogPinValue, float minValue, float maxValue) {&lt;br /&gt;return round(map(analogPinValue, 0, 1023, minValue, maxValue), 10.0);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void readData(Arduino arduino) {&lt;br /&gt;add(pin.read(arduino));&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;/**&lt;br /&gt;* Render the current graph for the given data stream.&lt;br /&gt;**/&lt;br /&gt;void drawGraph(PApplet applet, int x, int y, int width, int height) {&lt;br /&gt;&lt;br /&gt;// calculate some stuff useful throughout this method.&lt;br /&gt;final int labelWidth = 300;&lt;br /&gt;final int bottomPx = y + height;&lt;br /&gt;&lt;br /&gt;// hack: don't draw right to the top.&lt;br /&gt;height -= 1;&lt;br /&gt;&lt;br /&gt;// Draw out the detail data smallish.&lt;br /&gt;drawTextualSummary(applet, x+width-labelWidth, y);&lt;br /&gt;&lt;br /&gt;int graphWidth = width-labelWidth;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;// draw the max/min/avg line - kindof cute feature&lt;br /&gt;{&lt;br /&gt;  // max&lt;br /&gt;  applet.stroke(50, 0, 0); // dark red&lt;br /&gt;  int maxV = getMaxRaw()*height/1024;&lt;br /&gt;  if (maxV &gt;= 0)&lt;br /&gt;applet.line(x, bottomPx-maxV-1, x+graphWidth, bottomPx-maxV-1);&lt;br /&gt;&lt;br /&gt;  // avg&lt;br /&gt;  applet.stroke(0, 50, 0); // dark green&lt;br /&gt;  int avgV = getAvgRaw()*height/1024;&lt;br /&gt;  if (avgV &gt;= 0)&lt;br /&gt;applet.line(x, bottomPx-avgV-1, x+graphWidth, bottomPx-avgV-1);&lt;br /&gt;&lt;br /&gt;  // min&lt;br /&gt;  applet.stroke(0, 0, 50); // dark blue&lt;br /&gt;  int minV = getMinRaw()*height/1024;&lt;br /&gt;  if (minV &gt;= 0)&lt;br /&gt;applet.line(x, bottomPx-minV-1, x+graphWidth, bottomPx-minV-1);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;// draw the actual graph line&lt;br /&gt;applet.stroke(getColor());&lt;br /&gt;int prevValuesCount = graphWidth - 20;&lt;br /&gt;int prevRaw = getPrevRaw(1);&lt;br /&gt;for (int i=2; i&amp;lt;prevValuesCount; i++) {&lt;br /&gt;&lt;br /&gt;  // now we know 'curr' and prev'&lt;br /&gt;  int currRaw = getPrevRaw(i);&lt;br /&gt;&lt;br /&gt;  // if the value exists, draw the line.&lt;br /&gt;  if (currRaw &gt;= 0) {&lt;br /&gt;// scale to the size of the widget&lt;br /&gt;int prevV = prevRaw*height/1024;&lt;br /&gt;int currV = currRaw*height/1024;&lt;br /&gt;&lt;br /&gt;applet.line(x+i-1, bottomPx-prevV-1, x+i, bottomPx-currV-1);&lt;br /&gt;  }&lt;br /&gt;&lt;br /&gt;  // keep track of prev&lt;br /&gt;  prevRaw = currRaw;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;// draw lines between each graph&lt;br /&gt;applet.stroke(70, 70 ,70);&lt;br /&gt;applet.line(x, bottomPx, x+width-1, bottomPx);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;/**&lt;br /&gt;*&lt;br /&gt;**/&lt;br /&gt;void drawTextualSummary(PApplet applet, int x, int y)&lt;br /&gt;{&lt;br /&gt;int now = getNowRaw();&lt;br /&gt;float nowV = getNowCooked();&lt;br /&gt;&lt;br /&gt;int min = getMinRaw();&lt;br /&gt;float minV = getMinCooked();&lt;br /&gt;&lt;br /&gt;int max = getMaxRaw();&lt;br /&gt;float maxV = getMaxCooked();&lt;br /&gt;&lt;br /&gt;int avg = getAvgRaw();&lt;br /&gt;float avgV = getAvgCooked();&lt;br /&gt;&lt;br /&gt;applet.textFont(smallFont);&lt;br /&gt;&lt;br /&gt;int smallOffset = 5;&lt;br /&gt;&lt;br /&gt;int curY = y;&lt;br /&gt;&lt;br /&gt;// draw the name of the data source in the data source color (legend)&lt;br /&gt;applet.fill(getColor());&lt;br /&gt;applet.text(getName(), x+smallOffset, curY+=14);&lt;br /&gt;&lt;br /&gt;// draw the rest of the values in white.&lt;br /&gt;applet.fill(255);&lt;br /&gt;applet.text("min: " + pad(concise(minV), 7) + getUnit()+" " + min,&lt;br /&gt;   x+smallOffset, curY += 14);&lt;br /&gt;applet.text("max: " + pad(concise(maxV), 7) + getUnit()+" " + max,&lt;br /&gt;   x+smallOffset, curY += 14);&lt;br /&gt;applet.text("avg: " + pad(concise(avgV), 7) + getUnit()+" " + avg,&lt;br /&gt;   x+smallOffset, curY += 14);&lt;br /&gt;&lt;br /&gt;// Draw out the current cooked values biggish&lt;br /&gt;applet.textFont(bigFont);&lt;br /&gt;applet.fill(getColor());&lt;br /&gt;applet.text(pad(concise(nowV),7) + getUnit(),&lt;br /&gt;   x+smallOffset, curY+=48);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;public class VoltStream extends DataStream {&lt;br /&gt;private final float minValue;&lt;br /&gt;private final float maxValue;&lt;br /&gt;&lt;br /&gt;public VoltStream(String _name, Pin _id, color _displayColor) {&lt;br /&gt;   this(_name, _id, _displayColor, 0, 5);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;public VoltStream(String _name, Pin _id, color _displayColor,&lt;br /&gt;     float _min, float _max) {&lt;br /&gt;   super(_name, _id, _displayColor);&lt;br /&gt;minValue = _min;&lt;br /&gt;maxValue = _max;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;public String getUnit() { return "V"; }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;protected float cook(int v) { return toVolts(v, minValue, maxValue); }&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;public class OhmStream extends DataStream {&lt;br /&gt;private final float otherResistorOhms;&lt;br /&gt;&lt;br /&gt;public OhmStream(String _name, Pin _id, color _displayColor,&lt;br /&gt;    float _otherResistorOhms) {&lt;br /&gt;   super(_name, _id, _displayColor);&lt;br /&gt;otherResistorOhms = _otherResistorOhms;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;public String getUnit() { return "ohm"; }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;protected float cook(int v)&lt;br /&gt;{&lt;br /&gt;float vOut = toVolts(v, 0, 5);&lt;br /&gt;float vIn = 5.0;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;/*&lt;br /&gt;Voltage divider theory says:&lt;br /&gt;&lt;br /&gt;vOut = R2/(R1+R2)*vIn&lt;br /&gt;&lt;br /&gt;Through simple transformations, we can get:&lt;br /&gt;&lt;br /&gt;R1 = R2 * (vIn - vOut) / vOut&lt;br /&gt;*/&lt;br /&gt;&lt;br /&gt;return otherResistorOhms * (vIn - vOut) / vOut;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;// -----------------------------------------------------------------------------&lt;br /&gt;// -----------------------------------------------------------------------------&lt;br /&gt;// -----------------------------------------------------------------------------&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;static String concise(float v) {&lt;br /&gt;if (v == 0 || v == Float.NaN&lt;br /&gt;|| v == Float.NEGATIVE_INFINITY || v == Float.POSITIVE_INFINITY)&lt;br /&gt;return String.valueOf(v);&lt;br /&gt;else if (v&gt;1000000)&lt;br /&gt;return round(v/1000000.0, 10.0)+"M";&lt;br /&gt;else if (v&gt;1000)&lt;br /&gt;return round(v/1000.0, 10.0)+"K";&lt;br /&gt;else if (v&amp;lt;0.001)&lt;br /&gt;return round(v*1000.0, 10.0)+"m";&lt;br /&gt;else if (v&amp;lt;0.000001)&lt;br /&gt;return round(v*1000000.0, 10.0)+"u";&lt;br /&gt;else&lt;br /&gt;return String.valueOf(v);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;static float round(float v, float factor) {&lt;br /&gt;return round(v*factor)/factor;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;static String pad(String s, int size) {&lt;br /&gt;if (s.length() &gt;= size)&lt;br /&gt;return s;&lt;br /&gt;return "                                                     "&lt;br /&gt;.substring(0,size-s.length()) + s;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-2446875555601221392?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/2446875555601221392/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=2446875555601221392' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/2446875555601221392'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/2446875555601221392'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2009/03/duinoscope-v20.html' title='Duinoscope v2.0'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-4638425322935987619</id><published>2009-02-22T12:44:00.001-05:00</published><updated>2009-02-22T13:24:02.355-05:00</updated><title type='text'>Mouse Destruction Part Two</title><content type='html'>&lt;table style="float: right; width: 194px;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="background: transparent url(http://picasaweb.google.com/f/img/transparent_album_background.gif) no-repeat scroll left center; height: 194px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" align="center"&gt;&lt;a href="http://picasaweb.google.com/shawn.vincent/MouseDestruction?feat=embedwebsite"&gt;&lt;img src="http://lh4.ggpht.com/_KmWAahOhDDk/SYzeRdNnMCE/AAAAAAAAB7A/wbHSV3OHY8w/s160-c/MouseDestruction.jpg" style="margin: 1px 0pt 0pt 4px;" height="160" width="160" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="text-align: center; font-family: arial,sans-serif; font-size: 11px;"&gt;&lt;a href="http://picasaweb.google.com/shawn.vincent/MouseDestruction?feat=embedwebsite" style="color: rgb(77, 77, 77); font-weight: bold; text-decoration: none;"&gt;Mouse Destruction&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;So, now that I've got the basic exploded mouse working, the next step is to make it useful.&lt;br /&gt;&lt;br /&gt;Basically, I want to have a wheel of some sort that acts as a precision odometer.  For this, I need a rotating shaft that holds the mouse encoder wheel, and some sort of enclosure that holds the sensor in alignment.  Also, I'd like the whole thing to be essentially dustproof.&lt;br /&gt;&lt;br /&gt;My first attempt was educational, but ultimately a failure.  I was hoping that the solid 24gague wires I wired the thing together with would be solid enough to hold the sensor in position.  Unfortunately, it just wasn't stable enough.&lt;br /&gt;&lt;br /&gt;To hold my encoding wheel, I am using a shaft that I scrounged off of something (probably a floppy drive or CD-ROM).  I've got a dozen or so of these.&lt;br /&gt;&lt;br /&gt;I cut the encoder wheel with a hobby saw, so that it was just the wheel with a hole in the middle (if your mouse is different, you may also need to drill a hole).  I put some electrical tape around the shaft to make it thicker, and friction fit the encoding wheel onto it.  This part seems to have worked out very well.&lt;br /&gt;&lt;br /&gt;Earlier, I had bought a bunch of tiny tupperware containers from the dollar store - something like 9 or 12 for a dollar.  They're a perfect size to hold everything, and have the bonus of being dustproof.&lt;br /&gt;&lt;br /&gt;For my first attempt at mounting the shaft in the container, I just drilled some holes through the side of the container to hold the shaft.  I started out with small holes, and gradually grew them until they were big enough.  On one side, I did a final ream of the hole with the drill at an angle, so I could get the shaft in.&lt;br /&gt;&lt;br /&gt;This part worked ok-ish.  The shaft rotates well against the tupperware plastic.  The main issue I have here is with side-to-side movement.  I don't own any shaft collars, so I tried electrical tape and plastic.  It worked poorly, and I had too much side-to-side play.  I need a better solution for holding the shaft in place.  Maybe I'll just break down and buy something.  :-(&lt;br /&gt;&lt;br /&gt;Next, I needed to put the sensor in place.  I cut a rectangular hole in the side of the container for the ethernet jack with a utility knife.  To ensure a tight fit, I started with a small hole, and gradually enlarged it until the jack just snapped in place. &lt;br /&gt;&lt;br /&gt;This part worked well.  The ethernet jack holds tight.&lt;br /&gt;&lt;br /&gt;Finally, I tried to line up the sensor, by simply bending the wires and putting it in place.  In the end, this worked very poorly.  I was able to get it to operate, but not consistently.  I tried putting some plumber's putty in the container to help hold things in place, but it didn't help.&lt;br /&gt;&lt;br /&gt;In the end, the problem seems to be twofold: the shaft has to have less side-to-side play, and the sensor needs to be fixed in place relative to the wheel.  Otherwise, if the ethernet jack is stressed, or the container is moved, you lose precision.  The fact that the container can flex makes things worse.&lt;br /&gt;&lt;br /&gt;I think you could use this design as-is, but it would always be finicky and unreliable.  The whole point of this thing is to have a reliable position sensor so I can use cheaper motors and simpler controls.  So it's back to the drawing board.&lt;br /&gt;&lt;br /&gt;I think my next attempt might involve some rigid plastic from a cutting board, to help build more of a structure to attach things to.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-4638425322935987619?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/4638425322935987619/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=4638425322935987619' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/4638425322935987619'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/4638425322935987619'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2009/02/mouse-destruction-part-two.html' title='Mouse Destruction Part Two'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh4.ggpht.com/_KmWAahOhDDk/SYzeRdNnMCE/AAAAAAAAB7A/wbHSV3OHY8w/s72-c/MouseDestruction.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-3458452916659055143</id><published>2009-02-21T20:14:00.004-05:00</published><updated>2009-02-22T08:34:03.539-05:00</updated><title type='text'>Oscilloscope, Finds, and the mouse-thing finally works!</title><content type='html'>&lt;pant&gt;*pant pant*...&lt;br /&gt;&lt;br /&gt;So I got my mouse/rotary encoder project working (finally).  It's kind of a story, though.&lt;br /&gt;&lt;br /&gt;It didn't work at first at all.  Just dead.  I did some testing and thinking, and realized I'd hooked one of the wires up wrong.  So I fixed that.&lt;br /&gt;&lt;br /&gt;And it still didn't work.&lt;br /&gt;&lt;br /&gt;The real problem was the lack of test equipment.  I don't have an oscilloscope to use, and trying to diagnose with a multimeter doesn't really work  (Aside: I'm still using the same multimeter that my Grandma Brower gave to me when I was in gradeschool.  I love that multimeter).&lt;br /&gt;&lt;br /&gt;Anyway, I was getting nowhere fast with the project, so I set it aside for a while.&lt;br /&gt;&lt;br /&gt;I started working on some other things, mostly prompted by an awesome find on Kijiji.&lt;br /&gt;&lt;br /&gt;Some guy in Orleans was giving away a whole bunch of DB-25 connectors.  Like, scores of them.  He also said in the ad that he had "other components", useful for "robot building".It was like the Universe was creating the perfect siren call for me.  How could I resist?  Oh yes -- all for free, of course.  :-)&lt;br /&gt;&lt;br /&gt;We went out there, and brought back 4 or 5 big boxes of things: a huge bag of resistors, the aforementioned db-25 connectors, tons of cables, odd connectors, a bunch of very nice oscilloscope probes, dozens of fans, motors, relays, switches, pots, a true rotary position encoder, some old pneumatic components, tons of old parts from old HP laser printers... it goes on and on and on.&lt;br /&gt;&lt;br /&gt;I spent a bunch of time sorting through it all, putting it into nice boxes, sorting the resistors.&lt;br /&gt;&lt;br /&gt;I also spent a bunch of time extracting useful parts out of a bunch of my other Kijiji finds: I got a bunch of nice gears, motors, heat sinks, power transistors and MOSFETS, diodes, rectifiers, power resistors, thermisters, optocouplers, switches, pots, connectors, dozens of odd things.  I've got quite a stash, now.  I sorted all of this, too, so now things can be found.  :-)&lt;br /&gt;&lt;br /&gt;My sorting system is quite simple.  Small parts get put into tiny Zip Lock bags from the dollar store, by type and value.  Groups of small parts get their tiny bags rubber banded together.  Larger parts go into larger Zip Lock bags, and other bags (if necessary).&lt;br /&gt;&lt;br /&gt;These bags then go in one of several places: on my desk in some open tupperware containers (for really common things, like resistors), into a few rubbermaid containers that sit next to my desk (for slightly less common things, like motors), and into a few rubbermaid containers in the basement (for even less common things, like fans).  It's very nice.&lt;br /&gt;&lt;br /&gt;Then I started using these parts to make stuff...&lt;br /&gt;&lt;br /&gt;I made a pair of helping hands using an old massive transformer, some bronze wire, and a couple of alligator clips.&lt;br /&gt;&lt;br /&gt;I made a nice power connection center on my AT power supply using an old power supply connector and a terminal board from an old stereo.&lt;br /&gt;&lt;br /&gt;Finally, and getting back to our story, I made a "poor man's" oscilloscope, based on the idea of &lt;a href="http://accrochages.drone.ws/en/node/90"&gt;this web page&lt;/a&gt;.  I've got an Arduino with 6 analog inputs.  It makes a nice oscilloscope for dealing with low frequency signals at low voltages (like PS/2 mice!).  I based my code on a comment on that page, but pretty much rewrote it.  I'm posting it at the end of this post, in case you're interested.  I'm placing it in the public domain.&lt;br /&gt;&lt;br /&gt;At first, I tried to use the oscilloscope probes.  There were various issues with them that I don't understand yet.  Maybe a loose connection.  Anyway, I switched to using a piece of wire.&lt;br /&gt;&lt;br /&gt;Using this oscilloscope, I was able to diagnose my mouse.  I took another mouse I hadn't touched, and investigated what sorts of signals it set off.  Then I tried mine.  Not only did it seem really wonky (and dead!), it started heating up and made a bad smell as I worked on it.  Not good.  Nothing made any sense.  The voltages were all wrong.&lt;br /&gt;&lt;br /&gt;Then I put 2 and 2 together.  It was the damned cable!  One of the 2 ethernet cables I was using was a crossover cable.  :-O&lt;br /&gt;&lt;br /&gt;Once I found a proper cable, and hooked it all up, everything worked!  I hooked the resulting frankensteinian thingamabob up to my Arduino, spun some rotary encoder disks in front of the receivers, and watched as the serial cable told me about positive and negative motion.  A wonderful day.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Anyway, here's my version of the Poor Man's Arduino Oscilloscope.&lt;br /&gt;&lt;br /&gt;Features:&lt;br /&gt;&lt;/pant&gt;&lt;ul&gt;&lt;li&gt;capable of doing transformative readings (you have to write code to configure it - pin#2 is configured to connect to my thermistor with a 120K resistor voltage divider in the source code below)&lt;/li&gt;&lt;li&gt;shows real time display of all 6 Arduino plugs&lt;/li&gt;&lt;li&gt;simple and pretty clean.  I'll probably work on it some more, but it's good enough I think to give it out to folks...&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;pant&gt;&lt;br /&gt;Processing code:&lt;br /&gt;&lt;br /&gt;&lt;pre style="border: 1px solid black; margin: 0.5in;"&gt;&lt;br /&gt;&lt;br /&gt;/*&lt;br /&gt;* Oscilloscope Viewer&lt;br /&gt;*&lt;br /&gt;* Based on source code by an anonymous poster at&lt;br /&gt;* http://accrochages.drone.ws/en/node/90&lt;br /&gt;*&lt;br /&gt;*/&lt;br /&gt;import processing.serial.*;&lt;br /&gt;&lt;br /&gt;Serial port;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;final AnalogDataSource[] data = new AnalogDataSource[] {&lt;br /&gt;new VoltDataSource("analog 0", color(255,0,0)),&lt;br /&gt;new OhmDataSource ("thermistor", color(0,255,0), 120000),&lt;br /&gt;new VoltDataSource("analog 2", color(0,0,255)),&lt;br /&gt;new VoltDataSource("analog 3", color(255,255,0)),&lt;br /&gt;new VoltDataSource("analog 4", color(255,0,255)),&lt;br /&gt;new VoltDataSource("analog 5", color(0,255,255))&lt;br /&gt;};&lt;br /&gt;&lt;br /&gt;final int DataSourceCount = data.length;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;/**&lt;br /&gt;* make sure you have these fonts made for Processing. Use Tools...Create Font.&lt;br /&gt;*&lt;br /&gt;* "bigFont" is a 48 pt font of some sort. It's what we use to show&lt;br /&gt;* the "now" value.&lt;br /&gt;**/&lt;br /&gt;PFont bigFont;&lt;br /&gt;&lt;br /&gt;/**&lt;br /&gt;* "smallFont" is a 14 pt font of some sort. It's what we use to show&lt;br /&gt;* the min and max values.&lt;br /&gt;**/&lt;br /&gt;PFont smallFont;&lt;br /&gt;&lt;br /&gt;abstract static class AnalogDataSource {&lt;br /&gt;final int PrevValuesCount = 1000;&lt;br /&gt;&lt;br /&gt;private final String name;&lt;br /&gt;private int val;&lt;br /&gt;private final int[] prevValues = new int[PrevValuesCount];&lt;br /&gt;private final color displayColor;&lt;br /&gt;&lt;br /&gt;public AnalogDataSource(String _name, color _displayColor) {&lt;br /&gt;name = _name;&lt;br /&gt;displayColor = _displayColor;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;public String getName() { return name; }&lt;br /&gt;public color getColor() { return displayColor; }&lt;br /&gt;&lt;br /&gt;public void add(int v) {&lt;br /&gt;&lt;br /&gt;// shift the new values into the array, move everything else over&lt;br /&gt;// by one&lt;br /&gt;for (int i=PrevValuesCount-2; i&gt;=0; i--) {&lt;br /&gt;    prevValues[i+1] = prevValues[i];&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;prevValues[0] = v;&lt;br /&gt;val = v;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;public int getPrevRaw(int i) {&lt;br /&gt;return prevValues[i];&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;public abstract String getUnit();&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;public int getNowRaw() { return val; }&lt;br /&gt;public float getNowCooked() { return cook(getNowRaw()); }&lt;br /&gt;&lt;br /&gt;public int getMinRaw() { return min(prevValues); }&lt;br /&gt;public float getMinCooked() { return cook(getMinRaw()); }&lt;br /&gt;&lt;br /&gt;public int getMaxRaw() { return max(prevValues); }&lt;br /&gt;public float getMaxCooked() { return cook(getMaxRaw()); }&lt;br /&gt;&lt;br /&gt;abstract protected float cook(int v);&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;static float toVolts(int analogPinValue, float minValue, float maxValue) {&lt;br /&gt;return round(map(analogPinValue, 0, 1023, minValue, maxValue), 10.0);&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;public class VoltDataSource extends AnalogDataSource {&lt;br /&gt;private final float minValue;&lt;br /&gt;private final float maxValue;&lt;br /&gt;&lt;br /&gt;public VoltDataSource(String _name, color _displayColor) {&lt;br /&gt;    this(_name, _displayColor, 0, 5);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;public VoltDataSource(String _name, color _displayColor,&lt;br /&gt;    float _min, float _max) {&lt;br /&gt;    super(_name, _displayColor);&lt;br /&gt;minValue = _min;&lt;br /&gt;maxValue = _max;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;public String getUnit() { return "V"; }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;protected float cook(int v) { return toVolts(v, minValue, maxValue); }&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;public class OhmDataSource extends AnalogDataSource {&lt;br /&gt;private final float otherResistorOhms;&lt;br /&gt;&lt;br /&gt;public OhmDataSource(String _name, color _displayColor,&lt;br /&gt;    float _otherResistorOhms) {&lt;br /&gt;    super(_name, _displayColor);&lt;br /&gt;otherResistorOhms = _otherResistorOhms;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;public String getUnit() { return "ohm"; }&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;protected float cook(int v)&lt;br /&gt;{&lt;br /&gt;float vOut = toVolts(v, 0, 5);&lt;br /&gt;float vIn = 5.0;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;/*&lt;br /&gt;  Voltage divider theory says:&lt;br /&gt;&lt;br /&gt;  vOut = R2/(R1+R2)*vIn&lt;br /&gt;&lt;br /&gt;  Through simple transformations, we can get:&lt;br /&gt;&lt;br /&gt;  R1 = R2 * (vIn - vOut) / vOut&lt;br /&gt; */&lt;br /&gt;&lt;br /&gt;return otherResistorOhms * (vIn - vOut) / vOut;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void setup()&lt;br /&gt;{&lt;br /&gt;// Open the port that the board is connected to and use the same&lt;br /&gt;// speed anything faster than 38.4k seems faster than the ADC on&lt;br /&gt;// the Arduino can keep up with.  So, if you want it to be smooth,&lt;br /&gt;// keep it at or below 38400. 28800 doesn't work at all, I do not&lt;br /&gt;// know why. If you turn on smooth() you need to drop the rate to&lt;br /&gt;// 19.2k or lower.  You will probably have to adjust&lt;br /&gt;// Serial.list()[1] to get your serial port.&lt;br /&gt;port = new Serial(this, Serial.list()[1], 38400);&lt;br /&gt;&lt;br /&gt;// set the size of the window&lt;br /&gt;size(screen.width*8/10, screen.height*8/10);&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;// load the fonts&lt;br /&gt;bigFont = loadFont("CourierNewPSMT-48.vlw");&lt;br /&gt;smallFont = loadFont("CourierNewPSMT-14.vlw");&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void draw()&lt;br /&gt;{&lt;br /&gt;readArduinoData();&lt;br /&gt;&lt;br /&gt;background(0);&lt;br /&gt;&lt;br /&gt;for (int i=0; i&amp;lt;DataSourceCount; i++) {&lt;br /&gt;renderGraph(data[i],&lt;br /&gt;     0,&lt;br /&gt;     height/DataSourceCount*i,&lt;br /&gt;     width,&lt;br /&gt;     height/DataSourceCount);&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void renderGraph(AnalogDataSource data, int x, int y, int width, int height) {&lt;br /&gt;&lt;br /&gt;final int LabelWidth = 300;&lt;br /&gt;&lt;br /&gt;int bottomPx = y + height;&lt;br /&gt;&lt;br /&gt;int nowRaw = data.getNowRaw();&lt;br /&gt;float nowCooked = data.getNowCooked();&lt;br /&gt;&lt;br /&gt;// Draw out the now values with the big font.&lt;br /&gt;textFont(bigFont);&lt;br /&gt;text(pad(concise(nowCooked),7) + data.getUnit(),&lt;br /&gt; x+(width-LabelWidth+10), bottomPx - 10);&lt;br /&gt;&lt;br /&gt;// Draw out the min and max values with the small font.&lt;br /&gt;textFont(smallFont);&lt;br /&gt;drawdata(x+width-LabelWidth+60, bottomPx - 94,&lt;br /&gt;     data);&lt;br /&gt;&lt;br /&gt;// draw the lines in green.&lt;br /&gt;stroke(data.getColor());&lt;br /&gt;&lt;br /&gt;int prevValuesCount = width-LabelWidth;&lt;br /&gt;&lt;br /&gt;for (int i=0; i&amp;lt;prevValuesCount-1; i++) {&lt;br /&gt;&lt;br /&gt;// next line draws the line needed to get this value in the&lt;br /&gt;// array to the next value in the array.  the offsets (6+ in&lt;br /&gt;// the next line) were used to get the values where I wanted&lt;br /&gt;// them without having to actually do real spacial&lt;br /&gt;// math. There's a hack in getY that offsets a little, too.&lt;br /&gt;&lt;br /&gt;int currV = data.getPrevRaw(i)*height/1024;&lt;br /&gt;int nextV = data.getPrevRaw(i+1)*height/1024;&lt;br /&gt;&lt;br /&gt;line(x+i, bottomPx-currV-1, x+i+1, bottomPx-nextV-1);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;// draw the boxes in gray.&lt;br /&gt;stroke(70, 70 ,70);&lt;br /&gt;&lt;br /&gt;// these 5 lines divide the 6 inputs&lt;br /&gt;line(x, bottomPx, x+width-1, bottomPx);&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;static String concise(float v) {&lt;br /&gt;if (v == 0 || v == Float.NaN&lt;br /&gt;|| v == Float.NEGATIVE_INFINITY || v == Float.POSITIVE_INFINITY)&lt;br /&gt;return String.valueOf(v);&lt;br /&gt;else if (v&gt;1000000)&lt;br /&gt;return round(v/1000000.0, 10.0)+"M";&lt;br /&gt;else if (v&gt;1000)&lt;br /&gt;return round(v/1000.0, 10.0)+"K";&lt;br /&gt;else if (v&amp;lt;0.001)&lt;br /&gt;return round(v*1000.0, 10.0)+"m";&lt;br /&gt;else if (v&amp;lt;0.000001)&lt;br /&gt;return round(v*1000000.0, 10.0)+"u";&lt;br /&gt;else&lt;br /&gt;return String.valueOf(v);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;static float round(float v, float factor) {&lt;br /&gt;return round(v*factor)/factor;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;static String pad(String s, int size) {&lt;br /&gt;if (s.length() &gt;= size)&lt;br /&gt;return s;&lt;br /&gt;return "                                                     "&lt;br /&gt;.substring(0,size-s.length()) + s;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void drawdata(int x, int y, AnalogDataSource data)&lt;br /&gt;{&lt;br /&gt;int now = data.getNowRaw();&lt;br /&gt;float nowV = data.getNowCooked();&lt;br /&gt;&lt;br /&gt;int min = data.getMinRaw();&lt;br /&gt;float minV = data.getMinCooked();&lt;br /&gt;&lt;br /&gt;int max = data.getMaxRaw();&lt;br /&gt;float maxV = data.getMaxCooked();&lt;br /&gt;&lt;br /&gt;text(data.getName(), x, y);&lt;br /&gt;text("val: " + pad(concise(nowV), 7) + data.getUnit()+" " + now, x, y + 14);&lt;br /&gt;text("min: " + pad(concise(minV), 7) + data.getUnit()+" " + min, x, y + 28);&lt;br /&gt;text("max: " + pad(concise(maxV), 7) + data.getUnit()+" " + max, x, y + 42);&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;void readArduinoData() {&lt;br /&gt;String s = "";&lt;br /&gt;while (port.available() &gt;= 3)&lt;br /&gt;{&lt;br /&gt;    // read serial until we get to an "A".&lt;br /&gt;    s = port.readStringUntil(65);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;// sanity check. make sure the string we got from the Arduino has&lt;br /&gt;// all the values inside.&lt;br /&gt;if ((s.indexOf('B')&gt;=1) &amp;amp; (s.indexOf('C')&gt;=1) &amp;amp;&lt;br /&gt;(s.indexOf('D')&gt;=1) &amp;amp; (s.indexOf('E')&gt;=1) &amp;amp;&lt;br /&gt;(s.indexOf('F')&gt;=1))&lt;br /&gt;{&lt;br /&gt;    // s string doesn't contain an A at the&lt;br /&gt;    // beginning. it's at the end.&lt;br /&gt;    data[0].add(int(s.substring(0,s.indexOf('B'))));&lt;br /&gt;    data[1].add(int(s.substring(s.indexOf('B')+1,s.indexOf('C'))));&lt;br /&gt;    data[2].add(int(s.substring(s.indexOf('C')+1,s.indexOf('D'))));&lt;br /&gt;    data[3].add(int(s.substring(s.indexOf('D')+1,s.indexOf('E'))));&lt;br /&gt;    data[4].add(int(s.substring(s.indexOf('E')+1,s.indexOf('F'))));&lt;br /&gt;    data[5].add(int(s.substring(s.indexOf('F')+1,s.indexOf('A'))));&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;//           data[1].add(int(random(1024)));&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Arduino code:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;pre style="border: 1px solid black; margin: 0.5in;"&gt;&lt;br /&gt;#define ANALOGA_IN 0&lt;br /&gt;#define ANALOGB_IN 1&lt;br /&gt;#define ANALOGC_IN 2&lt;br /&gt;#define ANALOGD_IN 3&lt;br /&gt;#define ANALOGE_IN 4&lt;br /&gt;#define ANALOGF_IN 5&lt;br /&gt;&lt;br /&gt;void setup() {&lt;br /&gt;Serial.begin(38400);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;void loop() {&lt;br /&gt;int val[5];&lt;br /&gt;&lt;br /&gt;val[0] = analogRead(ANALOGA_IN);&lt;br /&gt;val[1] = analogRead(ANALOGB_IN);&lt;br /&gt;val[2] = analogRead(ANALOGC_IN);&lt;br /&gt;val[3] = analogRead(ANALOGD_IN);&lt;br /&gt;val[4] = analogRead(ANALOGE_IN);&lt;br /&gt;val[5] = analogRead(ANALOGF_IN);&lt;br /&gt;&lt;br /&gt;Serial.print( "A" );&lt;br /&gt;Serial.print( val[0] );&lt;br /&gt;Serial.print( "B" );&lt;br /&gt;Serial.print( val[1] );&lt;br /&gt;Serial.print( "C" );&lt;br /&gt;Serial.print( val[2] );&lt;br /&gt;Serial.print( "D" );&lt;br /&gt;Serial.print( val[3] );&lt;br /&gt;Serial.print( "E" );&lt;br /&gt;Serial.print( val[4] );&lt;br /&gt;Serial.print( "F" );&lt;br /&gt;Serial.print( val[5] );&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/pant&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-3458452916659055143?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/3458452916659055143/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=3458452916659055143' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/3458452916659055143'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/3458452916659055143'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2009/02/electronics-progress-big-successes.html' title='Oscilloscope, Finds, and the mouse-thing finally works!'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-8043975558395254288</id><published>2009-02-11T20:39:00.003-05:00</published><updated>2009-02-11T20:56:02.248-05:00</updated><title type='text'>uC Hobby Prize!</title><content type='html'>&lt;table style="width: 194px; float: right;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="background: transparent url(http://picasaweb.google.com/f/img/transparent_album_background.gif) no-repeat scroll left center; height: 194px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" align="center"&gt;&lt;a href="http://picasaweb.google.com/shawn.vincent/UcHobbyPrize?feat=embedwebsite"&gt;&lt;img src="http://lh3.ggpht.com/_KmWAahOhDDk/SZN9mrAmOgE/AAAAAAAAB50/2OHwsWIXWfY/s160-c/UcHobbyPrize.jpg" style="margin: 1px 0pt 0pt 4px;" height="160" width="160" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="text-align: center; font-family: arial,sans-serif; font-size: 11px;"&gt;&lt;a href="http://picasaweb.google.com/shawn.vincent/UcHobbyPrize?feat=embedwebsite" style="color: rgb(77, 77, 77); font-weight: bold; text-decoration: none;"&gt;ucHobby Prize&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;So I had a very long day at work today.  Long story.  Mostly I was looking forward to going home and seeing my wife and eating a delicious supper (as always)  :-).&lt;br /&gt;&lt;br /&gt;Lisa picks me up from work (we share a vehicle), and when I get in the van, there is an envelope for me!  My prize came!&lt;br /&gt;&lt;br /&gt;I never win anything, so maybe I'm making too big a deal out of this.  A few weeks ago, &lt;a href="http://www.uchobby.com/"&gt;uC Hobby&lt;/a&gt; had a "make a comment, maybe win a prize" contest.  I commented, and soon I was &lt;a href="http://www.uchobby.com/index.php/2009/02/01/breadboard-adaptor-pcb-comment-contest-winners/"&gt;selected as a winner&lt;/a&gt;!&lt;br /&gt;&lt;br /&gt;This is even cooler, because uC Hobby is one of my favorite sites.  I especially like the &lt;a href="http://www.uchobby.com/index.php/scrounging/"&gt;scrounging sections&lt;/a&gt; -- it suits my philosophy of building stuff - rip things out of dead and obsolete electronics, and build it into something new.&lt;br /&gt;&lt;br /&gt;Anyway, I just had to show off my prize.  It's a series of PCBs for breadboard adapters: some MIDI ports, a pair of terminals, and a prototype board.&lt;br /&gt;&lt;br /&gt;Completely unexpectedly, there was also a &lt;a href="http://moderndevice.com/RBBB_revB.shtml"&gt;Really Bare Bones Arduino&lt;/a&gt; PCB as well.  :-)  I love my Arduino, and a tiny Arduino that can be easily embedded in stuff?  Extra awesome.&lt;br /&gt;&lt;br /&gt;Now I just have to collect the components to populate some of these boards.  I'll poke through my stash...&lt;br /&gt;&lt;br /&gt;I love this community.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-8043975558395254288?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/8043975558395254288/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=8043975558395254288' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/8043975558395254288'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/8043975558395254288'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2009/02/uc-hobby-prize.html' title='uC Hobby Prize!'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh3.ggpht.com/_KmWAahOhDDk/SZN9mrAmOgE/AAAAAAAAB50/2OHwsWIXWfY/s72-c/UcHobbyPrize.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-5431732789151661127</id><published>2009-02-06T20:12:00.005-05:00</published><updated>2009-02-06T21:27:10.226-05:00</updated><title type='text'>Killing mice is fun</title><content type='html'>&lt;table style="float: right; width: 194px;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="background: transparent url(http://picasaweb.google.com/f/img/transparent_album_background.gif) no-repeat scroll left center; height: 194px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" align="center"&gt;&lt;a href="http://picasaweb.google.com/shawn.vincent/MouseDestruction?feat=embedwebsite"&gt;&lt;img src="http://lh4.ggpht.com/_KmWAahOhDDk/SYzeRdNnMCE/AAAAAAAAB5Q/Z3U1bB2xPK4/s160-c/MouseDestruction.jpg" style="margin: 1px 0pt 0pt 4px;" height="160" width="160" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="text-align: center; font-family: arial,sans-serif; font-size: 11px;"&gt;&lt;a href="http://picasaweb.google.com/shawn.vincent/MouseDestruction?feat=embedwebsite" style="color: rgb(77, 77, 77); font-weight: bold; text-decoration: none;"&gt;Mouse Destruction&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;As one of my first "useful" electronics project, I'm trying to turn an old PS/2 mouse into a modular rotary encoder sensor for my Arduino.&lt;br /&gt;&lt;br /&gt;I got a bunch of old computers and miscellaneous hardware off of a local classifieds site: for free!  I stripped all the useful stuff out and threw out all the useless bulky metal chassis.&lt;br /&gt;&lt;br /&gt;One of the things I got with the free stuff was a bunch of old mice: PS/2, serial, and some newer USB ones.  I opened them all up, and chose the most likely one: the emitter/encoder pairs were more isolated from the rest of the board, and the circuit was fairly simple.&lt;br /&gt;&lt;br /&gt;I tested it first.  I ripped apart an old PS/2 adapter I had for a jack, and plugged the mouse into my Arduino.  I used some &lt;a href="http://www.arduino.cc/playground/ComponentLib/Ps2mouse"&gt;PS/2 driver code &lt;/a&gt; I got off the net to make sure the mouse worked and that I could see the readings on the Arduino.  This worked fine.&lt;br /&gt;&lt;br /&gt;The rest is simple: score the PC board on each side a bunch of times with a utility knife, and use a pair of pliers to break it off (I actually shattered one of them doing this and had to reconstruct it with superglue).&lt;br /&gt;&lt;br /&gt;Next, I soldered wires carefully from the pins of the LEDs and phototransistors to ethernet jacks that I ripped out of old network cards (that also came in the great big boxes of junk I got for free!)&lt;br /&gt;&lt;br /&gt;Finally, I followed the traces using a magnifying glass and a continutity tester to likely points on the remaining PC board, and soldered wires from them to additional ethernet jacks.&lt;br /&gt;&lt;br /&gt;Lots of continutity testing with an ethernet cable and the various components plugged together, and I'm pretty confident I didn't screw anything up TOO bad.  :-)  If you look closely at the pictures, you'll probably see my lousy soldering job.  I haven't done any significant soldering since high school.  1992 -- 17 years ago!  Jesus.  I used to be better at it.  I think I got a bit rusty.  :-)&lt;br /&gt;&lt;br /&gt;So I haven't actually plugged it in and tested it yet, and probably won't tonight.  I've got to go into the basement and fetch another ethernet cable, and it's time for snacks and TV now.  ;-)  You have to plug in both sensors for either to work (since the PC board wasn't designed to have them removed...)&lt;br /&gt;&lt;br /&gt;Fun properties: the sensors are interchangable (the emitter/detector pairs were identical, and I wired them with the same ethernet pinout).&lt;br /&gt;&lt;br /&gt;No real reason why this would fail: maybe the quadrature signals will degrade over a long ethernet cable (and I haven't even got an oscilloscope to test this), or maybe I wired something wrong and I'll have to figure out what, or maybe my lousy soldering job will short something out.  But barring odd stuff like that, I'm really just spreading the mouse PC board out, so I see no real reason why it would fail.  :-)&lt;br /&gt;&lt;br /&gt;Assuming this all works out fine, the next steps are to hack apart the rest of the mouse case to get the rotary encoding wheels and their mounts, and then rig the whole thing up into a box somehow to protect it from dust and set up some kind of real axle.&lt;br /&gt;&lt;br /&gt;This whole thing will make a nice sensor in a project I'll do.  Not bad for a week of evenings, puttering around with a hobby I haven't touched in 17 years.  Wow.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-5431732789151661127?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/5431732789151661127/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=5431732789151661127' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/5431732789151661127'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/5431732789151661127'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2009/02/killing-mice-is-fun.html' title='Killing mice is fun'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh4.ggpht.com/_KmWAahOhDDk/SYzeRdNnMCE/AAAAAAAAB5Q/Z3U1bB2xPK4/s72-c/MouseDestruction.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-5160744883819244969</id><published>2009-01-03T15:38:00.003-05:00</published><updated>2009-01-03T15:47:13.788-05:00</updated><title type='text'>Photos!</title><content type='html'>&lt;table style="float: right; width: 194px;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="background: transparent url(http://picasaweb.google.com/f/img/transparent_album_background.gif) no-repeat scroll left center; height: 194px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" align="center"&gt;&lt;a href="http://picasaweb.google.com/shawn.vincent/LifeAroundFourHorseHaven?feat=embedwebsite"&gt;&lt;img src="http://lh4.ggpht.com/_KmWAahOhDDk/SV_HP2jS3aE/AAAAAAAABy0/H9MKZ6YTvQY/s160-c/LifeAroundFourHorseHaven.jpg" style="margin: 1px 0pt 0pt 4px;" height="160" width="160" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="text-align: center; font-family: arial,sans-serif; font-size: 11px;"&gt;&lt;a href="http://picasaweb.google.com/shawn.vincent/LifeAroundFourHorseHaven?feat=embedwebsite" style="color: rgb(77, 77, 77); font-weight: bold; text-decoration: none;"&gt;Life around Four Horse Haven&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;I (finally) got the pictures off of my camera.  Embarassingly, the earliest ones were from April of this year, so basically, I haven't offloaded my pictures for a year.  :-)&lt;br /&gt;&lt;br /&gt;But, they're done, and organized nicely into neat albums on &lt;a href="http://picasaweb.google.com/shawn.vincent"&gt;my Picasaweb page&lt;/a&gt;.  Some of the albums is listed here.  The others are there too, just poke around.  :-)&lt;br /&gt;&lt;br /&gt;I also updated my electronics album.&lt;br /&gt;&lt;br /&gt;... aside.  Ha!  Oliver is asleep beside me, and he's wagging his tail, and now he's nursing.  :-)  He's very cute.  It's all I can do to keep from laughing and wake him up...&lt;br /&gt;&lt;br /&gt;Oh yeah.  I've uploaded some pictures of the breadboarded circuits to my electronics album - always the intent, I just had to offload them.  :-)&lt;br /&gt;&lt;br /&gt;I got the PS/2 mouse talking to the Arduino yesterday.  I failed to get the USB mouse working with a USB-PS/2 adaptor (I think the mouse doesn't support it).  Not thrilled -- I either have to figure out how to chop apart the PS/2 mouse (a pain because it's double sided and much more complicated), or use the USB mouse somehow (unlikely) or get another mouse (with no guarantees).  &lt;sigh&gt;... big unknown problem #1.  I'll figure it out somehow.&lt;br /&gt;&lt;br /&gt;Really, a nice lazy day.  Did some laundry, fed some goats, hung some hooks yesterday, mostly hung out.&lt;br /&gt;&lt;br /&gt;I finished reading &lt;a href="http://en.wikipedia.org/wiki/Watchmen"&gt;Watchmen&lt;/a&gt;.  Very very good.  Worth reading.  I stayed up way too late finishing it up.&lt;br /&gt;&lt;br /&gt;And, the best thing of all, Lisa is coming back today!  Yay!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-5160744883819244969?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/5160744883819244969/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=5160744883819244969' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/5160744883819244969'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/5160744883819244969'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2009/01/photos.html' title='Photos!'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh4.ggpht.com/_KmWAahOhDDk/SV_HP2jS3aE/AAAAAAAABy0/H9MKZ6YTvQY/s72-c/LifeAroundFourHorseHaven.jpg' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-6224634748942121857</id><published>2009-01-01T16:30:00.005-05:00</published><updated>2009-01-01T19:11:30.678-05:00</updated><title type='text'>Motor control achieved!</title><content type='html'>&lt;a href="http://picasaweb.google.com/shawn.vincent/ElectronicsPlay#5286481961845985186"&gt;&lt;img style="float: right;" src="http://lh6.ggpht.com/_KmWAahOhDDk/SV1bVddXD6I/AAAAAAAABtI/KBAtSi5d8pc/s144/MotorController.png" /&gt;&lt;/a&gt;&lt;br /&gt;Updated: added schematic for circuit.&lt;br /&gt;&lt;br /&gt;I just achieved motor control from my Arduino, using an LMD18200 (LMD18200T).  I had some minor problems, but, as always, they were entirely due to my choice to use a PC power supply for power.  Apparently if you don't bypass the supply voltage properly with capacitors, the spikes generated cause the ATX power supply to stop generating nice voltage.&lt;br /&gt;&lt;br /&gt;In the end, though, I was able to control the speed and direction of my 12V cordless drill motor by typing characters at my Arduino through the USB cable.&lt;br /&gt;&lt;br /&gt;The LMD18200 got BLOODY hot.  I touched it.  It hurt my finger.  :-)  No serious burns, though.  Just enough to know that I'm for sure going to need a heat sink of some sort.  &lt;sigh&gt;...  I think it got hot enough to start its overheat protection stuff.  After a while, the motor started to cut in and out.  These motors are very high amperage.&lt;br /&gt;&lt;br /&gt;Very exciting, though.  Now if I can get my mouse ideas to work, there shouldn't be much standing between me and CNC goodness (just the 5 or 6 unknown issues).  Huzzah!&lt;/sigh&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-6224634748942121857?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/6224634748942121857/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=6224634748942121857' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6224634748942121857'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6224634748942121857'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2009/01/motor-control-achieved.html' title='Motor control achieved!'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh6.ggpht.com/_KmWAahOhDDk/SV1bVddXD6I/AAAAAAAABtI/KBAtSi5d8pc/s72-c/MotorController.png' height='72' width='72'/><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-6750766726093005033</id><published>2009-01-01T10:17:00.003-05:00</published><updated>2009-01-01T10:28:25.868-05:00</updated><title type='text'>My first "interesting" circuit</title><content type='html'>&lt;a href="http://picasaweb.google.com/shawn.vincent/ElectronicsPlay#5286329440617544946"&gt;&lt;img style="float: right;" src="http://lh5.ggpht.com/_KmWAahOhDDk/SVzQnjmyvPI/AAAAAAAABso/hVqChRMg0t4/s144/PhotoResistorPlay.png" /&gt;&lt;/a&gt;Here's the first "interesting" thing I've done with my Arduino - a real interactive circuit!&lt;br /&gt;&lt;br /&gt;I disassembled 4 strands of LED Xmas lights to chop out the LEDs, and got a whole bunch of superbright blue and white ones.  I took apart a dollar store light activated nightlight, and got the photoresistor inside.&lt;br /&gt;&lt;br /&gt;Then, based on some sample code on the Internet (heavily modified, and pasted below for your edifitainment), I got the two of them to interact.  :-)&lt;br /&gt;&lt;br /&gt;The interesting feature of the code below is that it's "self tuning" -- basically, it remembers the range of light readings from the photoresistor, and uses that to map to the entire range of LED brightnesses.  It has entertaining properties.  It flashes randomly until you start altering the light levels dramatically.  If you turn on the lights or do anything really dramatic to change the environment, you can kill the sensitivity, and need to reset the program.&lt;br /&gt;&lt;br /&gt;I played around with fading the light on and off (hence the "targetBrightness" and similar stuff below), but was unhappy with the results and just nullified it.&lt;br /&gt;&lt;br /&gt;A little hack job to get my feet wet.  I love this Arduino.  :-)&lt;br /&gt;&lt;br /&gt;&lt;pre style="overflow: scroll; border: 1px solid lightgray; margin: 1em; padding: 1em;"&gt;&lt;br /&gt;int photoResistPin = 0; //define which pin for the Photo resistor&lt;br /&gt;int ledPin=9; //define a pin for a LED&lt;br /&gt;&lt;br /&gt;void setup() {&lt;br /&gt;&lt;br /&gt;Serial.begin(9600);  //Begin serial communcation&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;int highestSeen = 0;&lt;br /&gt;int lowestSeen = 1024;&lt;br /&gt;&lt;br /&gt;int currentBrightness = 0;&lt;br /&gt;int targetBrightness = 0;&lt;br /&gt;&lt;br /&gt;void loop()&lt;br /&gt;{&lt;br /&gt;int currentReading = analogRead(photoResistPin);&lt;br /&gt;Serial.print("Saw: ");&lt;br /&gt;Serial.print(currentReading); //Write the value of the photoresistor to the serial monitor.&lt;br /&gt;&lt;br /&gt;// learn from history: dynamically map brightness range to range actually seen.&lt;br /&gt;if (currentReading &lt; lowestseen =" currentReading;"&gt; highestSeen)&lt;br /&gt;highestSeen = currentReading;&lt;br /&gt;&lt;br /&gt;Serial.print("  [");&lt;br /&gt;Serial.print(lowestSeen);&lt;br /&gt;Serial.print(" - ");&lt;br /&gt;Serial.print(highestSeen);&lt;br /&gt;Serial.print("]");&lt;br /&gt;&lt;br /&gt;// figure out what our new "target" brightness should be.&lt;br /&gt;targetBrightness = map(currentReading, lowestSeen, highestSeen, 255, 0);&lt;br /&gt;&lt;br /&gt;Serial.print("  Want: ");&lt;br /&gt;Serial.println(targetBrightness);&lt;br /&gt;&lt;br /&gt;int currentDifference = targetBrightness - currentBrightness;&lt;br /&gt;&lt;br /&gt;int stepCount;&lt;br /&gt;if (currentDifference &gt; 0) stepCount = 1;&lt;br /&gt;else stepCount = 1;&lt;br /&gt;&lt;br /&gt;currentBrightness = currentBrightness + currentDifference / stepCount;&lt;br /&gt;&lt;br /&gt;analogWrite(ledPin, currentBrightness);&lt;br /&gt;&lt;br /&gt;delay(20); //short delay for faster response to light.&lt;br /&gt;}&lt;br /&gt;&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-6750766726093005033?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/6750766726093005033/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=6750766726093005033' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6750766726093005033'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6750766726093005033'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2009/01/my-first-interesting-circuit.html' title='My first &quot;interesting&quot; circuit'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://lh5.ggpht.com/_KmWAahOhDDk/SVzQnjmyvPI/AAAAAAAABso/hVqChRMg0t4/s72-c/PhotoResistorPlay.png' height='72' width='72'/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-8779727534907144384</id><published>2008-12-31T16:38:00.002-05:00</published><updated>2008-12-31T16:53:03.865-05:00</updated><title type='text'>New Hosting Provider, New Hobbies, New Year</title><content type='html'>It's been a fun 2008.  Lots of good and bad stuff happened.  I'll focus on the good.&lt;br /&gt;&lt;br /&gt;We got three new animals: Grover (the new goat), Gordon (the new sheep), and Oliver (the new puppy).  They are all wonderful pets, and round out our household nicely.  :-)&lt;br /&gt;&lt;br /&gt;I've switched hosting providers for svincent.com to bring all of our domains under a single control.  As a result, there may be a few odd things here and there.  I'm hopefully fixing it all up right now.&lt;br /&gt;&lt;br /&gt;I've started playing around with electronics again.  Kindof like my robot obsession of years past, with a few differences: 1 - the world has changed a lot since then, there's way more available online, and it's easier to learn; 2 - I'm doing it "on the cheap" - scrounging materials and tools where ever possible, living under strict budgets; 3 - I've got a real concrete goal: I want to build a CNC milling machine capable of driving around and cuttin' stuff, for under $200 or so.  If I fail, that's ok.  It's the process that's fun.&lt;br /&gt;&lt;br /&gt;To that end, I got an order from &lt;a href="http://ca.digikey.com/"&gt;Digi-Key&lt;/a&gt; with various electronics bitz and a little solderless breadboard.  From &lt;a href="http://www.robotshop.ca/"&gt;RobotShop.ca&lt;/a&gt;, I got an &lt;a href="http://arduino.cc/en/Main/ArduinoBoardDuemilanove"&gt;Arduino Duemilanove&lt;/a&gt; which makes embedded electronics fun and easy.  It's very cool -- I've got a few little LED projects going with it already.&lt;br /&gt;&lt;br /&gt;I scrounged a few hundered ultrabright white and blue LEDs from some dead Xmas lights from this year, plus a photoresistor from a dollar store nightlight, and built my first little reactive circuit.  :-)  Fun stuff.&lt;br /&gt;&lt;br /&gt;I'm really enjoying playing around with this stuff.&lt;br /&gt;&lt;br /&gt;Also, Jessica got me the &lt;a href="http://en.wikipedia.org/wiki/Watchmen"&gt;Watchmen&lt;/a&gt; graphic novel for my birthday this year.  I'm kindof obsessively reading it (my first time reading it).  Awesome so far.  :-)&lt;br /&gt;&lt;br /&gt;Lots more stuff (and I mean TONS more stuff) happened in 2008, but that's my current trains of thought on it.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-8779727534907144384?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/8779727534907144384/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=8779727534907144384' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/8779727534907144384'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/8779727534907144384'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2008/12/new-hosting-provider-new-hobbies-new.html' title='New Hosting Provider, New Hobbies, New Year'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-11150517509645135</id><published>2008-11-23T08:50:00.001-05:00</published><updated>2008-11-23T08:53:05.277-05:00</updated><title type='text'>Genesis</title><content type='html'>The obsession began October 29th 2008.&lt;br /&gt;&lt;br /&gt;It began with &lt;a href="http://blog.makezine.com/archive/2008/10/cnc_pumpkin_carving.html"&gt;this blog post&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Then I remembered &lt;a href="http://www.becausewecan.org/"&gt;the ShopBot people&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Then I wondered if you could build one yourself.&lt;br /&gt;&lt;br /&gt;And so it began...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-11150517509645135?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/11150517509645135/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=11150517509645135' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/11150517509645135'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/11150517509645135'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2008/11/genesis.html' title='Genesis'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-4463959353763173896</id><published>2008-11-22T14:24:00.000-05:00</published><updated>2008-11-22T14:25:36.785-05:00</updated><title type='text'>Think - Make - Think</title><content type='html'>&lt;i&gt;All I want to be,&lt;br /&gt;is someone that makes new things.&lt;br /&gt;And thinks about them.&lt;br /&gt;&lt;br /&gt;&lt;/i&gt;        -&lt;a href="http://weblogs.media.mit.edu/SIMPLICITY/archives/000424.html"&gt;John Maeda&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-4463959353763173896?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/4463959353763173896/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=4463959353763173896' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/4463959353763173896'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/4463959353763173896'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2008/11/think-make-think.html' title='Think - Make - Think'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-6167922864458546617</id><published>2008-02-24T07:09:00.004-05:00</published><updated>2008-02-24T07:27:55.814-05:00</updated><title type='text'>Ancestors of Shawn Vincent</title><content type='html'>Ok, so wow.&lt;br /&gt;&lt;br /&gt;I contacted Erik Wulff about the Larson family tree that I mentioned in my last post.&lt;br /&gt;&lt;br /&gt;&lt;div style="margin-left: 1in;"&gt;&lt;br /&gt;&lt;a href="http://torslev.dk/Specielle/Mosen/Kristen%20K/d1.htm"&gt;http://torslev.dk/...&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Turns out he built the information in conjunction with Sheila M. Larson from Erwin, SD.  I assume this is Sheila Marie Smith who married Larry Allen Larson.  She would be my mother's cousin's son's wife.  So some sort of Nth cousin, M times removed from me?  I never understood this sort of stuff.&lt;br /&gt;&lt;br /&gt;He was kind enough to send me a query from his database that starts with me.&lt;br /&gt;&lt;br /&gt;Here it is.  Awesomeness.&lt;br /&gt;&lt;br /&gt; -Shawn.&lt;br /&gt;&lt;br /&gt;&lt;center&gt; &lt;h2&gt;Ancestors of Shawn Vincent&lt;/h2&gt; &lt;/center&gt; &lt;hr /&gt;&lt;br /&gt;&lt;center&gt; &lt;h2&gt;First Generation&lt;/h2&gt;&lt;hr /&gt; &lt;/center&gt; &lt;hr /&gt; &lt;a name="0.2_i11046"&gt;&lt;/a&gt;&lt;br /&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;b&gt;1.  Shawn Vincent [11046]&lt;/b&gt;, son of &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i11044"&gt;&lt;b&gt;Don Vincent&lt;/b&gt; [11044]&lt;/a&gt; and &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i11023"&gt;&lt;b&gt;Judy Brower&lt;/b&gt; [11023]&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;center&gt; &lt;h2&gt;Second Generation (Parents)&lt;/h2&gt; &lt;/center&gt; &lt;hr /&gt; &lt;a name="0.2_i11044"&gt;&lt;/a&gt;&lt;br /&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;b&gt;2.  Don Vincent [11044]&lt;/b&gt; .&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;Don married &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i11023"&gt;&lt;b&gt;Judy Brower&lt;/b&gt; [11023]&lt;/a&gt; [MRIN: 3366]. Marriage status: 0.  &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;&lt;b&gt;Children from this marriage were:&lt;/b&gt; &lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;          i.  &lt;b&gt;Christie Vincent&lt;/b&gt; [11045]&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;1        ii.  &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i11046"&gt;&lt;b&gt;Shawn Vincent&lt;/b&gt; [11046]&lt;/a&gt;&lt;br /&gt;&lt;/p&gt; &lt;a name="0.2_i11023"&gt;&lt;/a&gt;&lt;br /&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;b&gt;3.  Judy Brower [11023]&lt;/b&gt;, daughter of &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i11022"&gt;&lt;b&gt;Delmer Brower&lt;/b&gt; [11022]&lt;/a&gt; and &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10879"&gt;&lt;b&gt;Marion Francis Larson&lt;/b&gt; [10879]&lt;/a&gt;.&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;Judy married &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i11044"&gt;&lt;b&gt;Don Vincent&lt;/b&gt; [11044]&lt;/a&gt; [MRIN: 3366]. Marriage status: 0.&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;center&gt; &lt;h2&gt;Third Generation (Grandparents)&lt;/h2&gt; &lt;/center&gt; &lt;hr /&gt; &lt;a name="0.2_i11022"&gt;&lt;/a&gt;&lt;br /&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;b&gt;6.  Delmer Brower [11022]&lt;/b&gt; .&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 0.5in;"&gt;General Notes: .&lt;br /&gt;More About DELMER BROWER:&lt;br /&gt;Nickname: Del&lt;/p&gt; &lt;p style="margin-left: 1in;"&gt;Delmer married &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10879"&gt;&lt;b&gt;Marion Francis Larson&lt;/b&gt; [10879]&lt;/a&gt; [MRIN: 3356] in Nov 1950. Marriage status: 0.  &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;&lt;b&gt;Children from this marriage were:&lt;/b&gt; &lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;3         i.  &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i11023"&gt;&lt;b&gt;Judy Brower&lt;/b&gt; [11023]&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;         ii.  &lt;b&gt;Donna Brower&lt;/b&gt; [11024]&lt;br /&gt;&lt;/p&gt; &lt;a name="0.2_i10879"&gt;&lt;/a&gt;&lt;br /&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;b&gt;7.  Marion Francis Larson [10879]&lt;/b&gt;, daughter of &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10826"&gt;&lt;b&gt;Francis Larson&lt;/b&gt; [10826]&lt;/a&gt; and &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10876"&gt;&lt;b&gt;Mildred M. Coulson&lt;/b&gt; [10876]&lt;/a&gt;, was born on 18 Mar 1926.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 0.5in;"&gt;General Notes: .&lt;br /&gt;More About MARION FRANCIS LARSON:&lt;br /&gt;Graduation: 1944, High School&lt;br /&gt;Residence: 1972, Huron&lt;/p&gt; &lt;p style="margin-left: 1in;"&gt;Marion married &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i11022"&gt;&lt;b&gt;Delmer Brower&lt;/b&gt; [11022]&lt;/a&gt; [MRIN: 3356] in Nov 1950. Marriage status: 0.&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;center&gt; &lt;h2&gt;Fourth Generation (Great-Grandparents)&lt;/h2&gt; &lt;/center&gt; &lt;hr /&gt; &lt;a name="0.2_i10826"&gt;&lt;/a&gt;&lt;br /&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;b&gt;14.  Francis Larson [10826]&lt;/b&gt;, son of &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10827"&gt;&lt;b&gt;Jeppe Larsen&lt;/b&gt; [10827]&lt;/a&gt; and &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10832"&gt;&lt;b&gt;Hanne Bæk&lt;/b&gt; [10832]&lt;/a&gt;, was born on 10 Aug 1889 in Erwin, South Dakota, USA &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died on 4 Jul 1972 in Huron, SD &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; at age 82.&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 0.5in;"&gt;General Notes: .&lt;br /&gt;Notes for FRANCIS LARSON:&lt;br /&gt;Per "Erwin: The First 100 Years" - 1987, in a story by Pearl Larson Francis Larson (born Aug. 10, 1889, died July 4, 1972) continued to farm (second generation). He married Mildred Coulson Nov. 30, 1911. Mildred was born Aug 7, 1890 and died May 5, 1965. they had four children: Leslie Edward, Clifford L&lt;br /&gt;eroy, Ruth Mildred and Marion Frances. In 1928 they moved to a farm two miles south of Lake Preston, SD. In 1943 Clifford moved onto this farm and still lives there (1987).&lt;br /&gt;Francis and Mildred had farmed the homestead north of Erwin from 1909 to 1928. In 1943 they moved into Lake Preston, buying Phil Murphy's house. They lived in Lake Preston their remaining years.&lt;br /&gt;&lt;br /&gt;From Pearl Larson's scrapbook:&lt;br /&gt;50th Wedding Anniversary Napkin (11/30/1961) - Anniversary celebration was Dec 3rd, 1961 at the Congregational Church, Rev. Horace Smith led the prayer&lt;br /&gt;picture of Francis with Dick Linstrom tat Lutheran Academy at Canton, SD,&lt;br /&gt;Wedding Picture 1911&lt;br /&gt;Picture of Francis Larson &amp;amp; cousin, Alfred Beck in big fur coats&lt;br /&gt;1911 Wedding announcement&lt;br /&gt;1919 picture of many small children including Clifford &amp;amp; Leslie&lt;br /&gt;Picture of first car - a Ford bought from Erickson &amp;amp; collins of Bryant, SD 1917&lt;br /&gt;Francis &amp;amp; Mildred moved their family to a farm south of Lake Preston (per 1928 picture)&lt;br /&gt;Francis &amp;amp; Mildred 50th Anniversary picture and news - per news Fred Coulson was the couple's best man on their wedding day and Mrs. Anna (Larson) Long had been their bridesmaid Francis obituary - He farmed in the Lake Preston and Erwin areas until 1943 when he retired and moved to Lake Preston. Service was at the United Church of Christ, Friday, July 7, 1972, Rev. Beryl Melcher. Mr. &amp;amp; Mrs. Welsey Jones sang a&lt;br /&gt;duet.    Pallbearers were Ivan Warner, George Jensen, Edward W. Coulson, Otto Hasche, Clinton Tibbets, Vernon Marquardt.&lt;br /&gt;&lt;br /&gt;The May 11, 1910 census shows Francis as head of household, with sister Anna and cousin Christ as the other members of household.&lt;br /&gt;&lt;br /&gt;See Marion's reading from Francis and "Millie's" golden wedding anniversary for a charming look at the couple's courtship and life.&lt;br /&gt;&lt;br /&gt;More About FRANCIS LARSON:&lt;br /&gt;Burial: July 07, 1972, Lake Preston City Cemetary, Lake Preston SD&lt;br /&gt;Education: Lutheran Academy, Canton, SD&lt;br /&gt;Social Security Number: 504-24-1407&lt;br /&gt;&lt;/p&gt; &lt;p style="margin-left: 1in;"&gt;Francis married &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10876"&gt;&lt;b&gt;Mildred M. Coulson&lt;/b&gt; [10876]&lt;/a&gt; [MRIN: 3290] on 30 Nov 1911 in Erwin, South Dakota, USA.&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt; Marriage status: 0.  &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;&lt;b&gt;Children from this marriage were:&lt;/b&gt; &lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;          i.  &lt;b&gt;Leslie Edward Larson&lt;/b&gt; [10780] was born on 12 Sep 1912 in Erwin, South Dakota, USA,&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; died in 1981 &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; at age 69, and was buried on 24 Sep 1981 in Lake Preston, South Dakota, USA.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;         ii.  &lt;b&gt;Clifford Leroy Larson&lt;/b&gt; [10877] was born on 12 Oct 1914 &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died in Mar 2000 &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; at age 85.&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;        iii.  &lt;b&gt;Ruth Mildred Larson&lt;/b&gt; [10878] was born on 7 Nov 1916.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;7        iv.  &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10879"&gt;&lt;b&gt;Marion Francis Larson&lt;/b&gt; [10879]&lt;/a&gt;&lt;br /&gt;&lt;/p&gt; &lt;a name="0.2_i10876"&gt;&lt;/a&gt;&lt;br /&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;b&gt;15.  Mildred M. Coulson [10876]&lt;/b&gt;, daughter of &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10885"&gt;&lt;b&gt;Edward Coulson&lt;/b&gt; [10885]&lt;/a&gt; and &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10886"&gt;&lt;b&gt;Mary Golseth&lt;/b&gt; [10886]&lt;/a&gt;, was born on 7 Aug 1890 in Erwin, South Dakota, USA &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died on 15 May 1965 in Lake Preston, South Dakota, USA &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; at age 74.&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 0.5in;"&gt;General Notes: .. MILDRED M.3 COULSON (EDWARD2, JOSEPH HENERY1) was born August 07, 1890 in Coulson farm, Kingsbury County, Erwin, South Dakota, and died May 15, 1965 in Lake Preston Hospital, Kingsbury County, Lake Preston, SD. She married FRANCIS LARSO&lt;br /&gt;N November 30, 1911 in Mildred's home in Erwin, SD, son of JEPPE LARSON and HANNE BAEK. He was born August 10, 1889 in Erwin, SD, and died July 04, 1972 in St. Johns Regional Medical Center, Beadle County, Huron, SD.&lt;br /&gt;&lt;br /&gt;Notes for MILDRED M. COULSON:&lt;br /&gt;From Pearl Larson's scrapbook -&lt;br /&gt;Funeral service at United Church of Christ Tuesday, May 18, 1965, Rev. Joseph Runner. Pallbearers Lyle Waby, Alfred Coulson, Kenneth Golseth, Roy Brown, Alfred Barr, Vernon Marquardt&lt;br /&gt;&lt;br /&gt;Mildred died when a blood clot hit the heart. She was in Lake Preston Hospital for a blood check-up, as her blood was low and had black out.&lt;br /&gt;Mildred walked 1 1/4 miles to the Albert Jensen Country School where she took her first eight years of schooling. Because she was needed at home, Mildred stayed and helped her parents. Then on Nov. 30, 1911, Thanksgiving Day, married a ne&lt;br /&gt;ighbor boy, Francis Larson, going to live on his farm three quarters mile south, the Jeppe Larson homestead.&lt;br /&gt;They lived here through a few drought years. As 1928 was no big year. So they moved to a farm south of Lake Preston. Then in 1943 they turned that farm over to son, Clifford Larson and moved into Lake Preston where they bought the home o&lt;br /&gt;wned by Phil Murphy, near the railroad trakcs.&lt;br /&gt;&lt;br /&gt;Mildred spent many happy years busy in her garden and flowers. Helping her church and Aid. Then suddenly on May 15, 1965 she passed away in the Lake Preston Hospital when a blood clot hit the heart.&lt;br /&gt;Mildred and Francis celebrated their Golden Wedding December 3, 196a at the United Church of Christ in Lake Preston, SD. Best Man, Fred Coulson was present, but Bridesmaid, Anna Long was unable to. She was in a retirement center in Watert&lt;br /&gt;own and not well.&lt;br /&gt;&lt;br /&gt;More About MILDRED M. COULSON:&lt;br /&gt;Burial: May 18, 1965, Lake Preston City Cemetary, Lake Preston SD&lt;br /&gt;Nickname: Millie&lt;br /&gt;Residence 1: 1943, Lake Preston, SD (Phil Murphy house)&lt;br /&gt;Residence 2: Bet. 1890 - 1900, Lived on Coulson farm (N of Larry &amp;amp; Sheila's called "Fred's")&lt;br /&gt;Residence 3: 1900, Moved to town of Erwin&lt;br /&gt;Residence 4: 1911, Jeppe Larson farm&lt;br /&gt;Residence 5: 1928, farm S of Lake Preston (1976 Cliff lived there)&lt;/p&gt; &lt;p style="margin-left: 1in;"&gt;Mildred married &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10826"&gt;&lt;b&gt;Francis Larson&lt;/b&gt; [10826]&lt;/a&gt; [MRIN: 3290] on 30 Nov 1911 in Erwin, South Dakota, USA.&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt; Marriage status: 0.&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;center&gt; &lt;h2&gt;Fifth Generation (Great Great-Grandparents)&lt;/h2&gt; &lt;/center&gt; &lt;hr /&gt; &lt;a name="0.2_i10827"&gt;&lt;/a&gt;&lt;br /&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;b&gt;28.  Jeppe Larsen [10827]&lt;/b&gt;, son of &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10828"&gt;&lt;b&gt;Lars Jeppesen&lt;/b&gt; [10828]&lt;/a&gt; and &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10829"&gt;&lt;b&gt;Ane Margrethe Sørensdatter&lt;/b&gt; [10829]&lt;/a&gt;, was born on 7 May 1854 in Tversted Sogn (1),&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; was christened on 5 Jun 1854 in Tversted Kirke,&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died in Mar 1904 &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; at age 49.&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 0.5in;"&gt;General Notes: .&lt;br /&gt;Kirkebogen for Tversted sogn&lt;br /&gt;Fødte drenge 1854, no. 4&lt;br /&gt;Jeppe Larsen, født den 7. maj 1854, døbt i kirken den 5. juni 1854&lt;br /&gt;Forældre.: Husmand Lars Jeppesen og hustru Ane Margrethe Sørensdatter paa Rimmen&lt;br /&gt;.&lt;br /&gt;Census 1855, Tversted sogn&lt;br /&gt;Lars Jeppesen, 48, born Tversted parish&lt;br /&gt;Ane Margrethe Sørensdatter, 41, wife, born Tversted Parish&lt;br /&gt;Christian Larsen, 6, child, born Tversted Parish&lt;br /&gt;Søren Christian Larsen, 4, child. born Tversted Parish&lt;br /&gt;Jeppe Larsen, 1, child, born Tversted Parish&lt;br /&gt;Copy of Jeppe's homestead file from the National Archives And Records Service, Washington DC 20409 mailed to Dale Larson 1/24/1985, the invoice says 26 pages x $0.35 per page - $9.10. Copy Certification says Copy from the National Archives&lt;br /&gt;, Record Group 49, Additional Info, Watertown, Homestead Final Certification File 4270&lt;br /&gt;&lt;br /&gt;April 6, 1881 Homestead application #15881 at the "Watertown, Dak" Land office made application for 144.57 acres E 1/2 of SW 1/4 lots 3 &amp;amp; 4, Section 7, Township 112N, Range 54W, final certificate No. 4270.&lt;br /&gt;June 4th 1881 made application to Mitchell land office via Kingsbury county, swearing that he wasa single person over the age of 21. The words "Citizen of the United States" are crossed out leaving "have declared my intention to become a citizen of the United States" and also that he resides on the land and that it is for the purpose of settlement and cultivation. June 16, 1881 paid $13.61 to the Mitchell Land office , via Kingsbury County, for application #15881 for 144.57&lt;br /&gt;acres SW1/4 of 7-112-54, signed "Jappe Larsen".&lt;br /&gt;&lt;br /&gt;June 16, 1881 paid $13.61 registration fee to Mitchell Land office for application #15881.&lt;br /&gt;On February 16, 1888 Jappe filed an Intention to Make Final proof at the Land Office at Watertown, D. T. (Dakota Territory), agreeing to appear April 4, 1888 before the Judge in Probate Court in Kingsbury County with witnesses Anton Peterso&lt;br /&gt;n, Martin Nelson, Christ Peterson and Ole O. Bjordal all of Erwin, SD.&lt;br /&gt;&lt;br /&gt;March 29th, 1888 Chas. J. Lord publisher of the "Bryant Post" signed an Affidavit of Publication stating that Jeppe Larson's notice of intention had run in his paper for six consecutive weeks.&lt;br /&gt;On April 4, 1888 Jeppe and his witnesses appeared before the Kingsbury County Probate judge and all testified to Jeppe's occupation and improvement of the land. Jeppe's and witness testimony all concurred, that Jeppe had stayed with his brother Soren for two years as he was too poor to make the improvements, but he had worked on the land during that time and had broken 3 acres the first year for wheat, oats and barley, then 11 acres the 2nd year and increasing until 95 acres were broken prior to the 1888 hearing. He had built the house and buildings and lived on the homestead continuously since his marriage "November 16, 1883". To the question, "When and by whom was your house built? Is it habitable at allseasons of the year?", Jeppe answered, "The one I have now, June 10th, 1883. It is." He declared his farm implements owned as "1/2 interest in (sp?) Bariston Wagon Farming Mill section breaking plow cultivator, cross plow dray, 2 horses,16 head of cattle". To the question "Articles of furniture over every kind you keep in your residence and how long you have had them there", Jeppe answered, "2 stoves, 1 bed and bedding, 4 chairs, table, dishes, cupboard (&amp;amp; cans?). Signed&lt;br /&gt;"Jeppe Larson". "The Judge signed Jeppe's Final Affidavit, stating that he was a US Citizen and had lived on the settlement continuously since January of 1882. File includes Jeppe's Certificate of Naturalization.&lt;br /&gt;&lt;br /&gt;On April 7, 1888 the Watertown Land Officer certified that a copy of Jeppe's Homestead notice was posted in their office for 30 days beginning February 16, 1888.&lt;br /&gt;On December 19, 1888 the application was "examined' by M. S. Wade. The examination shows that the deadline for date of settlement was not met and includes an explanation, "was poor and did not have means to make the necessary improvementsto get on land within 6 mos". Eventual improvements prior to examination were "House 8 x 24, Barn 24 x 36, Granary 12 x 24, Well, 4 acres in trees and 90 acres broken, total value of improvements $975. Kind of crops: Wheat, Oats, Barley.&lt;br /&gt;Residence claimed: 6 yrs, 9 mos &amp;amp; 19 days. Military service claimed: none. Number of absenses: none since Nov 2, 1883, before that on land at intervals. Claimant's family: Wife &amp;amp; 2 children.&lt;br /&gt;&lt;br /&gt;Watertown Land Office receipt, says recommend for Patent and refered to Division "O" January 14, 1889.&lt;br /&gt;&lt;br /&gt;The homestead was Patented August 16, 1889.&lt;br /&gt;&lt;br /&gt;******************************&lt;wbr&gt;***&lt;br /&gt;Wedding date per Christ Peterson's testimony on behalf of Jeppe's Homestead application.&lt;br /&gt;&lt;br /&gt;******************************&lt;wbr&gt;**********&lt;br /&gt;(The first step of Naturalization being completed in Freeborn County, MN - Jeppe's final Citizenship was granted in Kingsbury County)&lt;br /&gt;Certificate of Naturalization, Territory of Dakota, Kingbury County. In District Court: And now to-wit: At a time of said Court now being held at DeSmet in and for the County of Kingsbury in said Territory upon the forgoing Oath and Affidavits and Further proof having been made by the production of a certificate that the said Jeppe Larsen did before the Clerk of District Court Freeborn County Minnesota the same being a Court of Record having common law jurisdiction, make the requisite declaration of his intention to become a Citizen of the United States and to renounce all other allegiance, as required by the Laws of the United States. It is Ordered by the court. That the said Jeppe Larsen be, and is hereby&lt;br /&gt;Admitted to be a Citize of the United States. By The Court: James Spencer, Judge. C. L. Dawley, Clerk. W. E. Whiting, Deputy. Dated this 1st day of April, 1887.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin-left: 1in;"&gt;Jeppe married &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10832"&gt;&lt;b&gt;Hanne Bæk&lt;/b&gt; [10832]&lt;/a&gt; [MRIN: 3291] on 16 Nov 1883.&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt; Marriage status: 0.  &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;&lt;b&gt;Children from this marriage were:&lt;/b&gt; &lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;          i.  &lt;b&gt;Anna Margaret Larson&lt;/b&gt; [10872] was born on 29 Oct 1887 in Erwin, South Dakota, USA,&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; was christened on 21 Nov 1887, and died on 19 Apr 1962 in South Dakota &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; at age 74.&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;14       ii.  &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10826"&gt;&lt;b&gt;Francis Larson&lt;/b&gt; [10826]&lt;/a&gt;&lt;br /&gt;&lt;/p&gt; &lt;a name="0.2_i10832"&gt;&lt;/a&gt;&lt;br /&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;b&gt;29.  Hanne Bæk [10832]&lt;/b&gt;, daughter of &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10863"&gt;&lt;b&gt;Frands Christiansen Bæk&lt;/b&gt; [10863]&lt;/a&gt; and &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10864"&gt;&lt;b&gt;Ane Elsine Christensdatter&lt;/b&gt; [10864]&lt;/a&gt;, was born on 22 Feb 1857 in Tversted Sogn (1),&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; was christened on 9 Apr 1857 in Tversted Kirke,&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died on 1 Jul 1897 in Erwin, South Dakota, USA &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; at age 40.&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 0.5in;"&gt;General Notes: .&lt;br /&gt;Kirkebogen for Tversted sogn&lt;br /&gt;Født pige.: Hanne Bæk, født den 22. februar 1857, døbt i kirken den 9. april 1857&lt;br /&gt;Forældre.: Frands Christiansen Bæk og hustru Ane Christensen 21 aar af Terpet&lt;br /&gt;&lt;br /&gt;Kirkebogen for Tversted sogn&lt;br /&gt;Afgangsliste 1874, no. 29&lt;br /&gt;Hanne Bech, 18 aar, Tjenestepige, afgang til Hjørring&lt;br /&gt;&lt;br /&gt;Per East Bethany Cemetery History - 2002&lt;br /&gt;(P/Marker: Hanna/Hanne Larson,) Hanna was a Beck (aunt to Alfred Beck) and married Jeppe Larson. She was born on February 22, 1858 and died on July 1, 1897.&lt;br /&gt;******************************&lt;wbr&gt;*******&lt;br /&gt;Per Pearl Larson's scrapbook - Hanna's name was spelled "Bek" in Denmark, Hanna died of blood poisoning.&lt;/p&gt; &lt;p style="margin-left: 1in;"&gt;Hanne married. Marriage status: 0.  &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;&lt;b&gt;Her child was:&lt;/b&gt; &lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;          i.  &lt;b&gt;Johan Bech&lt;/b&gt; [10977] was born on 17 Apr 1881 in Terpet I Tversted Sogn,&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; was christened on 9 Oct 1881 in Tversted Kirke,&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died in 1947 &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; at age 66.&lt;br /&gt;&lt;/p&gt; &lt;p style="margin-left: 1in;"&gt;Hanne married &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10827"&gt;&lt;b&gt;Jeppe Larsen&lt;/b&gt; [10827]&lt;/a&gt; [MRIN: 3291] on 16 Nov 1883.&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt; Marriage status: 0.  &lt;a name="0.2_i10885"&gt;&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;b&gt;30.  Edward Coulson [10885]&lt;/b&gt;, son of &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i11085"&gt;&lt;b&gt;Joseph Henery Coulson&lt;/b&gt; [11085]&lt;/a&gt; and &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i11086"&gt;&lt;b&gt;Mildred J. Armstrong&lt;/b&gt; [11086]&lt;/a&gt;, was born on 21 Nov 1863 in Liverpool, England &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died on 13 Oct 1942 in California (1) &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; at age 78.&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 0.5in;"&gt;General Notes: .&lt;br /&gt;Notes for JOSEPH HENERY COULSON:&lt;br /&gt;From "Erwin: The First 100 Years" in a story by Pearl Larson Joseph Coulson and Mildred Armstrong Coulson came from Liverpool, England to the United States in 1881. They had 11 children: William (never married), John, George (never married), Henry (Frank and Bert Coulson's dad), Thoms (George and A&lt;br /&gt;lys Coulson's dad), Charles (never married), Robert (Alfred Coulson's father), Edward (Fred, Mildred, Hattie and Edith's father), Rebecca (Mrs. Fred Waby) (Mrs. Myrtie Marquardt's mother), Mary (Mrs. Tim Waby), and Ann (Mrs. Billy Brown).&lt;br /&gt;Joseph passed away in 1882, near St. Charles, Minnesota. Mildred came to South Dakota with her son in 1882, and homesteaded northeast of Erwin. They recorded the first claim in 1883.&lt;br /&gt;&lt;br /&gt;PL Coulson notebook:  "Dorothy Chase tried to find Ed's dad's grave, but church burned and so did the records, no head stone."&lt;br /&gt;&lt;br /&gt;More About JOSEPH HENERY COULSON:&lt;br /&gt;Burial: St. Charles, MN&lt;br /&gt;Immigration: 1881, From Liverpool England to St Charles, MN&lt;br /&gt;&lt;br /&gt;Notes for EDWARD COULSON:&lt;br /&gt;From "Erwin: The First 100 Years" by Pearl Larson&lt;br /&gt;Edward Coulson was born in Liverpool, England on November 21, 1864 to Joseph and Mildred Armstrong Coulson. He came with his parents to St. Charles, MN in 1881 (PL C1 - spent 1 year in MN near St. Charles where his parents were buried).&lt;br /&gt;After his father's death he came to South Dakota with his mother to land northeast of Erwin. In 1883 he was only 19 years old, too young to homestead land, so he waited until 1888, when he took over the land his mother homesteaded. On May 22, 1888 Edward married Mary Golseth, sister of Knute and Martin Golseth of Erwin. (See Golseth). They had four children; Fred Coulson of Brookings, Mildred (Mrs. Francis Larson) of Lake Preston, Hattie Coulson, now living in a Bro&lt;br /&gt;okings Rest Home, and Edith (Mrs. Dale Dunbar) of Laguna Beach, California. In 1900, Edward and his family moved into Erwin. (Here Edith was born. Bought the first house on the south side, east of the railroad tracks. Continued a little farming. Land west of Erwin sold to Pete Olson). Later he took a job carrying mail (for a few years). Then in 1919, he decided to move to Santa Cruz, California (Hattie and Edith moved with them). Edward and Mary lived there until their deaths, Edward on October 13, 1942. Mildred and Fred remained in South Da&lt;br /&gt;kota.&lt;br /&gt;&lt;br /&gt;Pearl Larson's notes:Mildred Armstrong Coulson purchased some land NE of Erwin, SD. Lived in sod shanty until their house was built. Edward being 19 years old could not buy the land as law stated he had to be 21. It was recorded and signed by Grover Clevelan&lt;br /&gt;d in 1883 and in 1888, five years later, when Edward was 22 years old, he bought the farm from his mother.&lt;br /&gt;&lt;br /&gt;Ed Coulson sold farm in 1916 to Pete Olson. this is now lloyd Carlsons farm. Ed worked in a hardware store in Erwin. Then carried mail part 1918 &amp;amp; 1919. Moved to Santa Cruz in 1919.&lt;br /&gt;******************************&lt;wbr&gt;***&lt;br /&gt;See Hattie CoulsonBible Copy&lt;br /&gt;Birthdate information from Hattie Coulson bible has Edward's birthdate as Nov 21, 1863, but obituary has 1864.Bible shows Edward as the last born (after Rebekah) and "Edward Coulson born Novem" is clearly original, but the "21" and probably the "1863" though on Hatties copy, appear not to be the same handwriting as the rest, so Rebekah &amp;amp; Edward's b&lt;br /&gt;-days will take some more research.&lt;br /&gt;*****************************&lt;br /&gt;See 1900 Census, Hartland Twp, Kingsbury County, SD shows Edward Coulson 36, born Nov, 1863.&lt;br /&gt;*****************************&lt;br /&gt;Celebrated their Golden Wedding Anniversary in 1938.&lt;br /&gt;****************************&lt;wbr&gt;*Regarding birthplace, a letter from Hattie Coulson to Pearl Larson July 7, 1979 says, "Frances has birthplace South Carlton, never heard that before. Pa always said Lincolnshire, but I belive that ending "shire" means country or township a&lt;br /&gt;s we have here."  Also, "I remember pa saying when they came to New York, some went to Canada, who were they?"&lt;br /&gt;*****************************&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;More About EDWARD COULSON:&lt;br /&gt;Burial: I. O. O. F. Cemetery, California&lt;br /&gt;Education: England&lt;br /&gt;Immigration 1: 1881, From England to St. Charles, MN&lt;br /&gt;Immigration 2: 1872, Per 1900 Census&lt;br /&gt;Occupation: 1900, Mail Carrier&lt;br /&gt;Residence 1: 1883, Hartland Township, SD&lt;br /&gt;Residence 2: 1882, South Dakota&lt;br /&gt;Residence 3: 1900, Erwin, SD - first house on S side E of railroad tracks (1976 Carl Stevens' house)&lt;br /&gt;Residence 4: 1919, Santa Cruz, CA&lt;/p&gt; &lt;p style="margin-left: 1in;"&gt;Edward married &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10886"&gt;&lt;b&gt;Mary Golseth&lt;/b&gt; [10886]&lt;/a&gt; [MRIN: 3307] on 22 May 1888 in Desmet, South Dakota.&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt; Marriage status: 0.  &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;&lt;b&gt;Children from this marriage were:&lt;/b&gt; &lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;15        i.  &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10876"&gt;&lt;b&gt;Mildred M. Coulson&lt;/b&gt; [10876]&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;         ii.  &lt;b&gt;Fred E. Coulson&lt;/b&gt; [11153] was born on 4 Sep 1893 in Erwin, South Dakota, USA &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died on 21 Jul 1983 &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; at age 89.&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;        iii.  &lt;b&gt;Hattie A. Coulson&lt;/b&gt; [11154] was born on 23 May 1897 in Erwin, South Dakota, USA &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died on 31 Oct 1993 in South Dakota &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; at age 96.&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;         iv.  &lt;b&gt;Unknown Coulson&lt;/b&gt; [11155] was born before 1900 in Erwin, South Dakota, USA &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died before 1900.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;          v.  &lt;b&gt;Edith Coulson&lt;/b&gt; [11156] was born on 7 Jan 1904 in Erwin, South Dakota, USA &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died after 1993.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt; &lt;a name="0.2_i10886"&gt;&lt;/a&gt;&lt;br /&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;b&gt;31.  Mary Golseth [10886]&lt;/b&gt;, daughter of &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10958"&gt;&lt;b&gt;Ole Golseth&lt;/b&gt; [10958]&lt;/a&gt; and &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10959"&gt;&lt;b&gt;Marit Ronning&lt;/b&gt; [10959]&lt;/a&gt;, was born on 18 Jan 1868 in Tronhjem, Norge &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died on 25 Jan 1948 in California (1) &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; at age 80.&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 0.5in;"&gt;General Notes: .&lt;br /&gt;Notes for MARY GOLSETH:&lt;br /&gt;per 1900 census, had 4 children - 3 still living in 1900&lt;br /&gt;Per obituary - died at the age of 80 at her home at 1115 Mission St, Santa Cruz, CA, following a lengthy illness. She was born January 18, 1868 in Opdalen, Norway, coming to the United States as a small child with her parents. For a short&lt;br /&gt;time they made their home in Minnesota, later moving to Dakota Territory where her parents homesteaded. She was baptized and confirmed in the Lutheran faith.&lt;br /&gt;She was married to Edward Coulson on May 22, 1888 at DeSmet (SDak) and they made their home on a farm near Erwin where they lived until they moved to Santa Cruz, California in 1919. They celebrated their golden wedding in 1938. Mr. Coulson passed away Oct 13, 1942 and since then she has made her home with her daughter Hattie. She is survived by four children, Mrs. Mildred Larson, Lake Preston, Fred E. Coulson Brookings, Hattie Coulson of Santa Cruz, CA and Mrs. Edith Dunba&lt;br /&gt;r of San Marino, CA, one brother Martin Golseth of Erwin, one sister, Mrs. Julia Gorseth, Irene, a sister-in-law, Mrs. Rebecca Waby of Lake Preston, six grandchildren, 6 great grandchildren, other relatives and a host of friends.&lt;br /&gt;Funeral services were held Wednesday, January 28 at 2:00 p.m from the chapel at White's Mortuary. The Rev J. C. Colyar conducting the services. During the simple rites, Mrs. Arista Mellor sang "Old Rugged Cross" and "Lead Kindly Light" wi&lt;br /&gt;th William Reid at the console.&lt;br /&gt;&lt;br /&gt;Serving as pallbearers were Ross Rittenhouse, Clark Arneal, Leonard Marks, Clark Johnston, William Little and Neil Reid.&lt;br /&gt;&lt;br /&gt;Interment followed the service in the I. O. O. F. cemetery.&lt;br /&gt;&lt;br /&gt;From Pearl Larson's notes from Coulson family bible, "Indian stole Mary Coulson shoes and ran off."&lt;br /&gt;In 1881 the Golseth family came to the United States where the family lived near Lanesboro, Minnesota. In 1882 the Ole K. Golseth family moved by prairie schooner and ox team to SD. Homesteaded on land 7 miles northeast of Erwin SD. Mary&lt;br /&gt;was 14 years old, Julia was 17 years old. Mary's brother Martin was 11 years old at the time and walked the long distance prodding the two family cows that were tied to the back of the wagon.&lt;br /&gt;&lt;br /&gt;Mary and Martin went to school in their local territory.  Martin later went to State Normal at Madison, SD.&lt;br /&gt;&lt;br /&gt;Mary and her sister Julia worked in Huron as housekeepers in their early years.&lt;br /&gt;************************&lt;br /&gt;See 1900 Census, Hartland Twp, Kingsbury County, SD - Mary stated as mother of 4 with 3 children still living&lt;br /&gt;************************&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;More About MARY GOLSETH:&lt;br /&gt;Baptism: Lutheran&lt;br /&gt;Burial: January 28, 1948, I. O. O. F. Cemetery, California&lt;br /&gt;Confirmation: Lutheran&lt;br /&gt;Residence 1: Dakota Territory (after Minnesota)&lt;br /&gt;Residence 2: Minnesota as small child when first in America&lt;br /&gt;Residence 3: Bet. 1888 - 1919, Farm near Erwin&lt;br /&gt;Residence 4: Bet. 1919 - 1948, 1115 Mission St., Santa Cruz, CA&lt;/p&gt; &lt;p style="margin-left: 1in;"&gt;Mary married &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10885"&gt;&lt;b&gt;Edward Coulson&lt;/b&gt; [10885]&lt;/a&gt; [MRIN: 3307] on 22 May 1888 in Desmet, South Dakota.&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt; Marriage status: 0.&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;center&gt; &lt;h2&gt;Sixth Generation (3rd Great-Grandparents)&lt;/h2&gt; &lt;/center&gt; &lt;hr /&gt; &lt;a name="0.2_i10828"&gt;&lt;/a&gt;&lt;br /&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;b&gt;56.  Lars Jeppesen [10828]&lt;/b&gt;, son of &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10833"&gt;&lt;b&gt;Jeppe Christensen&lt;/b&gt; [10833]&lt;/a&gt; and &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10841"&gt;&lt;b&gt;Johanne Larsdatter&lt;/b&gt; [10841]&lt;/a&gt;, was born in 1807 in Tversted Sogn (1), was christened on 20 Dec 1807 in Tversted Kirke, died on 31 Mar 1887 in Tversted Sogn (1) &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; at age 80, and was buried on 7 Apr 1887 in Tversted Kirke.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 0.5in;"&gt;General Notes: .&lt;br /&gt;Hjørring, Horns, Tversted, Øster Tversted, , 10, FT-1845, Census&lt;br /&gt;Christen Andersen 85  Gift  Gaardmand Heri sognet&lt;br /&gt;Ingeborg Larsen 48  Gift  Hans kone Elling sogn Hjørring amt&lt;br /&gt;Lars Jeppesen 38  Ugift  Tjenestefolk Heri sognet&lt;br /&gt;Lars Chr Sørensen 22  Ugift  Tjenestefolk Bindslev sogn Hjørring amt&lt;br /&gt;Ingeborg Sørensen 18  Ugift  Tjenestefolk Bindslev sogn Hjørring amt&lt;br /&gt;&lt;br /&gt;Kirkebogen for Tversted&lt;br /&gt;1839-1856, opslag 113&lt;br /&gt;Viet den 26. oktober 1849&lt;br /&gt;Ungkarl Lars Jeppesen, 42 aar&lt;br /&gt;Pigen Ane Margrethe Sørensdatter af Ø. Tversted 35 aar&lt;br /&gt;&lt;br /&gt;Census 1855, Tversted sogn&lt;br /&gt;Lars Jeppesen, 48, born Tversted parish&lt;br /&gt;Ane Margrethe Sørensdatter, 41, wife, born Tversted Parish&lt;br /&gt;Christian Larsen, 6, child, born Tversted Parish&lt;br /&gt;Søren Christian Larsen, 4, child. born Tversted Parish&lt;br /&gt;Jeppe Larsen, 1, child, born Tversted Parish&lt;br /&gt;&lt;br /&gt;Census 1860, Tversted sogn&lt;br /&gt;Lars Jeppesen, 53, born Tversted parish&lt;br /&gt;Ane Margrethe Sørensdatter, 46, wife, born Tversted Parish&lt;br /&gt;Christian Larsen, 11, child, born Tversted Parish&lt;br /&gt;Søren Christian Larsen, 9, child. born Tversted Parish&lt;br /&gt;Jeppe Larsen, 6, child, born Tversted Parish&lt;br /&gt;Maren Sophie Larsen, 4 child, born Tversted Parish&lt;br /&gt;&lt;br /&gt;hjoerring, Horns, Tversted, Østenkjær, , Hus, 9, FT-1880&lt;br /&gt;Name: Age: Marital status: Occupation in household: Occupation: Birth place:&lt;br /&gt;Lars Jepsen 72  Gift Husfader, husmand  Tversted sogn, Hjørring amt&lt;br /&gt;Ane Margrete Sørensen 65  Gift Hans hustru  Tversted sogn, Hjørring amt&lt;br /&gt;Christian Larsen 30  Ugift Deres barn  Tversted sogn, Hjørring amt&lt;br /&gt;Hanne Larsen 19  Ugift Deres barn  Tversted sogn, Hjørring amt&lt;br /&gt;&lt;br /&gt;Kirkebogen for Tversted sogn&lt;br /&gt;Døde mænd 1887, no. 3&lt;br /&gt;Lars Jeppesen, død den 31. marts 1887, begravet den 7. april 1887&lt;br /&gt;Enkemand af Østenkær 74 aar (? 79)&lt;/p&gt; &lt;p style="margin-left: 1in;"&gt;Lars married &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10829"&gt;&lt;b&gt;Ane Margrethe Sørensdatter&lt;/b&gt; [10829]&lt;/a&gt; [MRIN: 3292]. Marriage status: 0.  &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;&lt;b&gt;Children from this marriage were:&lt;/b&gt; &lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;          i.  &lt;b&gt;Christian Larsen&lt;/b&gt; [10849] was born on 26 Dec 1849 in Tversted Sogn (1) &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and was christened on 1 Apr 1850 in Tversted Kirke.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;         ii.  &lt;b&gt;Søren Christian Larsen&lt;/b&gt; [10830] was born on 26 Sep 1851 in Tversted Sogn (1),&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; was christened on 16 Nov 1851 in Tversted Kirke,&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died on 13 Oct 1937 in Beadle County, South Dakota &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; at age 86.&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;28      iii.  &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10827"&gt;&lt;b&gt;Jeppe Larsen&lt;/b&gt; [10827]&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;         iv.  &lt;b&gt;Maren Sophie Larsen&lt;/b&gt; [10850] was born on 22 Aug 1856 in Tversted Sogn (1) &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and was christened on 9 Nov 1856 in Tversted Kirke.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;          v.  &lt;b&gt;Hanne Larsen&lt;/b&gt; [10831] was born on 16 Mar 1860 in Tversted Sogn (1) &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and was christened on 8 Apr 1860 in Tversted Kirke.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt; &lt;a name="0.2_i10829"&gt;&lt;/a&gt;&lt;br /&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;b&gt;57.  Ane Margrethe Sørensdatter [10829]&lt;/b&gt;, daughter of &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10836"&gt;&lt;b&gt;Søren Nielsen&lt;/b&gt; [10836]&lt;/a&gt; and &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10837"&gt;&lt;b&gt;Maren Sørensdatter&lt;/b&gt; [10837]&lt;/a&gt;, was born in 1814 in Tversted Sogn (1), was christened on 12 May 1814 in Tversted Kirke,&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_3"&gt;&lt;sup&gt;3&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; died on 17 Dec 1880 in Tversted Sogn (1) &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; at age 66, and was buried on 26 Dec 1880 in Tversted Kirke.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 0.5in;"&gt;General Notes: .&lt;br /&gt;hjoerring, Horns, Tversted, Østertversted Bye, en gaard, 89 (88), FT-1834, C7531&lt;br /&gt;Jens Nielsen 45  Gift  gaardmand&lt;br /&gt;Maren Sørensdatter 53  Gift  hans kone&lt;br /&gt;Anne Magrethe Sørensdatter 20  Ugift  deres børn&lt;br /&gt;Søren Christian Sørensen 14  Ugift  deres børn&lt;br /&gt;&lt;br /&gt;Kirkebogen for Tversted&lt;br /&gt;1839-1856, opslag 113&lt;br /&gt;Viet den 26. oktober 1849&lt;br /&gt;Ungkarl Lars Jeppesen, 42 aar&lt;br /&gt;Pigen Ane Margrethe Sørensdatter af Ø. Tversted 35 aar&lt;br /&gt;&lt;br /&gt;Census 1855, Tversted sogn&lt;br /&gt;Lars Jeppesen, 48, born Tversted parish&lt;br /&gt;Ane Margrethe Sørensdatter, 41, wife, born Tversted Parish&lt;br /&gt;Christian Larsen, 6, child, born Tversted Parish&lt;br /&gt;Søren Christian Larsen, 4, child. born Tversted Parish&lt;br /&gt;Jeppe Larsen, 1, child, born Tversted Parish&lt;br /&gt;&lt;br /&gt;Kirkebogen for Tversted sogn&lt;br /&gt;Døde kvinder 1880, no. 13&lt;br /&gt;Ane Margrethe Sørensdatter, død den 17. december 1880, begravet den 26. december 1880&lt;br /&gt;Husmand Lars Jepsens hustru ? af Østenkær i Tversted 66 aar, født i Tversted&lt;/p&gt; &lt;p style="margin-left: 1in;"&gt;Ane married &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10828"&gt;&lt;b&gt;Lars Jeppesen&lt;/b&gt; [10828]&lt;/a&gt; [MRIN: 3292]. Marriage status: 0.  &lt;a name="0.2_i10863"&gt;&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;b&gt;58.  Frands Christiansen Bæk [10863]&lt;/b&gt;, son of &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10972"&gt;&lt;b&gt;Christian Pedersen&lt;/b&gt; [10972]&lt;/a&gt; and &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10973"&gt;&lt;b&gt;Ane Jensdatter&lt;/b&gt; [10973]&lt;/a&gt;, was born on 28 Dec 1825 in Uggerby Sogn &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and was christened on 28 Dec 1825 in Hjemmedøbt.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 0.5in;"&gt;General Notes: .&lt;br /&gt;hjoerring, Vennebjerg, Uggerby, Bechen, Et huus, 15, FT-1834, C5057&lt;br /&gt;Christian Pedersen 66  Gift  Huusmand&lt;br /&gt;Anne Jensdatter 40  Gift  Hans Kone&lt;br /&gt;Peder Christ. Christiansen 12  Ugift  Deres Børn&lt;br /&gt;Jens Christ. Christiansen 11  Ugift  Deres Børn&lt;br /&gt;Frands Christ. Christiansen 9  Ugift  Deres Børn&lt;br /&gt;Anne Christina Christiansdatter 6  Ugift  Deres Børn&lt;br /&gt;&lt;br /&gt;hjoerring, Horns, Tversted, Sønderåen, Hus, 10, FT-1880, B2446&lt;br /&gt;Frands Christiansen Bæch 54  Gift Husfader og mølleejer  Uggerby sogn&lt;br /&gt;Anne Elsine Chrestensen 43  Gift Hans hustru  Her i sognet&lt;br /&gt;Carl Bæch 15  Ugift Deres barn  Her i sognet&lt;br /&gt;Anne Marie Bæch 12  Ugift Deres barn  Her i sognet&lt;br /&gt;Chresten Bæch 10  Ugift Deres barn  Her i sognet&lt;br /&gt;Johannes Bæch 7  Ugift Deres barn  Her i sognet&lt;br /&gt;Kierstine Bæch 3  Ugift Deres barn  Her i sognet&lt;br /&gt;Ottine Elsine Bæch Under 1 år  Ugift Deres barn  Her i sognet&lt;br /&gt;&lt;br /&gt;hjoerring, Horns, Tversted, Terp Tversted Sogn, , 5, FT-1890, C3111&lt;br /&gt;Frans Christensen Bek 64 f. 20/12  Gift Husfader Husmand, Jordbruger Uggerby Sogn Hjørring Amt&lt;br /&gt;Ane Elsine Christensdatter 54 f. 21/9  Gift Husmoder  Tversted Sogn Hjørring Amt&lt;br /&gt;Marie Bek 22 f. 15/7  Ugift Barn  Tversted Sogn Hjørring Amt&lt;br /&gt;Kresten Bek 20 f. 1/2  Ugift Barn Arbejder i Jorbruget Tversted Sogn Hjørring Amt&lt;br /&gt;Johanes Bek 17 f. 21/9  Ugift Barn  Tversted Sogn Hjørring Amt&lt;br /&gt;Stine Bek 13 f. 13/3  Ugift Barn  Tversted Sogn Hjørring Amt&lt;br /&gt;Ottine Bek 10 f. 30/3  Ugift Barn  Tversted Sogn Hjørring Amt&lt;/p&gt; &lt;p style="margin-left: 1in;"&gt;Frands married &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10864"&gt;&lt;b&gt;Ane Elsine Christensdatter&lt;/b&gt; [10864]&lt;/a&gt; [MRIN: 3303] on 5 Sep 1856 in Tversted Kirke.&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_3"&gt;&lt;sup&gt;3&lt;/sup&gt;&lt;/a&gt; Marriage status: 0.  &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;&lt;b&gt;Children from this marriage were:&lt;/b&gt; &lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;29        i.  &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10832"&gt;&lt;b&gt;Hanne Bæk&lt;/b&gt; [10832]&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;         ii.  &lt;b&gt;Anders Christian Bech&lt;/b&gt; [10971] was born on 15 Apr 1862 in Tversted Sogn (1),&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_3"&gt;&lt;sup&gt;3&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; was christened on 9 Jun 1862 in Tversted Kirke,&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_3"&gt;&lt;sup&gt;3&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died on 30 Oct 1928 &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_3"&gt;&lt;sup&gt;3&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; at age 66.&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;        iii.  &lt;b&gt;Carl Frandsen Bæk&lt;/b&gt; [10967] was born on 13 Dec 1864 in Terpet I Tversted Sogn &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and was christened on 14 Apr 1865 in Tversted Kirke.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;         iv.  &lt;b&gt;Ane Marie Bæk&lt;/b&gt; [10968] was born on 15 Jul 1867 in Terpet I Tversted Sogn &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and was christened on 13 Oct 1867 in Tversted Kirke.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;          v.  &lt;b&gt;Chresten Bæk&lt;/b&gt; [10966] was born on 1 Feb 1870 in Terpet I Tversted Sogn &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and was christened on 18 Apr 1870 in Tversted Kirke.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;         vi.  &lt;b&gt;Johannes Bech&lt;/b&gt; [10965] was born on 21 Sep 1872 &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_3"&gt;&lt;sup&gt;3&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and was christened on 24 Nov 1872 in Tversted Kirke.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_3"&gt;&lt;sup&gt;3&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;        vii.  &lt;b&gt;Kirstine Bech&lt;/b&gt; [10969] was born on 6 Mar 1876 in Tversted Sogn (1) &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and was christened on 4 Jun 1876 in Tversted Kirke.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;       viii.  &lt;b&gt;Ottine Elsine Bech&lt;/b&gt; [10970] was born on 30 Mar 1879 in Tversted Sogn (1) &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and was christened in Tversted Kirke.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt; &lt;a name="0.2_i10864"&gt;&lt;/a&gt;&lt;br /&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;b&gt;59.  Ane Elsine Christensdatter [10864]&lt;/b&gt;, daughter of &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10974"&gt;&lt;b&gt;Christen Olesen&lt;/b&gt; [10974]&lt;/a&gt; and &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10975"&gt;&lt;b&gt;Hanne Tomsdatter&lt;/b&gt; [10975]&lt;/a&gt;, was born on 21 Oct 1836 in Tversted Sogn (1) &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and was christened on 20 Nov 1836 in Tversted Kirke.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 0.5in;"&gt;General Notes: .&lt;br /&gt;Kirkebogen for Tversted sogn&lt;br /&gt;Født pige.: Ane Elsine Christensdatter, født den 21. oktober 1836, døbt i kirken den 20. november 1836&lt;br /&gt;Forældre.: Christen Olesen og hustru Hanna Tomsdatter, gaardmand i Øster Tversted&lt;br /&gt;Faddere.: Madamme Ring til Nørre Elkjær - Jomfru Brix paa Nr. Elkjær - ?  - ? - ?&lt;br /&gt;&lt;br /&gt;hjoerring, Horns, Tversted, Vester Tversted, en Gaard, 39, FT-1840, C8732&lt;br /&gt;Christen Olesen 32  Gift  Gaardmand&lt;br /&gt;Hanne Thomsen 31  Gift  hans Kone&lt;br /&gt;Ole Christensen 1  Ugift  deres Børn&lt;br /&gt;Ane Elene Christensen! 4  Ugift  deres Børn&lt;br /&gt;Johann Chr Thomsen 13  Ugift  deres Pleiesøn&lt;br /&gt;Johanne Marie Jacobsen 19  Ugift  Tjenestefolk&lt;br /&gt;Christian Godskesen 17  Ugift  Tjenestefolk&lt;br /&gt;&lt;br /&gt;hjoerring, Horns, Tversted, Øster Tversted, , 48, FT-1845, B7052&lt;br /&gt;Christen Olesen 37  Gift  Gaardmand Heri sognet&lt;br /&gt;Hanne Thomsen 36  Gift  Hans kone Heri sognet&lt;br /&gt;Ole Christensen 6  Ugift  Deres børn Heri sognet&lt;br /&gt;Ane Elene Christensen 9  Ugift  Deres børn Heri sognet&lt;br /&gt;Jens Christensen 3  Ugift  Deres børn Heri sognet&lt;br /&gt;Anders Pedersen 36  Enkemand  Tjenestekarl Heri sognet&lt;br /&gt;.&lt;br /&gt;hjoerring, Horns, Tversted, Sønderåen, Hus, 10, FT-1880, B2446&lt;br /&gt;Frands Christiansen Bæch 54  Gift Husfader og mølleejer  Uggerby sogn&lt;br /&gt;Anne Elsine Chrestensen 43  Gift Hans hustru  Her i sognet&lt;br /&gt;Carl Bæch 15  Ugift Deres barn  Her i sognet&lt;br /&gt;Anne Marie Bæch 12  Ugift Deres barn  Her i sognet&lt;br /&gt;Chresten Bæch 10  Ugift Deres barn  Her i sognet&lt;br /&gt;Johannes Bæch 7  Ugift Deres barn  Her i sognet&lt;br /&gt;Kierstine Bæch 3  Ugift Deres barn  Her i sognet&lt;br /&gt;Ottine Elsine Bæch Under 1 år  Ugift Deres barn  Her i sognet&lt;br /&gt;&lt;br /&gt;hjoerring, Horns, Tversted, Terp Tversted Sogn, , 5, FT-1890, C3111&lt;br /&gt;Frans Christensen Bek 64 f. 20/12  Gift Husfader Husmand, Jordbruger Uggerby Sogn Hjørring Amt&lt;br /&gt;Ane Elsine Christensdatter 54 f. 21/9  Gift Husmoder  Tversted Sogn Hjørring Amt&lt;br /&gt;Marie Bek 22 f. 15/7  Ugift Barn  Tversted Sogn Hjørring Amt&lt;br /&gt;Kresten Bek 20 f. 1/2  Ugift Barn Arbejder i Jorbruget Tversted Sogn Hjørring Amt&lt;br /&gt;Johanes Bek 17 f. 21/9  Ugift Barn  Tversted Sogn Hjørring Amt&lt;br /&gt;Stine Bek 13 f. 13/3  Ugift Barn  Tversted Sogn Hjørring Amt&lt;br /&gt;Ottine Bek 10 f. 30/3  Ugift Barn  Tversted Sogn Hjørring Amt&lt;br /&gt;&lt;/p&gt; &lt;p style="margin-left: 1in;"&gt;Ane married &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10863"&gt;&lt;b&gt;Frands Christiansen Bæk&lt;/b&gt; [10863]&lt;/a&gt; [MRIN: 3303] on 5 Sep 1856 in Tversted Kirke.&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_3"&gt;&lt;sup&gt;3&lt;/sup&gt;&lt;/a&gt; Marriage status: 0.  &lt;a name="0.2_i11085"&gt;&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;b&gt;60.  Joseph Henery Coulson [11085]&lt;/b&gt; was born in 1815 in England &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died in 1882 &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; at age 67.&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 0.5in;"&gt;General Notes: .&lt;br /&gt;Notes for JOSEPH HENERY COULSON:&lt;br /&gt;From "Erwin: The First 100 Years" in a story by Pearl Larson Joseph Coulson and Mildred Armstrong Coulson came from Liverpool, England to the United States in 1881. They had 11 children: William (never married), John, George (never married), Henry (Frank and Bert Coulson's dad), Thoms (George and A&lt;br /&gt;lys Coulson's dad), Charles (never married), Robert (Alfred Coulson's father), Edward (Fred, Mildred, Hattie and Edith's father), Rebecca (Mrs. Fred Waby) (Mrs. Myrtie Marquardt's mother), Mary (Mrs. Tim Waby), and Ann (Mrs. Billy Brown).&lt;br /&gt;Joseph passed away in 1882, near St. Charles, Minnesota. Mildred came to South Dakota with her son in 1882, and homesteaded northeast of Erwin. They recorded the first claim in 1883.&lt;br /&gt;&lt;br /&gt;PL Coulson notebook:  "Dorothy Chase tried to find Ed's dad's grave, but church burned and so did the records, no head stone."&lt;br /&gt;&lt;br /&gt;More About JOSEPH HENERY COULSON:&lt;br /&gt;Burial: St. Charles, MN&lt;br /&gt;Immigration: 1881, From Liverpool England to St Charles, MN&lt;/p&gt; &lt;p style="margin-left: 1in;"&gt;Joseph married &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i11086"&gt;&lt;b&gt;Mildred J. Armstrong&lt;/b&gt; [11086]&lt;/a&gt; [MRIN: 3381] on 25 Oct 1841.&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt; Marriage status: 0.  &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;&lt;b&gt;Children from this marriage were:&lt;/b&gt; &lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;          i.  &lt;b&gt;Mary Coulson&lt;/b&gt; [11087] was born on 1 Dec 1843 &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died on 7 Nov 1934 in California (1) &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; at age 90.&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;         ii.  &lt;b&gt;Charles Coulson&lt;/b&gt; [11088] was born on 16 Feb 1845 &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died before 1948.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;        iii.  &lt;b&gt;Ann Harriet Coulson&lt;/b&gt; [11089] was born on 15 Aug 1846 in Liverpool, England &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died before 1940.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;         iv.  &lt;b&gt;George Coulson&lt;/b&gt; [11091] was born on 6 Jul 1847 in Liverpool, England &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died on 8 Sep 1906 &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; at age 59.&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;          v.  &lt;b&gt;Henry Coulson&lt;/b&gt; [11092] was born on 2 Oct 1849 in Liverpool, England &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died on 7 Nov 1934 in California (1) &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; at age 85.&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;         vi.  &lt;b&gt;John Coulson&lt;/b&gt; [11093] was born on 16 Apr 1851 in Liverpool, England &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died before 1948.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;        vii.  &lt;b&gt;William Coulson&lt;/b&gt; [11094] was born on 14 Nov 1853 in Liverpool, England &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died before 1948.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;       viii.  &lt;b&gt;Joseph Coulson&lt;/b&gt; [11095] was born on 28 Feb 1857 in Liverpool, England.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;         ix.  &lt;b&gt;Thomas Coulson&lt;/b&gt; [11096] was born on 12 Dec 1859 in Liverpool, England,&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; died on 23 Jul 1929 in South Dakota &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; at age 69, and was buried in Lake Preston, South Dakota, USA.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_3"&gt;&lt;sup&gt;3&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;          x.  &lt;b&gt;Robert Coulson&lt;/b&gt; [11097] was born on 9 Oct 1861 in Liverpool, England &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died on 17 Apr 1908 &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; at age 46.&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;         xi.  &lt;b&gt;Rebekah Coulson&lt;/b&gt; [11098] was born on 21 May 1863 in Liverpool, England &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died on 28 Apr 1956 &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; at age 92.&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;30      xii.  &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10885"&gt;&lt;b&gt;Edward Coulson&lt;/b&gt; [10885]&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;       xiii.  &lt;b&gt;Joe II Coulson&lt;/b&gt; [11099]&lt;br /&gt;&lt;/p&gt; &lt;a name="0.2_i11086"&gt;&lt;/a&gt;&lt;br /&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;b&gt;61.  Mildred J. Armstrong [11086]&lt;/b&gt; was born in 1820 in England.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;Mildred married &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i11085"&gt;&lt;b&gt;Joseph Henery Coulson&lt;/b&gt; [11085]&lt;/a&gt; [MRIN: 3381] on 25 Oct 1841.&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt; Marriage status: 0.  &lt;a name="0.2_i10958"&gt;&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;b&gt;62.  Ole Golseth [10958]&lt;/b&gt; .&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;Ole married &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10959"&gt;&lt;b&gt;Marit Ronning&lt;/b&gt; [10959]&lt;/a&gt; [MRIN: 3334]. Marriage status: 0.  &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;&lt;b&gt;Children from this marriage were:&lt;/b&gt; &lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;31        i.  &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10886"&gt;&lt;b&gt;Mary Golseth&lt;/b&gt; [10886]&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;         ii.  &lt;b&gt;Martin Golseth&lt;/b&gt; [10873] was born on 16 Mar 1871 in Norge &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died on 29 Oct 1948 in South Dakota &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; at age 77.&lt;br /&gt;&lt;/p&gt; &lt;a name="0.2_i10959"&gt;&lt;/a&gt;&lt;br /&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;b&gt;63.  Marit Ronning [10959]&lt;/b&gt; .&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;Marit married &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10958"&gt;&lt;b&gt;Ole Golseth&lt;/b&gt; [10958]&lt;/a&gt; [MRIN: 3334]. Marriage status: 0.&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;center&gt; &lt;h2&gt;Seventh Generation (4th Great-Grandparents)&lt;/h2&gt; &lt;/center&gt; &lt;hr /&gt; &lt;a name="0.2_i10833"&gt;&lt;/a&gt;&lt;br /&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;b&gt;112.  Jeppe Christensen [10833]&lt;/b&gt;, son of &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10843"&gt;&lt;b&gt;Kristen Kristensen&lt;/b&gt; [10843]&lt;/a&gt; and &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10844"&gt;&lt;b&gt;Ingeborg Jensen&lt;/b&gt; [10844]&lt;/a&gt;, was born in 1754, was christened on 24 Nov 1754 in Tversted Kirke, died on 7 Nov 1823 in Tversted Sogn (1) &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_3"&gt;&lt;sup&gt;3&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; at age 69, and was buried on 16 Nov 1823 in Tversted Kirke.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_3"&gt;&lt;sup&gt;3&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 0.5in;"&gt;General Notes: .&lt;br /&gt;hjoerring, Horns, Tversted, Øster Tversted Bye, , 65, FT-1787, A7088&lt;br /&gt;Jeppe Christensen 30  gift Hosbonde Bonde og Gaardfæster&lt;br /&gt;Maren Christensdr 26  gift hans Kone&lt;br /&gt;Ingeborg Jeppesd. 1   deres Daatter&lt;br /&gt;Jens Jensen 11   Tienistedreng&lt;br /&gt;&lt;br /&gt;Stod i 1792 Fadder i Tversted kirke til Else Nielsdatter&lt;br /&gt;&lt;br /&gt;hjoerring, Horns, Tversted, Øster Tversted også kaldet Nørre Tversted, , 9, FT-1801, B8094&lt;br /&gt;Jeppe Christensen 47  Gift Husbonde Bonde og gårdbeboer&lt;br /&gt;Johanne Larsdatter 31  Gift Hans kone&lt;br /&gt;Christen Jeppesen 15  Ugift Hans barn&lt;br /&gt;Ingeborg Jeppesdatter 12  Ugift Hans barn&lt;br /&gt;Lars Jepsen 6  Ugift Deres barn&lt;br /&gt;Maren Jepesdatter 3  Ugift Deres barn&lt;br /&gt;Rubech Pedersen 28  Ugift Tjenestekarl&lt;/p&gt; &lt;p style="margin-left: 1in;"&gt;Jeppe married  on 29 Mar 1785 in Tversted Kirke.&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_3"&gt;&lt;sup&gt;3&lt;/sup&gt;&lt;/a&gt; Marriage status: 0.  &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;&lt;b&gt;His children were:&lt;/b&gt; &lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;          i.  &lt;b&gt;Ingeborg Jeppesdatter&lt;/b&gt; [10847] was born on 30 Apr 1786, was christened on 30 Apr 1786 in Tversted Sogn (1),&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_3"&gt;&lt;sup&gt;3&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died on 21 Dec 1856 at age 70.&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;         ii.  &lt;b&gt;Kristen Jeppesen&lt;/b&gt; [10845] was born in 1789, was christened on 27 Jun 1789 in Tversted Sogn (1),&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_3"&gt;&lt;sup&gt;3&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died on 23 Aug 1857 at age 68.&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;        iii.  &lt;b&gt;Maren Jeppesdatter&lt;/b&gt; [10846] was born in 1792, was christened on 21 Apr 1792 in Tversted Sogn (1),&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_3"&gt;&lt;sup&gt;3&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died on 16 Jun 1876 at age 84.&lt;br /&gt;&lt;/p&gt; &lt;p style="margin-left: 1in;"&gt;Jeppe married &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10841"&gt;&lt;b&gt;Johanne Larsdatter&lt;/b&gt; [10841]&lt;/a&gt; [MRIN: 3296] on 7 Sep 1794. Marriage status: 0.  &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;&lt;b&gt;Children from this marriage were:&lt;/b&gt; &lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;          i.  &lt;b&gt;Laurs Jeppesen&lt;/b&gt; [10853] was born in 1795, was christened on 20 Feb 1795 in Tversted Kirke,&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_3"&gt;&lt;sup&gt;3&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died in 1808 at age 13.&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;         ii.  &lt;b&gt;Jens Jeppesen&lt;/b&gt; [10854] was born in 1797, was christened on 6 Apr 1797 in Tversted Kirke,&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_3"&gt;&lt;sup&gt;3&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died on 14 May 1797.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_3"&gt;&lt;sup&gt;3&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;        iii.  &lt;b&gt;Maren Jeppesdatter&lt;/b&gt; [10856] was born on 25 Apr 1798, was christened on 25 Apr 1798 in Tversted Kirke,&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_3"&gt;&lt;sup&gt;3&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died on 18 Nov 1862 at age 64.&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;         iv.  &lt;b&gt;Jens Jeppesen&lt;/b&gt; [10855] was born in 1802 and was christened on 31 Oct 1802 in Tversted Kirke.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_3"&gt;&lt;sup&gt;3&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;          v.  &lt;b&gt;Ole Jeppesen&lt;/b&gt; [10852] was born in 1804 and was christened on 13 Aug 1804 in Tversted Kirke.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_3"&gt;&lt;sup&gt;3&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;56       vi.  &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10828"&gt;&lt;b&gt;Lars Jeppesen&lt;/b&gt; [10828]&lt;/a&gt;&lt;br /&gt;&lt;/p&gt; &lt;p style="margin-left: 1in;"&gt;Jeppe next married  on 24 Nov 1812 in Mygdal Kirke.&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt; Marriage status: 0.  &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;&lt;b&gt;His children were:&lt;/b&gt; &lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;          i.  &lt;b&gt;Johanne Jeppesdatter&lt;/b&gt; [10858] was born in 1813 and was christened on 2 Dec 1813 in Tversted Kirke.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_3"&gt;&lt;sup&gt;3&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;         ii.  &lt;b&gt;Boel Jeppesen&lt;/b&gt; [10859] was born on 6 Oct 1814 and was christened on 17 Oct 1814 in Tversted Kirke.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_3"&gt;&lt;sup&gt;3&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;        iii.  &lt;b&gt;Johanne Marie Jeppesdatter&lt;/b&gt; [10860] was born on 28 Dec 1815 and was christened on 29 Dec 1815 in Tversted Kirke.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_3"&gt;&lt;sup&gt;3&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt; &lt;a name="0.2_i10841"&gt;&lt;/a&gt;&lt;br /&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;b&gt;113.  Johanne Larsdatter [10841]&lt;/b&gt; was born in 1770, died in 1812 at age 42, and was buried on 31 May 1812 in Tversted Kirke.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 0.5in;"&gt;General Notes: .&lt;br /&gt;hjoerring, Horns, Tversted, Øster Tversted også kaldet Nørre Tversted, , 9, FT-1801, B8094&lt;br /&gt;Jeppe Christensen 47  Gift Husbonde Bonde og gårdbeboer&lt;br /&gt;Johanne Larsdatter 31  Gift Hans kone&lt;br /&gt;Christen Jeppesen 15  Ugift Hans barn&lt;br /&gt;Ingeborg Jeppesdatter 12  Ugift Hans barn&lt;br /&gt;Lars Jepsen 6  Ugift Deres barn&lt;br /&gt;Maren Jepesdatter 3  Ugift Deres barn&lt;br /&gt;Rubech Pedersen 28  Ugift Tjenestekarl&lt;/p&gt; &lt;p style="margin-left: 1in;"&gt;Johanne married &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10833"&gt;&lt;b&gt;Jeppe Christensen&lt;/b&gt; [10833]&lt;/a&gt; [MRIN: 3296] on 7 Sep 1794. Marriage status: 0.  &lt;a name="0.2_i10836"&gt;&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;b&gt;114.  Søren Nielsen [10836]&lt;/b&gt; .&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 0.5in;"&gt;General Notes: .&lt;br /&gt;Kirkebogen for Tversted&lt;br /&gt;Den 22. oktober 1810, meldte sig til ægteskab, Ungkarl Søren Nielsen og pigen Maren Sørensdatter, tjenende for tiden i Mosbjerg sogn&lt;br /&gt;Forlovere.: Lars Nielsen af Øster Tversted og Niels Hansen i Terpet&lt;/p&gt; &lt;p style="margin-left: 1in;"&gt;Søren married &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10837"&gt;&lt;b&gt;Maren Sørensdatter&lt;/b&gt; [10837]&lt;/a&gt; [MRIN: 3295] on 22 Oct 1810 in Tversted Kirke.&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt; Marriage status: 0.  &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;&lt;b&gt;Children from this marriage were:&lt;/b&gt; &lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;          i.  &lt;b&gt;Niels Sørensen&lt;/b&gt; [10838] was born in 1811 and was christened on 20 Jul 1811 in Tversted Kirke.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_3"&gt;&lt;sup&gt;3&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;57       ii.  &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10829"&gt;&lt;b&gt;Ane Margrethe Sørensdatter&lt;/b&gt; [10829]&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;        iii.  &lt;b&gt;Søren Christian Sørensen&lt;/b&gt; [10839] was born in 1820 and was christened on 16 Apr 1820 in Tversted Kirke.&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt; &lt;a name="0.2_i10837"&gt;&lt;/a&gt;&lt;br /&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;b&gt;115.  Maren Sørensdatter [10837]&lt;/b&gt; was born on 15 Jan 1782 in Tversted Sogn (1).&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 0.5in;"&gt;General Notes: .&lt;br /&gt;Kirkebogen for Tversted&lt;br /&gt;1688-1809, opslag 354&lt;br /&gt;Onsdagen den 16. januar 1782 blev inddøbt Søren Poulsen  og Anne Jensdatter's barn kaldet Maren&lt;br /&gt;&lt;br /&gt;Hjørring, Horns, Tversted, Øster Tversted Bye, , 57, FT-1787, A7088&lt;br /&gt;Søren Povelsen 42  gift Hosbonde Bonde og Gaardfæster&lt;br /&gt;Anne Jensdatter 44  gift hans Kone&lt;br /&gt;Maren Sørensdr 5   deres Datter&lt;br /&gt;Christen Andersen 26  ugivt Tienestefolk National Soldat&lt;br /&gt;Niels Pedersen 11   Tienestefolk&lt;br /&gt;Maren Pedersdr 26  ugivt Tienestefolk&lt;br /&gt;&lt;br /&gt;Hjørring, Horns, Tversted, Præstegården, , 1, FT-1801, B8094&lt;br /&gt;Christian Frederik ??Biørn 61  Gift Husbonde Sognepræst&lt;br /&gt;Catharine Marie Semmen 61  Gift Hans kone&lt;br /&gt;Ane Catharine 14  Ugift Et barn af familien&lt;br /&gt;Søren Jensen 36  Ugift Tjenestekarl&lt;br /&gt;Christen Christensen 41  Ugift Tjenestekarl&lt;br /&gt;Jens Heilesen 18  Ugift Tjenestekarl&lt;br /&gt;Karen Pedersdatter 27  Ugift Tjenestepige&lt;br /&gt;Maren Sørensdatter 19  Ugift Tjenestepige&lt;br /&gt;Christen Larsen 15  Ugift&lt;br /&gt;Christen Jensen 14  Ugift&lt;br /&gt;Christen Hansen 61  Ugift Opholdende Nyder ophold i gården&lt;br /&gt;Dorthe Jensdatter 44  Ugift Opholdende Nyder ophold i gården&lt;br /&gt;&lt;br /&gt;Kirkebogen for Tversted&lt;br /&gt;Den 22. oktober 1810, meldte sig til ægteskab, Ungkarl Søren Nielsen og pigen Maren Sørensdatter, tjenende for tiden i Mosbjerg sogn&lt;br /&gt;Forlovere.: Lars Nielsen af Øster Tversted og Niels Hansen i Terpet&lt;br /&gt;.&lt;br /&gt;hjoerring, Horns, Tversted, Østertversted Bye, en gaard, 89 (88), FT-1834, C7531&lt;br /&gt;Jens Nielsen 45  Gift  gaardmand&lt;br /&gt;Maren Sørensdatter 53  Gift  hans kone&lt;br /&gt;Anne Magrethe Sørensdatter 20  Ugift  deres børn&lt;br /&gt;Søren Christian Sørensen 14  Ugift  deres børn&lt;br /&gt;&lt;/p&gt; &lt;p style="margin-left: 1in;"&gt;Maren married &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10836"&gt;&lt;b&gt;Søren Nielsen&lt;/b&gt; [10836]&lt;/a&gt; [MRIN: 3295] on 22 Oct 1810 in Tversted Kirke.&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt; Marriage status: 0.  &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;Maren next married  on 22 Oct 1820 in Tversted Kirke.&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt; Marriage status: 0.  &lt;/p&gt; &lt;a name="0.2_i10972"&gt;&lt;/a&gt;&lt;br /&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;b&gt;116.  Christian Pedersen [10972]&lt;/b&gt; was born in 1768.&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 0.5in;"&gt;General Notes: .&lt;br /&gt;hjoerring, Vennebjerg, Uggerby, Bechen, Et huus, 15, FT-1834, C5057&lt;br /&gt;Christian Pedersen 66  Gift  Huusmand&lt;br /&gt;Anne Jensdatter 40  Gift  Hans Kone&lt;br /&gt;Peder Christ. Christiansen 12  Ugift  Deres Børn&lt;br /&gt;Jens Christ. Christiansen 11  Ugift  Deres Børn&lt;br /&gt;Frands Christ. Christiansen 9  Ugift  Deres Børn&lt;br /&gt;Anne Christina Christiansdatter 6  Ugift  Deres Børn&lt;/p&gt; &lt;p style="margin-left: 1in;"&gt;Christian married &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10973"&gt;&lt;b&gt;Ane Jensdatter&lt;/b&gt; [10973]&lt;/a&gt; [MRIN: 3337]. Marriage status: 0.  &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;&lt;b&gt;The child from this marriage was:&lt;/b&gt; &lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;58        i.  &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10863"&gt;&lt;b&gt;Frands Christiansen Bæk&lt;/b&gt; [10863]&lt;/a&gt;&lt;br /&gt;&lt;/p&gt; &lt;a name="0.2_i10973"&gt;&lt;/a&gt;&lt;br /&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;b&gt;117.  Ane Jensdatter [10973]&lt;/b&gt; was born in 1794.&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 0.5in;"&gt;General Notes: .&lt;br /&gt;hjoerring, Vennebjerg, Uggerby, Bechen, Et huus, 15, FT-1834, C5057&lt;br /&gt;Christian Pedersen 66  Gift  Huusmand&lt;br /&gt;Anne Jensdatter 40  Gift  Hans Kone&lt;br /&gt;Peder Christ. Christiansen 12  Ugift  Deres Børn&lt;br /&gt;Jens Christ. Christiansen 11  Ugift  Deres Børn&lt;br /&gt;Frands Christ. Christiansen 9  Ugift  Deres Børn&lt;br /&gt;Anne Christina Christiansdatter 6  Ugift  Deres Børn&lt;/p&gt; &lt;p style="margin-left: 1in;"&gt;Ane married &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10972"&gt;&lt;b&gt;Christian Pedersen&lt;/b&gt; [10972]&lt;/a&gt; [MRIN: 3337]. Marriage status: 0.  &lt;a name="0.2_i10974"&gt;&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;b&gt;118.  Christen Olesen [10974]&lt;/b&gt; was born in 1808 in Tversted Sogn (1).&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;Christen married &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10975"&gt;&lt;b&gt;Hanne Tomsdatter&lt;/b&gt; [10975]&lt;/a&gt; [MRIN: 3338]. Marriage status: 0.  &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;&lt;b&gt;Children from this marriage were:&lt;/b&gt; &lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;59        i.  &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10864"&gt;&lt;b&gt;Ane Elsine Christensdatter&lt;/b&gt; [10864]&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;         ii.  &lt;b&gt;Else Kirstine Christensen&lt;/b&gt; [10851] was born on 8 Nov 1849 in Terpet I Tversted Sogn,&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; was christened on 23 Dec 1849 in Tversted Kirke,&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_2"&gt;&lt;sup&gt;2&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; and died on 12 Dec 1912 &lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_1"&gt;&lt;sup&gt;1&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt; at age 63.&lt;br /&gt;&lt;/p&gt; &lt;a name="0.2_i10975"&gt;&lt;/a&gt;&lt;br /&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;b&gt;119.  Hanne Tomsdatter [10975]&lt;/b&gt; was born in 1809 in Tversted Sogn (1).&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;Hanne married &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10974"&gt;&lt;b&gt;Christen Olesen&lt;/b&gt; [10974]&lt;/a&gt; [MRIN: 3338]. Marriage status: 0.&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;center&gt; &lt;h2&gt;Eighth Generation (5th Great-Grandparents)&lt;/h2&gt; &lt;/center&gt; &lt;hr /&gt; &lt;a name="0.2_i10843"&gt;&lt;/a&gt;&lt;br /&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;b&gt;224.  Kristen Kristensen [10843]&lt;/b&gt; was born in 1728 in Tversted Sogn (1).&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_3"&gt;&lt;sup&gt;3&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;Kristen married &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10844"&gt;&lt;b&gt;Ingeborg Jensen&lt;/b&gt; [10844]&lt;/a&gt; [MRIN: 3298]. Marriage status: 0.  &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;&lt;b&gt;The child from this marriage was:&lt;/b&gt; &lt;/p&gt;&lt;p&gt; &lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;112       i.  &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10833"&gt;&lt;b&gt;Jeppe Christensen&lt;/b&gt; [10833]&lt;/a&gt;&lt;br /&gt;&lt;/p&gt; &lt;a name="0.2_i10844"&gt;&lt;/a&gt;&lt;br /&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;b&gt;225.  Ingeborg Jensen [10844]&lt;/b&gt; was born in 1732 in Tversted Sogn (1).&lt;sup&gt;&lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_3"&gt;&lt;sup&gt;3&lt;/sup&gt;&lt;/a&gt;&lt;/sup&gt;&lt;br /&gt;&lt;/p&gt;&lt;p style="margin-left: 1in;"&gt;Ingeborg married &lt;a href="http://www.blogger.com/post-edit.g?blogID=8441874&amp;amp;postID=6167922864458546617#0.2_i10843"&gt;&lt;b&gt;Kristen Kristensen&lt;/b&gt; [10843]&lt;/a&gt; [MRIN: 3298]. Marriage status: 0.&lt;br /&gt;&lt;/p&gt;&lt;hr /&gt; &lt;h2&gt;Sources&lt;/h2&gt; &lt;hr /&gt; &lt;p style="margin-left: 0.5in;"&gt;&lt;a name="0.2_1"&gt;1.&lt;/a&gt; Sheila M. Larson, Erwin, SD, USA (1).  &lt;/p&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;a name="0.2_2"&gt;2.&lt;/a&gt; Kirkebogen.  &lt;/p&gt;&lt;p style="margin-left: 0.5in;"&gt;&lt;a name="0.2_3"&gt;3.&lt;/a&gt; &lt;a href="http://www.familysearch.org/" target="_blank"&gt;www.familysearch.org&lt;/a&gt; (1).  &lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-6167922864458546617?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/6167922864458546617/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=6167922864458546617' title='3 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6167922864458546617'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6167922864458546617'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2008/02/ancestors-of-shawn-vincent.html' title='Ancestors of Shawn Vincent'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>3</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-4287559633800730331</id><published>2008-02-23T19:33:00.004-05:00</published><updated>2008-02-23T19:45:58.557-05:00</updated><title type='text'>Family Stuff</title><content type='html'>I just found a couple of awesome websites relating to my family.&lt;br /&gt;&lt;br /&gt;On my mother's side, the Larsons are from Denmark (my mother's mother).  A family tree of this family since emmigrating from Denmark to the United States can be found here:&lt;br /&gt;&lt;br /&gt;&lt;div style="margin-left: 1in;"&gt;&lt;br /&gt;&lt;a href="http://torslev.dk/Specielle/Mosen/Kristen%20K/d1.htm"&gt;http://torslev.dk/...&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Me and my sister are even on the list -- I always wonder how people find this stuff out.  :-)&lt;br /&gt;&lt;br /&gt;On my father's side, my father's father's father (my great-grandfather), Alfons Vincent made several trips back and forth to Belgium.  Ship manifests and signatures are on this website:&lt;br /&gt;&lt;br /&gt;&lt;div style="margin-left: 1in;"&gt;&lt;br /&gt;&lt;a href="http://www.ellisisland.org/search/matchMore.asp?FNM=ALFONS&amp;amp;LNM=VINCENT&amp;amp;PLNM=VINCENT&amp;amp;CGD=M&amp;amp;first_kind=1&amp;amp;kind=exact&amp;amp;offset=0&amp;amp;dwpdone=1"&gt;http://www.ellisisland.org/...&lt;/a&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Very awesome stuff.  :-)&lt;br /&gt;&lt;br /&gt;In other news (I haven't updated in a while here - as always, see the &lt;a href="http://fourhorsehaven.blogspot.com"&gt;Four Horse Haven&lt;/a&gt; site for news) - work is going well, I'm now a team lead of around 10 people (my team keeps getting bigger).  :-) &lt;br /&gt;&lt;br /&gt;Working around the house, recently did a few minor projects that make a big difference.&lt;br /&gt;&lt;br /&gt;I made a collared shirt, that turned out quite well.&lt;br /&gt;&lt;br /&gt;The dogs and goats are happy and healthy.&lt;br /&gt;&lt;br /&gt;Life is pretty good, all around.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-4287559633800730331?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/4287559633800730331/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=4287559633800730331' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/4287559633800730331'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/4287559633800730331'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2008/02/family-stuff.html' title='Family Stuff'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-6860314704583036373</id><published>2008-01-11T21:23:00.000-05:00</published><updated>2008-01-11T21:24:31.083-05:00</updated><title type='text'>Calendering</title><content type='html'>Vaguely amusing:&lt;br /&gt;&lt;br /&gt;&lt;iframe src="http://www.google.com/calendar/hosted/svincent.com/embed?showTitle=0&amp;amp;showTabs=0&amp;amp;showCalendars=0&amp;amp;mode=WEEK&amp;amp;height=400&amp;amp;wkst=1&amp;amp;bgcolor=%23ffffff&amp;amp;src=svincent%40svincent.com&amp;amp;color=%232952A3&amp;amp;src=canadian__en%40holiday.calendar.google.com&amp;amp;color=%237A367A&amp;amp;src=ht3jlfaac5lfd6263ulfh4tql8%40group.calendar.google.com&amp;amp;color=%231B887A&amp;amp;src=p%23weather%40group.v.calendar.google.com&amp;amp;color=%23A32929&amp;amp;ctz=America%2FToronto" style="border-width: 0pt;" frameborder="0" height="400" scrolling="no" width="600"&gt;&lt;/iframe&gt;&lt;br /&gt;&lt;br /&gt;Technology is kindof fun.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-6860314704583036373?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/6860314704583036373/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=6860314704583036373' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6860314704583036373'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6860314704583036373'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2008/01/calendering.html' title='Calendering'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-3171659146294258389</id><published>2007-12-27T22:05:00.000-05:00</published><updated>2007-12-27T22:07:55.717-05:00</updated><title type='text'>My typing speed</title><content type='html'>&lt;a href="http://speedtest.10-fast-fingers.com/" style="background: transparent url(http://speedtest.10-fast-fingers.com/img/badge1.png) no-repeat scroll 0% 50%; float: right; display: block; width: 300px; height: 100px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial; padding-top: 50px; padding-left: 60px; color: rgb(0, 153, 51); font-weight: bold; text-decoration: none; font-family: Times New Roman,Arial,serif; font-size: 40px;"&gt;79 words&lt;/a&gt;&lt;p&gt;&lt;a href="http://10-fast-fingers.com/"&gt;Touch Typing online&lt;/a&gt;&lt;/p&gt;I don't normally do these things, but this&lt;br /&gt;one is kindof fun.  :-)&lt;br /&gt;&lt;br /&gt;I never knew my typing speed until now -- its kindof cool.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-3171659146294258389?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/3171659146294258389/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=3171659146294258389' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/3171659146294258389'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/3171659146294258389'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/12/79-words-touch-typing-online-i-dont.html' title='My typing speed'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-8738261738039774413</id><published>2007-12-22T10:07:00.000-05:00</published><updated>2007-12-22T19:24:15.198-05:00</updated><title type='text'>BMI, Fitness, and Mortality</title><content type='html'>I know I've blabbed about this before, but I've been thinking about it again, and learned some new things.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Obesity isn't a significant health risk.&lt;/span&gt;  People think it is: you keep hearing "lose weight and you'll be healthier".  But this doesn't stand up to scrutiny.&lt;br /&gt;&lt;br /&gt;Turns out, if you look at any actual study (look &lt;a href="http://www.nature.com/ijo/journal/v24/n11/abs/0801426a.html"&gt;here&lt;/a&gt;, &lt;a href="http://www.ncbi.nlm.nih.gov/sites/entrez?db=pubmed&amp;amp;uid=16217001&amp;amp;cmd=showdetailview&amp;amp;indexed=google"&gt;here&lt;/a&gt;, &lt;a href="http://www.obesityresearch.org/cgi/reprint/10/6/417.pdf"&gt;here&lt;/a&gt;, or &lt;a href="http://jama.ama-assn.org/cgi/content/short/298/21/2507"&gt;here&lt;/a&gt;; or do your own search for "&lt;a href="http://www.google.com/search?q=bmi+fitness+mortality"&gt;BMI fitness mortality&lt;/a&gt;"), obesity isn't the problem at all: fitness levels are.&lt;br /&gt;&lt;br /&gt;Where does the confusion come from?  It's a basic stats error.  There is certainly a &lt;a href="http://en.wikipedia.org/wiki/Correlation_does_not_imply_causation"&gt;CORRELATION&lt;/a&gt; between a high BMI and mortality rates, but a high BMI doesn't CAUSE health problems.&lt;br /&gt;&lt;br /&gt;To put it another way, &lt;span style="font-weight: bold;"&gt;if you're overweight and fit, you don't have a problem&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;I tried and failed, but if somebody could find any study (serious study, with more than a thousand participants) that contradicts this argument, I would LOVE to see it.&lt;br /&gt;&lt;br /&gt;This all makes me mad, because this 'overweight=unhealthy' argument is used to justify a lot of social injustices, and it's bullshit.&lt;br /&gt;&lt;br /&gt;Nuff said.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-8738261738039774413?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/8738261738039774413/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=8738261738039774413' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/8738261738039774413'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/8738261738039774413'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/12/bmi-fitness-and-mortality.html' title='BMI, Fitness, and Mortality'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-3918550813380517872</id><published>2007-08-25T15:09:00.000-04:00</published><updated>2007-08-25T15:17:51.277-04:00</updated><title type='text'>The past while...</title><content type='html'>Wow - almost 2 months since the last update.  Well, update &lt;span style="font-style: italic;"&gt;here&lt;/span&gt;, anyway...&lt;br /&gt;&lt;br /&gt;Most of the updates these days are over on the &lt;a href="http://fourhorsehaven.blogspot.com/"&gt;Four Horse Haven&lt;/a&gt; site - pretty much our whole lives are wrapped into this place now, and the few things that aren't are usually posted there anyway.  :-)&lt;br /&gt;&lt;br /&gt;We've settled in well at this new place.  The dogs love it here, the job is wonderful, and it's nice to be able to look out your backyard and see fields and mountains, rather than other backyards.  :-)  We're clearing away land and looking into fencing options next.&lt;br /&gt;&lt;br /&gt;Work is fun -- I've been there nearly 4 months.  Not long after my 3 month probation was up, I got a sort of promotion: I'm now a team lead of a team of 4 people (including myself).  It was really gratifying, I'm enjoying the role and think I can make a difference there.&lt;br /&gt;&lt;br /&gt;Lisa and Jessica went away this weekend to Toronto, to drop Jessica off at Ryerson for her first year at university.  Scary, sad, happy, and exciting all at the same time.&lt;br /&gt;&lt;br /&gt;As a result, I have a whole bunch of free time: I'm staying here looking after the dogs.  To make things more interesting, it's raining off and on, so my default activity (clearing land with the grass blade on the weedwhacker) is off the agenda.&lt;br /&gt;&lt;br /&gt;So I've done most of the things I've wanted to do for a long time off my list, and it's not even 3:30 on Saturday yet.  :-)  I'm not used to having so much free time.  It's actually nice -- I might take a nap later -- but I'm not sure I'd want it every day like this.  :-)&lt;br /&gt;&lt;br /&gt;Anyway, as time goes forward, posts will still probably be focused on the house blog -- I just thought I'd pop in here and make a quick update.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-3918550813380517872?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/3918550813380517872/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=3918550813380517872' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/3918550813380517872'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/3918550813380517872'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/08/past-while.html' title='The past while...'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-9200532686458510707</id><published>2007-07-08T20:47:00.000-04:00</published><updated>2007-07-08T20:49:13.102-04:00</updated><title type='text'>Four Horse Haven</title><content type='html'>We're moved into our new house, the old house is closed, and life is pretty sweet right now.&lt;br /&gt;&lt;br /&gt;There's a new blog for the new house at:&lt;br /&gt;&lt;br /&gt;    &lt;a href="http://fourhorsehaven.blogspot.com/"&gt;http://fourhorsehaven.blogspot.com/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;We're slowly getting settled in.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-9200532686458510707?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/9200532686458510707/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=9200532686458510707' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/9200532686458510707'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/9200532686458510707'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/07/four-horse-haven.html' title='Four Horse Haven'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-124653200767609335</id><published>2007-06-26T20:29:00.000-04:00</published><updated>2007-06-26T20:34:24.786-04:00</updated><title type='text'>And... the weekend's done.</title><content type='html'>Lisa went back to Kitchener this morning.  :-(&lt;br /&gt;&lt;br /&gt;But only another few days, and it's Moving Day!  I'm flying back on Friday, and I think the truck is coming out Saturday or Sunday.  Yay!  I'll get to sleep on a real mattress out here, and we'll be moved into our new house.  A Huge Relief, I'll say.&lt;br /&gt;&lt;br /&gt;Tonight I popped back to the nasty basement to do some laundry and pack up a few last things.  There's still a carload of stuff to take out of there, but it's all pretty much packed up.&lt;br /&gt;&lt;br /&gt;HOT today.  Walking to the basement from work was brutal, under the beating sun.  Laundry took forever, but I ate while I was doing it, and read my book (just finished &lt;span style="font-style: italic;"&gt;Deception Point &lt;span style="font-weight: bold;"&gt;&lt;span style="font-style: italic;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;span style="font-style: italic;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;by Dan Brown.  Excellent book).&lt;br /&gt;&lt;br /&gt;The taxi back here was from DJ's Taxi, and it was a much better experience than last week.  Rather than waiting an hour and a half, the guy was there in 10 minutes, and was really fun.  Plus the fare was cheaper than West Way.  Go figure.  :-)&lt;br /&gt;&lt;br /&gt;One more week... one more week... one more week...  :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-124653200767609335?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/124653200767609335/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=124653200767609335' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/124653200767609335'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/124653200767609335'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/06/and-weekends-done.html' title='And... the weekend&apos;s done.'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-6917731640631610827</id><published>2007-06-22T09:14:00.001-04:00</published><updated>2007-06-22T09:14:33.922-04:00</updated><title type='text'>YAY YAY YAY YAY!!</title><content type='html'>Lisa's coming here today!&lt;br /&gt;&lt;br /&gt;Could it &lt;span style="font-style: italic;"&gt;be&lt;/span&gt; any awesome-er!?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-6917731640631610827?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/6917731640631610827/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=6917731640631610827' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6917731640631610827'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6917731640631610827'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/06/yay-yay-yay-yay.html' title='YAY YAY YAY YAY!!'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-5638056102214719233</id><published>2007-06-21T18:33:00.000-04:00</published><updated>2007-06-21T18:49:39.377-04:00</updated><title type='text'>Wow.</title><content type='html'>It's been quite the weekend / week, &lt;span style="font-style: italic;"&gt;again&lt;/span&gt;.  :-)&lt;br /&gt;&lt;br /&gt;As I said, I went back to Kitchener on Friday night: it's a real quick flight.  We went over to Lisa's parents house for supper on Saturday night, and did some work around the house.&lt;br /&gt;&lt;br /&gt;On Sunday we drove back to Four Horse Haven.&lt;br /&gt;&lt;br /&gt;This place is incredible.  :-)&lt;br /&gt;&lt;br /&gt;Anyway, we start to work on the place, cutting up the carpet in the living room.  Nasty stinky crusty carpet.  I'm guessing at least 50 years old.  Underneath it is this faux laminate vinyl.  We figure that it's glued down.  However, once we get the carpet up, we discover that the vinyl is just nailed down.  Around the edge.  Underneath that was old linoleum, backed with horse hair padding.  And under that, unglued, untouched barn board floor.  I love the family who owned this house.  :-)&lt;br /&gt;&lt;br /&gt;That, of course, took a lot of time, over a few days.&lt;br /&gt;&lt;br /&gt;Also, the applicances came: GE Profile stainless steel range and bottom-freezer french door fridge, and GE front-load washer and dryer.  The dryer wouldn't fit, so we now have a working washer but not dryer.  We've got to remove/move the sink in the laundry room, and all should be well.&lt;br /&gt;&lt;br /&gt;Looked into new toilets.  I think we're getting new Toto toilets put in throughout the house.  We've ordered them, but they've got to be ordered (they had them in stock, but their in-stock models were damaged).&lt;br /&gt;&lt;br /&gt;Lisa went back on Wednesday - she filled the freezer here at the house with frozen dinners for me.  I just ate one.  Mmmm.  Delicious.  :-)&lt;br /&gt;&lt;br /&gt;Lisa found this: we figure that the house is the Gothic Cottage style.  Apparently there were plans in the&lt;span style="font-style: italic;"&gt; Canadian Farmer&lt;/span&gt; magazine in 1865, and there were thousands built.  That's awesome.  I want those plans.  :-)&lt;br /&gt;      http://www.ontarioarchitecture.com/gothicottage.htm&lt;br /&gt;&lt;br /&gt;Lots of cleaning, lots of work.&lt;br /&gt;&lt;br /&gt;Fireflies every night, surrounding the house.&lt;br /&gt;&lt;br /&gt;3 playful groundhogs that live under our Garage Used for Storage Needs Some Work, that run and hide whenever they notice us.&lt;br /&gt;&lt;br /&gt;A lone deer, loping through the tall grass along our back fence line.&lt;br /&gt;&lt;br /&gt;Cows visible from our windows.&lt;br /&gt;&lt;br /&gt;Alpacas down two houses.&lt;br /&gt;&lt;br /&gt;A view that goes on for miles of fields, straight to the mountains.&lt;br /&gt;&lt;br /&gt;Huge mature trees.&lt;br /&gt;&lt;br /&gt;Fresh air, beautiful breeze...&lt;br /&gt;&lt;br /&gt;And SPACE.  Tons and tons of SPACE.&lt;br /&gt;&lt;br /&gt;Four Horse Haven, indeed.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-5638056102214719233?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/5638056102214719233/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=5638056102214719233' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/5638056102214719233'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/5638056102214719233'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/06/wow.html' title='Wow.'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-4146176209303517864</id><published>2007-06-13T18:21:00.001-04:00</published><updated>2007-06-13T21:30:28.002-04:00</updated><title type='text'>Four Horse Haven - Updated!</title><content type='html'>Wow, what a weekend.&lt;br /&gt;&lt;br /&gt;Lisa arrived here on Sunday as planned, and we went on our walk through of the new house.&lt;br /&gt;&lt;br /&gt;The guy had cleaned up everything: the house was empty, all the old dead farm equipment and cars were removed, the lawn was mowed, the floors vacuumed.  There was a great big dumpster in the yard filled with garbage.  It was a nice treat.&lt;br /&gt;&lt;br /&gt;We went on our walk through with our agent, and another couple plus father showed up to take a look at the hot tub.  We don't want it, they want it, they're willing (maybe) to chop it up and remove it from the house to get a hot tub for cheap.  Works out good for everybody.  They think it's possible, and will get back to us after we close in Kitchener.&lt;br /&gt;&lt;br /&gt;The house is wonderful: it's remarkable how much it reminds me of Villa Villatrolla on Clyde Road in Cambridge.  Same old house, same smell.  Similar road and distance from it.  Similar fencing around.  Even the carpet/lino/bare floor ratios are about the same.  We loved that house.  I love this one, too.  :-)&lt;br /&gt;&lt;br /&gt;We took some pictures... I'll offload mine and post them.  Mostly of the yard and outside of the house.&lt;br /&gt;&lt;br /&gt;:-)  It's going to be a fun house to decorate for Hallowe'en.&lt;br /&gt;&lt;br /&gt;That night, we went to Mexicala Rosa's for supper -- I love that Kanata has mexican food!  :-)  Then we stopped in at Home Depot and looked at fencing and flooring and lighting, and finally went back to my nasty basement to go to sleep.  We watched episode 1 of the next season of Stargate that Lisa brought.&lt;br /&gt;&lt;br /&gt;Oh - she also brought me the latest Martha Stewart, a Lee Valley catalog, and a book: Horsekeeping on Small Acrages - that looks really good.&lt;br /&gt;&lt;br /&gt;The next morning (Monday), I went to work, and at noon we went off to the lawyer to sign hundreds of papers that ultimately mean that we're going to buy a house.  :-)  We weren't that happy with the lawyer we used, but in the end, it seems to have worked out ok.&lt;br /&gt;&lt;br /&gt;We ate in the food court in the lawyer's office - chinese food, that wasn't too bad, really, and then I went back to work.&lt;br /&gt;&lt;br /&gt;While I was at work on Monday, Lisa was busy too - she got all new GE appliances ordered: stainless steel fridge (large, freezer on the bottom, french doors) and stove (flat top, convection, self clean), and front load washer/dryer.  Plus a new matching microwave.  They're coming next Tuesday, I think.&lt;br /&gt;&lt;br /&gt;Plus she investigated fencing and lighting and all sorts of things for the new house.&lt;br /&gt;&lt;br /&gt;&lt;goes&gt;&lt;br /&gt;&lt;br /&gt;That night we went to Carleton Place, and the Eating Place - our favorite place to eat.  :-)  I had the pizza, Lisa had the hot turkey sandwich.  Delicious, all around.&lt;br /&gt;&lt;br /&gt;The &lt;span style="font-style: italic;"&gt;next&lt;/span&gt; day (Tuesday), I went to work, and Lisa dealt with the lawyers all day, doing her heroic best to get the various involved lawyers to work together and get closing done on time.  And she squeaked it out -- she got the keys at 5:00pm.&lt;br /&gt;&lt;br /&gt;We went out to eat at Baton Rouge, and went out to the house that evening.  The idea was to change the locks and sleep over.&lt;br /&gt;&lt;br /&gt;When we got there, there was this note:&lt;br /&gt;&lt;/goes&gt;&lt;div style="border: 1px solid black; margin: 0.5in; padding: 0.25in; background-color: rgb(250, 250, 250);"&gt;June 12, 2007&lt;br /&gt;&lt;br /&gt;Dear Lisa &amp; Shawn,&lt;br /&gt;&lt;br /&gt;Welcome to your new home! I thought you would like to know a little bit about it.&lt;br /&gt;&lt;br /&gt;This house was built more than 140 years ago on a foundation 1/4 of a mile or so southeast of where it currently sits. It was moved here in 1950 by my father, using a team of 4 work horses. It is sided in red brick and originally had a porch across the front and a summer kitchen in the back. In 1994 I had all of the renovations done that you see today including the bathroom and a new well was drilled.&lt;br /&gt;&lt;br /&gt;We have owned this home and land all this time. If the walls could speak, they would tell you many happy and sad stories of generations of our family. It has been very difficult for me to leave this home, but it is time to move on. My wish is that it will be a happy haven for you both, and that you will spend many joyful and productive years creating your own stories for these walls to record.&lt;br /&gt;&lt;/div&gt;And didn't &lt;span style="font-style: italic;"&gt;that&lt;/span&gt; make us teary.  :-)&lt;br /&gt;&lt;br /&gt;Setting to take the back door deadbolt out, we immediately ran into problems.  There weren't any screws.  :-)  You get the collar around the bolt taken off, and there's just these two tiny holes, one on either side of the bolt.&lt;br /&gt;&lt;br /&gt;Lisa and her internet skillz to the rescue: turns out this is a Lori-style deadbolt, and you need to use a 5/64 allen key to take it out.&lt;br /&gt;&lt;br /&gt;So, back to Home Depot to buy an allen key (because, really, who has one of those!?), and back to the house to fiddle &lt;span style="font-style: italic;"&gt;forever&lt;/span&gt; trying to get this to work.  After probably a half an hour of failing to take it off with the key, I finally worked out the trick, and got the back lock off.  The new one was easy to install, and life was good.&lt;br /&gt;&lt;br /&gt;The front door one was hardly any trouble at all.&lt;br /&gt;&lt;br /&gt;During this, it got very dark outside (it was probably 10:30 or maybe later by the time we were done the locks).  And what did we see in our yard but thousands and thousands of fireflies - all through our yard and the surrounding fields.  It was breathtaking.&lt;br /&gt;&lt;br /&gt;There's so many bugs (all sorts - big ones, little ones, fireflies, june bugs, deer flies, mosquitoes, strange bugs I've never seen before) around that house.  They're attracted to the porch light, and come in the house.  I'm not sure if there's any way of dealing with that...  probably not.  It's bizzare, though.&lt;br /&gt;&lt;br /&gt;Then we went back to my troll basement to get bedding to sleep over.  We got back to the house, only to discover that I'd (stupidly) forgotten the power adapters to re-inflate the Coleman mattresses.  SO, back to the troll basement, picked up the adapters, then a quick stop at Burger King for food - only to discover they're not open at 11:30 at night - so off to McDonald's because by now we were STARVING.  :-)&lt;br /&gt;&lt;br /&gt;Then we showered (it was bloody hot yesterday, and humid.  The A/C at the new house, though weak, and the shower were &lt;span style="font-style: italic;"&gt;extremely&lt;/span&gt; welcome luxuries).&lt;br /&gt;&lt;br /&gt;Finally, we went to bed in our new house.  :-)  We're not homeless any more!  Yay!&lt;br /&gt;&lt;br /&gt;I love it.&lt;br /&gt;&lt;br /&gt;Then, this morning, we dropped some stuff back here at my troll basement (having no car, I can't really live at the new place until we're moved in for real later this month -- it's just a bit too far), and I went to work, and Lisa made the 6 hour drive back to Kitchener.  She got back safe and sound: I Skyped with her earlier this evening.&lt;br /&gt;&lt;br /&gt;Yay yay!  It's the beginning of the end, now.  Friday evening I fly back to Kitchener for Father's Day and final house prep, Lisa comes back with me by car later in the weekend, and stays a couple days or so to receive the new appliances.&lt;br /&gt;&lt;br /&gt;The next weekend she comes back, and it's our big weekend to do work in the new house.  I'm not sure what we'll all do, but for sure it'll involve dog fencing of some description, and probably lots of cleaning and work (probably including some critical electrical work -- there's some fixtures that really need changing right away -- maybe including ripping up carpet and stuff, but that depends on what we decide to do).&lt;br /&gt;&lt;br /&gt;Then the &lt;span style="font-style: italic;"&gt;next&lt;/span&gt; weekend is our big moving weekend, with the truck and Lisa's parent coming up to help, and Jessica and the dogs and... and &lt;span style="font-style: italic;"&gt;everything&lt;/span&gt;.&lt;br /&gt;&lt;br /&gt;And then we're moved.  But the time will go by quickly, because we're busy, and Lisa and I can be together quite a bit more than we have been for this whole saga since I've moved out here.&lt;br /&gt;&lt;br /&gt;Big fun.  It's VERY nice to be on the other end of this.&lt;br /&gt;&lt;br /&gt;Oh: and the house's name?  We've had Villa Villatrolla, Casa del Arbre, and this one is:&lt;br /&gt;&lt;br /&gt;&lt;div style="margin-left: 1in;"&gt;Four Horse Haven.&lt;/div&gt;&lt;br /&gt;It just fits.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-4146176209303517864?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/4146176209303517864/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=4146176209303517864' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/4146176209303517864'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/4146176209303517864'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/06/four-horses-haven.html' title='Four Horse Haven - Updated!'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-7290936780035705558</id><published>2007-06-10T12:51:00.001-04:00</published><updated>2007-06-10T12:54:50.555-04:00</updated><title type='text'>Oh yeah...</title><content type='html'>I forgot this til now, but it's awesome..&lt;br /&gt;&lt;br /&gt;We have confirmed that Rogers High Speed works at the new place, so that's another bonus.  :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-7290936780035705558?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/7290936780035705558/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=7290936780035705558' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/7290936780035705558'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/7290936780035705558'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/06/oh-yeah.html' title='Oh yeah...'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-6851677965171203901</id><published>2007-06-10T12:31:00.001-04:00</published><updated>2007-06-10T12:49:58.389-04:00</updated><title type='text'>Lisa's on her way!</title><content type='html'>I got a text message from Lisa, apparently she'll be here at around a quarter after 1.  :-)  Yay!&lt;br /&gt;&lt;br /&gt;We've got our walkthrough this afternoon at 5, where a couple that may want to take the hot tub will come along.  I'm looking forward to seeing the house again.  I think we may take some more pictures, too, so stay tuned for that.&lt;br /&gt;&lt;br /&gt;Then tomorrow, we've got our closing meeting with the lawyer: the only known bump, a lack of septic records, was dealt with last week.&lt;br /&gt;&lt;br /&gt;Then Tuesday, we close, get the keys, and own our new house!  Very exciting.  :-)  We've already got some supplies purchased for our immediately pressing home reno projects.&lt;br /&gt;&lt;br /&gt;I'm trying to figure out what kind of light fixtures would suit a house of this era, while still being something that we really like.  A lot of old-style fixtures are either impractical, or are very expensive, or look a lot like 70's light fixtures, which both of us hate.  Decisions decisions.  :-)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Yesterday I went out to Centrum, ate a nice steak at Jack Astors (which is a pretty boring Ottawa place to eat, but I've eaten at most of the Centrum places now already, and didn't want to eat someplace that Lisa would want to eat with me when she's here the next couple of days). &lt;br /&gt;&lt;br /&gt;I bought another book to read: Dan Brown's &lt;span style="font-style: italic;"&gt;Deception Point&lt;/span&gt;, which the cashier at Chapters said was his best book, and so far has been excellent.  I like Dan Brown.&lt;br /&gt;&lt;br /&gt;Then I was going to go to a movie, but the only thing I hadn't yet seen was Oceans 13, which I dunno... is maybe not worth the $12.  So I went to Rogers Video instead, and got three movies for $9: &lt;a href="http://www.imdb.com/title/tt0258463/"&gt;&lt;span style="font-style: italic;"&gt;The Bourne Identity&lt;/span&gt;&lt;/a&gt;, &lt;a href="http://www.imdb.com/title/tt0311113/"&gt;&lt;span style="font-style: italic;"&gt;Master and Commander: the Far Side of the World&lt;/span&gt;&lt;/a&gt;, and &lt;a href="http://www.imdb.com/title/tt0082971/"&gt;&lt;span style="font-style: italic;"&gt;Indiana Jones and the Raiders of the Lost Ark&lt;/span&gt;&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Yesterday I watched &lt;span style="font-style: italic;"&gt;Bourne Identity&lt;/span&gt; -- I've meant to watch this film for years, and it was excellent, like I hoped.&lt;br /&gt;&lt;br /&gt;Last night I started watching &lt;span style="font-style: italic;"&gt;Master and Commander&lt;/span&gt;, and it got late and I got tired.  So I finished it this morning.  Meh.  I enjoyed it, but more as a documentary of shipboard life and potential content for gaming sessions than as an entertaining movie in its own right.  It just didn't really hold my interest.&lt;br /&gt;&lt;br /&gt;I still have &lt;span style="font-style: italic;"&gt;Indiana Jones&lt;/span&gt; to watch.  We'll see if I get to it before I have to return them.  Plus Lisa is brining me 2 more &lt;span style="font-style: italic;"&gt;Star Gate SG-1&lt;/span&gt;'s to watch, so I might be saturated for video content.  :-)&lt;br /&gt;&lt;br /&gt;After I finished the movie this morning, I futzed around, and finally pulled out some miniatures to paint.  I got a coat of paint on a few of them -- pretty fun.  I'll post some pics here once I get some painted.  I haven't painted in a long time, and I was never &lt;span style="font-style: italic;"&gt;great&lt;/span&gt;, and I fear I'm even worse now.  :-)  Plus a lot of my paint is a bit spoiled, which makes it harder to do a nice job.&lt;br /&gt;&lt;br /&gt;I need to find some different paint.  The GW paints I've got don't seal properly without a lot of fiddling around, and so the paint doesn't last like I think it should.  I should look at Fandom II and see what they have.&lt;br /&gt;&lt;br /&gt;I especially enjoyed painting the base coat on a couple of dollar store dinosaurs I primed a few months ago.  :-)  I think they'll be fun to paint.&lt;br /&gt;&lt;br /&gt;Half an hour until Lisa arrives!  Yay!  :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-6851677965171203901?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/6851677965171203901/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=6851677965171203901' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6851677965171203901'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6851677965171203901'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/06/lisas-on-her-way.html' title='Lisa&apos;s on her way!'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-2768354549913864632</id><published>2007-06-09T12:17:00.001-04:00</published><updated>2007-06-09T12:27:28.807-04:00</updated><title type='text'>My Troll Home.</title><content type='html'>&lt;table style="float: right; width: 194px;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="background: transparent url(http://picasaweb.google.com/f/img/transparent_album_background.gif) no-repeat scroll left center; height: 194px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" align="center"&gt;&lt;a href="http://picasaweb.google.com/shawn.vincent/TheTrollishBasement"&gt;&lt;img src="http://lh5.google.com/image/shawn.vincent/RmrLuv91r3E/AAAAAAAAAvI/LYozhSUeAJ0/s160-c/TheTrollishBasement.jpg" style="margin: 1px 0pt 0pt 4px;" height="160" width="160" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="text-align: center; font-family: arial,sans-serif; font-size: 11px;"&gt;&lt;a href="http://picasaweb.google.com/shawn.vincent/TheTrollishBasement" style="color: rgb(77, 77, 77); font-weight: bold; text-decoration: none;"&gt;The Trollish Basement&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;So I took some pictures of my trollish basement for all to enjoy.&lt;br /&gt;&lt;br /&gt;Now you can see what I mean when I talk about stuff.  Nearly all of my blog posts are written in this room these days.&lt;br /&gt;&lt;br /&gt;Looking at the pictures of food has made me hungry.  :-)&lt;br /&gt;&lt;br /&gt;I think I'll put away the rest of my laundry and go out to eat today.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-2768354549913864632?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/2768354549913864632/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=2768354549913864632' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/2768354549913864632'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/2768354549913864632'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/06/my-troll-home.html' title='My Troll Home.'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-6365273537115073729</id><published>2007-06-09T11:05:00.000-04:00</published><updated>2007-06-09T11:13:49.288-04:00</updated><title type='text'>My day so far </title><content type='html'>Today was the day to clean up and organize my room in preparation for Lisa coming.  :-)  I don't want her to think I live in squalor.&lt;br /&gt;&lt;br /&gt;So I:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;did my outstanding laundry (including my sheets!)&lt;/li&gt;&lt;li&gt;vacuumed using the awkward and heavy central vac&lt;/li&gt;&lt;li&gt;took out my garbage&lt;/li&gt;&lt;li&gt;washed all my dishes*&lt;/li&gt;&lt;li&gt;went through my Food Box and reorganized everything in it&lt;/li&gt;&lt;li&gt;put away my clean laundry nicely&lt;/li&gt;&lt;li&gt;organized all my Stuff, putting it in tidy places.&lt;/li&gt;&lt;/ul&gt;My room almost looks habitable now.&lt;br /&gt;&lt;br /&gt;*this was an adventure.  I took them upstairs to the kitchen to wash them.  At the end, I turned off the water and heard -- water noises.  I looked down, and lots of water was coming out of the cupboard beneath the sink.&lt;br /&gt;&lt;br /&gt;Leak.&lt;br /&gt;&lt;br /&gt;So, I got paper towels, cleaned up the mess, and then spent a long time tracing down the leak.  Turns out the seal on the handheld spray device is gone, so when the water is turned on, it leaks like crazy.&lt;br /&gt;&lt;br /&gt;So I cleaned it all up, put a note on the sink saying not to use it, and my job there was done.  :-)  I'm glad it's not my house.  The landlord can deal with it.&lt;br /&gt;&lt;br /&gt;Finally, I'm mostly done.  It's only 11:10, so I made pretty good time.  I started at around 10:00, after I talked with Lisa and took a shower.  The place was due for a cleanup, and it looks pretty good now (well, as good as a place can be without furniture, everything stored in random boxes, etc.&lt;br /&gt;&lt;br /&gt;Actually, now would be a pretty good time to take some photographs.  :-)  I'll stage the place, and then do that next.  What fun!  :-)  I'm pretty sure it'll be entertaining to look back at photos of this place in years to come.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-6365273537115073729?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/6365273537115073729/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=6365273537115073729' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6365273537115073729'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6365273537115073729'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/06/my-day-so-far.html' title='My day so far &lt;pant pant&gt;'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-5479803856992481325</id><published>2007-06-09T07:47:00.000-04:00</published><updated>2007-06-09T11:14:39.700-04:00</updated><title type='text'>So I can't sleep in to save my life...</title><content type='html'>So I'm tired all the time, because I'm not getting enough sleep.&lt;br /&gt;&lt;br /&gt;So it's Saturday, and I sleep in for like maybe 15 minutes.  :-)  And I can't get back to sleep.  Bah!&lt;br /&gt;&lt;br /&gt;I could still get to work on time if I hurried.&lt;br /&gt;&lt;br /&gt;OTOH, I'm trying out &lt;a href="http://www.caminobrowser.org/"&gt;Camino&lt;/a&gt;.  I dunno.  It uses Mac native controls, but the next Firefox is supposed to too...  The chrome, I don't know if I like more or less than Firefox.&lt;br /&gt;&lt;br /&gt;I think I'll probably stick with Firefox.  Nicer icon, too.  :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-5479803856992481325?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/5479803856992481325/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=5479803856992481325' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/5479803856992481325'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/5479803856992481325'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/06/so-i-cant-sleep-in-to-save-my-life.html' title='So I can&apos;t sleep in to save my life...'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-8611425778195007193</id><published>2007-06-08T19:42:00.001-04:00</published><updated>2007-06-08T19:43:19.067-04:00</updated><title type='text'>Thunderstorm!</title><content type='html'>The week is done, and to celebrate, there's a raging thunderstorm outside!&lt;br /&gt;&lt;br /&gt;It rolled in shortly after I got home (thank god I got home before it did)  :-)&lt;br /&gt;&lt;br /&gt;I'm investigating test frameworks (JUnit, TestNG).  Big Fun.  :-)  Unit testing is a good idea.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-8611425778195007193?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/8611425778195007193/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=8611425778195007193' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/8611425778195007193'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/8611425778195007193'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/06/thunderstorm.html' title='Thunderstorm!'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-1772401700798897508</id><published>2007-06-06T21:35:00.001-04:00</published><updated>2007-06-06T21:44:44.655-04:00</updated><title type='text'>Tis now the very witching hour of night...</title><content type='html'>&lt;span style="font-style: italic;"&gt;...when churchyards yawn,&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;and Hell itself breathes forth contagion to this world!&lt;br /&gt;Now could I drink hot blood,&lt;br /&gt;and do such bitter things that the day would quake to look upon.&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;More Byzantine stuff at work.  I'm using Eclipse lots at this job, which is kindof neat.  It's really handy for finding out 'how many points in my code modify this variable?', and such like that.&lt;br /&gt;&lt;br /&gt;Of course, I also have Emacs running, for when I want to do serious editing.  :-)&lt;br /&gt;&lt;br /&gt;Watched &lt;span style="font-style: italic;"&gt;Batman Begins&lt;/span&gt; tonight for the first time.  Excellent movie.  Very exciting, funny, and a suspenseful plot.  I liked.&lt;br /&gt;&lt;br /&gt;Did my laundry also tonight, so I'll have clean clothes for the morrow.  Yay me.&lt;br /&gt;&lt;br /&gt;2 more days in the work week, 3 more days until I see my wonderful wife again.  It can't come quick enough.  :-)&lt;br /&gt;&lt;br /&gt;4 more days until the lawyer meeting, 5 more days until we have a new house.  It's actually happening.  It's almost hard to believe.  House purchases go on so long, and there are so many steps, that you almost stop believing that you're going to get a house at the end of it.  But in 5 days, a house will be ours.  Relief.&lt;br /&gt;&lt;br /&gt;Funny, though.  We're going to have a house in less than a week, I have a new job, I live in a new city, my life is entirely different.  And all I can think about, the only thing I care about, is this Sunday, when I get to see Lisa again.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-1772401700798897508?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/1772401700798897508/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=1772401700798897508' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/1772401700798897508'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/1772401700798897508'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/06/tis-now-very-witching-hour-of-night.html' title='Tis now the very witching hour of night...'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-3600984186063620019</id><published>2007-06-05T18:42:00.000-04:00</published><updated>2007-06-05T18:51:19.580-04:00</updated><title type='text'>Living in Wonderful World.</title><content type='html'>&lt;em&gt;One fine day, you’ll look at me,&lt;br /&gt;and you will know our love was meant to be.&lt;/em&gt;&lt;br /&gt;&lt;br /&gt;Another fine day in wonderful-world.  :-)&lt;br /&gt;&lt;br /&gt;It wasn't bad.  It was just lightly sprinkling on the way in to work, a little harder on the way home, but nothing my light shell that I keep in my backpack couldn't handle.&lt;br /&gt;&lt;br /&gt;Work was fun: I did more Byzantian analysis.  We'll see where it takes us tomorrow.&lt;br /&gt;&lt;br /&gt;I ate at a new restaurant: the &lt;a href="http://ottawafoodies.com/vendor/51"&gt;Barley Mow&lt;/a&gt;, had rib steak and caesar salad.  It was ok -- but I was really hungry for steak and salad, so it was good.  :-)&lt;br /&gt;&lt;br /&gt;Then I got home and am planning to laze about for the rest of the night.  Probably watch &lt;span style="font-style: italic;"&gt;Stargate&lt;/span&gt;.  Maybe read some more.  That sort of thing.&lt;br /&gt;&lt;br /&gt;Door to door marketers just rang the bell upstairs.  At this moment, I'm glad I'm just a tenant here.  :-)  Or, as I like to call myself, Basement Troll.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-3600984186063620019?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/3600984186063620019/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=3600984186063620019' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/3600984186063620019'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/3600984186063620019'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/06/one-fine-day.html' title='Living in Wonderful World.'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-5580186494463468767</id><published>2007-06-04T20:32:00.000-04:00</published><updated>2007-06-04T20:39:33.154-04:00</updated><title type='text'>Pretty good day</title><content type='html'>Today is fun because it's exactly one week and one day until closing day, on the 12th.  Less than a week until Lisa's here again (next Sunday).&lt;br /&gt;&lt;br /&gt;I'm all excited.  :-)&lt;br /&gt;&lt;br /&gt;It was raining today, the first day it's been really raining for my walk to work.  I wore Lisa's drover coat and my Tilley hat, but the coat isn't as waterproof as it once was, and the wind was a bit exuberant, and I was a pretty wet rat by the time I got to work.  &lt;span style="font-style: italic;"&gt;C'est la vie.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;I spent the day at work reading through an incredibly Byzantine mechanism.  It's kindof neat, exploring the deep bowels of a system.  You learn &lt;span style="font-style: italic;"&gt;tons&lt;/span&gt; about it.  I have a few ideas about it now, and I'm looking forward to going in again tomorrow when I'm fresh.&lt;br /&gt;&lt;br /&gt;It wasn't so rainy on the way ome, although it's still raining now.  There's Yet Another Sens game on tonight.  I should be more excited, but I've never much liked hockey -- it's been a bit of a shock to enter Ottawa just now, when the Sens have a real shot at the Stanley Cup.  Go Sens Go!  Suffice to say, I'm not watching the game tonight.&lt;br /&gt;&lt;br /&gt;Eating Chef Boy-ar-dee again tonight.  ;-)  Kindof fun.  Going to watch &lt;span style="font-style: italic;"&gt;Stargate SG-1 &lt;/span&gt;again in a little while.&lt;br /&gt;&lt;br /&gt;Then, I guess, sleep.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-5580186494463468767?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/5580186494463468767/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=5580186494463468767' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/5580186494463468767'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/5580186494463468767'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/06/pretty-good-day.html' title='Pretty good day'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-4694534238685294241</id><published>2007-06-03T17:11:00.000-04:00</published><updated>2007-06-03T17:17:37.634-04:00</updated><title type='text'>Another good day.</title><content type='html'>Not nearly as long and hard as yesterday.  :-)&lt;br /&gt;&lt;br /&gt;I started out the day uncertain whether I was going to do &lt;span style="font-style: italic;"&gt;anything&lt;/span&gt;.  I mean, after yesterday I was pretty wiped.  But I felt pretty good this morning, and at around 10:30 or so, I started to feel antsy.  So I hopped a bus to Centrum.&lt;br /&gt;&lt;br /&gt;Down there, I wandered through Pier 1 Imports, Wal Mart, stopped for a pizza slice at Pizza Pizza (it was really good), and picked up some groceries at &lt;a href="http://www.loblaws.ca/"&gt;Blobblobs&lt;/a&gt; (some bread, some PB cookies, and some band aids, for those who care).&lt;br /&gt;&lt;br /&gt;Then it was only a quarter after one, so I went to the AMC 24 again and saw &lt;a href="http://www.imdb.com/title/tt0478311/"&gt;&lt;span style="font-style: italic;"&gt;Knocked Up&lt;/span&gt;&lt;/a&gt;.  Funny movie.  :-)  Worth seeing.&lt;br /&gt;&lt;br /&gt;Then I hopped the bus home.  Fun enough, and now it's a quarter after 5, the day passed, and I can get around to eating my box supper and watching &lt;span style="font-style: italic;"&gt;Stargate SG-1&lt;/span&gt;, and stuff.  :-)&lt;br /&gt;&lt;br /&gt;Not as exciting as yesterday, but who wants days like that every day!?  All in all, a fun enough weekend.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Now one more week, and we close on our house here!  Hooray!  Huzzah!  Hey Nonny Nonny!!  Very exciting.  ;-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-4694534238685294241?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/4694534238685294241/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=4694534238685294241' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/4694534238685294241'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/4694534238685294241'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/06/another-good-day.html' title='Another good day.'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-1560921591611609494</id><published>2007-06-03T11:32:00.000-04:00</published><updated>2007-06-03T11:34:05.851-04:00</updated><title type='text'>:-)  Of course...</title><content type='html'>"Secrets are gifts, so use them well."&lt;br /&gt;&lt;br /&gt;I saw no other references to it on the Internet at all...&lt;br /&gt;&lt;br /&gt;I assume I got it right...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-1560921591611609494?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/1560921591611609494/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=1560921591611609494' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/1560921591611609494'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/1560921591611609494'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/06/of-course.html' title=':-)  Of course...'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-420161620919291145</id><published>2007-06-02T17:01:00.000-04:00</published><updated>2007-06-02T17:43:43.330-04:00</updated><title type='text'>Dear God I'm not in my 20's anymore!!</title><content type='html'>&lt;table style="float: right; width: 194px;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="background: transparent url(http://picasaweb.google.com/f/img/transparent_album_background.gif) no-repeat scroll left center; height: 194px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" align="center"&gt;&lt;a href="http://picasaweb.google.com/shawn.vincent/DowntownOttawaAdventures"&gt;&lt;img src="http://lh5.google.com/image/shawn.vincent/RmHe4psejXE/AAAAAAAAAlo/IWgVCbGu8Kw/s160-c/DowntownOttawaAdventures.jpg" style="margin: 1px 0pt 0pt 4px;" height="160" width="160" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="text-align: center; font-family: arial,sans-serif; font-size: 11px;"&gt;&lt;a href="http://picasaweb.google.com/shawn.vincent/DowntownOttawaAdventures" style="color: rgb(77, 77, 77); font-weight: bold; text-decoration: none;"&gt;Downtown Ottawa Adventures&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;I feel like I'm going to die.  I don't think I'll get up off my bed until tomorrow.  Bodily functions will be challenging, I'll admit.&lt;br /&gt;&lt;br /&gt;Today I did everything.  :-)&lt;br /&gt;&lt;br /&gt;I figured out the bus stuff last night (no thanks to &lt;a href="http://www.octranspo.com/"&gt;OC Transpo's web site&lt;/a&gt;, which has got to be the most convoluted, useless, POS website I've seen), and it turns out it's pretty simple to get downtown on the bus from here.  Just take the 160 to Centrum (like I always do), and then from there, take the 96 downtown.&lt;br /&gt;&lt;br /&gt;Today, I woke up at around 7, dinked around for a bit on the Internet (caught up on my &lt;a href="http://del.icio.us/spvincent/comic"&gt;webcomics&lt;/a&gt;, mostly), and finally got out to the bus stop at around 8:30.  3 minutes before the bus showed up.  Which is pretty good, since I didn't bother checking the timetable.&lt;br /&gt;&lt;br /&gt;I got down to Centrum, and just transfered -- the 96 was pretty quick coming, and I figured I'd hit Centrum on the way back if I still felt like it.  Downtown sounded more fun.&lt;br /&gt;&lt;br /&gt;I had my trusty mapbook along, and I followed it as we went.  The 96 does a nice run, up the 416, along the Ottawa River for a ways, and then finally through downtown.  It runs through a couple of the most run-down neighborhoods I've seen yet in Ottawa, but that's not saying much: Ottawa is a very nice city.&lt;br /&gt;&lt;br /&gt;I got off the bus on the McKenzie King bridge, and walked down to the University of Ottawa, and wandered through their buildings for a while.&lt;br /&gt;&lt;br /&gt;On the way, I saw a bunch of people on a walk for breast cancer.  There's pictures in my album.&lt;br /&gt;&lt;br /&gt;I finally got down to where I &lt;span style="font-style: italic;"&gt;thought&lt;/span&gt; Fandom II was, but turns out the address information &lt;a href="http://www.rpg.net/news+reviews/reviews/rev_1229.html"&gt;here&lt;/a&gt; wasn't correct.  It's 162 Laurier Avenue WEST, not East.&lt;br /&gt;&lt;br /&gt;Wasn't so bad, it's not that far from one to the other.  I walked down there, but it was still only 10:30am, they don't open until 11:00.  So I walked down to Parliament Hill.  That's an unbelievable thing.  One day I'm going to go down there and do a guided tour of the buildings.  Beautiful.  Unbelievable.&lt;br /&gt;&lt;br /&gt;Finally, I walked back up to Fandom II.  By this time, my feet were getting pretty sore, and I was pretty hot.  I hoped Fandom II had air conditioning.  :-)  They did.&lt;br /&gt;&lt;br /&gt;Now, I know other people have talked about Fandom II on the Net before, and I've heard it's one of the best gaming stores in Canada.  But Dear God, it's a wonderful place.  It makes me excited about gaming again just going in there.&lt;br /&gt;&lt;br /&gt;Every game I've ever heard of or seen, was there on the shelves.  They had multiple copies of Ptolus.  Gurps.  Rifts.  Rolemaster.  Every 3rd party d20 supplement known to Man.  Stuff from the Miniatures Building Authority, which I'd never seen in person.  The guys not only knew what Fudge was, they had just sold out of Fudge dice.  HUGE miniature selection.  HUGE RPG selection.  And that's not including the fiction or board game stuff, which I didn't even get into.  Also a really active bulletin board with for sale/wanted/gamers/gms wanted stuff on it.&lt;br /&gt;&lt;br /&gt;All this, and the store is clean, friendly, and professional (not one of those creepy fangroup stores where you feel unwelcome going in.&lt;br /&gt;&lt;br /&gt;I love that store.&lt;br /&gt;&lt;br /&gt;After there (I bought &lt;a href="http://gmsecrets.com/"&gt;a book&lt;/a&gt;), I walked down to Sparks Street where I ate at &lt;a href="http://www.restaurantica.com/restaurants/5048/"&gt;Yesterday's&lt;/a&gt;.  Meh.  Not sure I'll go back, but I was hungry, and they fed me caesar salad, steak, and glass after glass of club soda.&lt;br /&gt;&lt;br /&gt;Finally, I caught the 96 back to Centrum.  At this point my feet were &lt;span style="font-style: italic;"&gt;killing&lt;/span&gt; me, and I was pretty tired and hot.&lt;br /&gt;&lt;br /&gt;So when I got to Centrum, I went to the AMC 24 and watched &lt;a href="http://www.shrek.com/"&gt;&lt;span style="font-style: italic;"&gt;Shrek the Third&lt;/span&gt;&lt;/a&gt;. That was nice to sit in the dark air conditioning, drink water, and enjoy resting.  I also took the opportunity to put a bandaid on my developing blister, which helped a whole lot.&lt;br /&gt;&lt;br /&gt;Next, I walked down to Staples, where I just browsed, and saw those cooling pads again.  I have to read more about them online, they again only had the 15" one -- I'd like something bigger.&lt;br /&gt;&lt;br /&gt;Next, I went to Canadian Tire, and found (finally) the fans.  I found a $120 "commercial grade" fan on sale for $60, so I grabbed it, bought it on debit (Canadian Tire Money!), and &lt;span style="font-style: italic;"&gt;carried&lt;/span&gt; it back to the bus terminal.&lt;br /&gt;&lt;br /&gt;Now, the bus terminal is at the FAR end of Centrum from Canadian Tire.  No two points are further apart.  That fan got mighty heavy on that long walk.  And THEN....&lt;br /&gt;&lt;br /&gt;as I was walking up to the terminal, I saw the 160 pulling up to let people on.  So I ran, with my big heavy fan, a long way.  I wouldn't have made it, but the bus driver saw me and waited.  &lt;pant&gt;&lt;br /&gt;&lt;br /&gt;By now, I'm dead tired, the sweat is beading off of me, I can barely catch my breath, my clothes are sticking to me, my muscles are all sore, and my feet hurt.  But at least I'm on the way home.&lt;br /&gt;&lt;br /&gt;I got off the bus, walked to the house, peeled off my clothes, went and had a shower (yay!), set up my computer, and here I am.  On my bed.  Where I'm going to stay.&lt;br /&gt;&lt;br /&gt;But it was a &lt;span style="font-style: italic;"&gt;fun&lt;/span&gt; day.  Lots of cool and exciting stuff.  Tomorrow I plan to have less fun and more rest.  :-)&lt;br /&gt;&lt;br /&gt;Oh: and upstairs in the other bedroom, there's a mattress on the floor.  Nothing else in the room, but a mattress.  I assume that means the other roommate is in the process of moving in.  Probably today or tomorrow, I'd guess.&lt;br /&gt;&lt;br /&gt;Rest now.  Like I said: I'm not in my 20s anymore: I used to do days like this all the time, walking all around, but even with my walking to work, this takes a toll on me.&lt;br /&gt;&lt;br /&gt;My new fan works GREAT, btw.  :-)  Very powerful.  Almost too much air on low!  Hee hee.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/pant&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-420161620919291145?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/420161620919291145/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=420161620919291145' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/420161620919291145'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/420161620919291145'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/06/dear-god-im-not-in-my-20s-anymore.html' title='Dear God I&apos;m not in my 20&apos;s anymore!!'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-878721208872193866</id><published>2007-06-01T19:25:00.000-04:00</published><updated>2007-06-01T19:27:00.847-04:00</updated><title type='text'>The week is done...</title><content type='html'>It was only last Monday that we did the home inspection on our new house.  It really seems like a year ago.  :-)&lt;br /&gt;&lt;br /&gt;I'm glad it's Friday.  I'm going to try to go downtown Ottawa, I think, tomorrow.  On the bus, like.  Which should be fun.&lt;br /&gt;&lt;br /&gt;Tonight, though, I'm just going to lay around and zone out.  Tired.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-878721208872193866?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/878721208872193866/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=878721208872193866' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/878721208872193866'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/878721208872193866'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/06/week-is-done.html' title='The week is done...'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-5843752682826871485</id><published>2007-06-01T09:11:00.001-04:00</published><updated>2007-06-01T09:12:10.034-04:00</updated><title type='text'>Awesome.</title><content type='html'>And &lt;a href="http://maps.google.com/maps?f=q&amp;hl=en&amp;amp;q=new+york&amp;layer=tc&amp;amp;ie=UTF8&amp;ll=40.72748,-74.004588&amp;amp;spn=0.001274,0.002886&amp;t=k&amp;amp;z=19&amp;om=1&amp;amp;cbll=40.727033,-74.004204&amp;amp;cbp=1,250.641077170418,0.5,0"&gt;THIS&lt;/a&gt; is why Google will win the tech wars.&lt;br /&gt;&lt;br /&gt;Nuf said.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-5843752682826871485?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/5843752682826871485/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=5843752682826871485' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/5843752682826871485'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/5843752682826871485'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/06/awesome.html' title='Awesome.'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-397248462918836968</id><published>2007-05-31T21:22:00.001-04:00</published><updated>2007-05-31T22:13:26.277-04:00</updated><title type='text'>Some quick pics</title><content type='html'>&lt;embed type="application/x-shockwave-flash" style="float: right;" src="http://picasaweb.google.com/s/c/bin/slideshow.swf" flashvars="host=picasaweb.google.com&amp;RGB=0x000000&amp;amp;feed=http%3A%2F%2Fpicasaweb.google.com%2Fdata%2Ffeed%2Fapi%2Fuser%2Fshawn.vincent%2Falbumid%2F5070898800422194385%3Fkind%3Dphoto%26alt%3Drss" pluginspage="http://www.macromedia.com/go/getflashplayer" height="192" width="288"&gt;&lt;/embed&gt;...of some wildlife I've seen around.&lt;br /&gt;&lt;br /&gt;Kanata (at least the high tech north end that I'm living and working in), is right on the edge of the wilderness.  The consequence of this is that the wildlife is really &lt;em&gt;there.&lt;/em&gt;&lt;br /&gt;&lt;br /&gt;On my way to work yesterday, I saw two deer crossing &lt;a href="http://maps.google.com/maps?client=firefox-a&amp;ie=UTF8&amp;amp;amp;amp;oe=utf-8&amp;q=innovation+drive+kanata+ontario&amp;amp;z=16&amp;iwloc=addr&amp;amp;om=1"&gt;Innovation Drive&lt;/a&gt;, not a hundred feet from me.&lt;br /&gt;&lt;br /&gt;In a ditch I pass daily on my walk to work, I saw a 6" fish.&lt;br /&gt;&lt;br /&gt;And the muskrat I've seen a couple times, at a bus stop on Himes Road.  :-)&lt;br /&gt;&lt;br /&gt;Plus the Canadian Geese: they're &lt;em&gt;everywhere&lt;/em&gt;.  They nest in the parking lot at work, and big flocks of them we've seen in the field next to our new house.&lt;br /&gt;&lt;br /&gt;There's a thunderstorm going on now outside.&lt;br /&gt;&lt;br /&gt;I like this place.  Even though we're technically in a city, with lots of jobs and high speed internet and everything, it still feels a lot like the country, even here in the city proper.  It'll be fun to live here in the country.  :-)   Mmmm... outdoor fires...&lt;br /&gt;&lt;br /&gt;The thunderstorm is getting quite violent, actually.&lt;br /&gt;&lt;br /&gt;Heh.&lt;br /&gt;&lt;br /&gt;Anyway, other highlights of the day are finally finishing most of the Perl programming I was doing.  Mostly the job is Java+Spring+JPA+Hibernate/Toplink, with parser generators and all sorts of cool stuff, but randomly there was some Perl code to generate some Java code that I ended up having to refactor.  Never done Perl before.  I don't like it, but it gets the job done.&lt;br /&gt;&lt;br /&gt;Also, today I finally got a garbage can in my cube.  :-)  I'll have to take some pictures of my cube environment to post online at some point.&lt;br /&gt;&lt;br /&gt;Did my laundry tonight after walking home, at my chicken-flavored Ramen noodles, watched two episodes of Stargate SG-1, &lt;a href="http://www.gateworld.net/sg1/s5/515.shtml"&gt;Summit&lt;/a&gt; and &lt;a href="http://www.gateworld.net/sg1/s5/516.shtml"&gt;Last Stand&lt;/a&gt;.  It's shaping up to be an excellent season.&lt;br /&gt;&lt;br /&gt;Now I've got to put my laundry away, make my bed (really a double air mattress on the floor, although it self inflates, which is pretty cool), eat a snack from my box of food, and maybe read &lt;span style="font-style: italic;"&gt;Deception Point&lt;/span&gt; by Dan Brown -- which is a pretty fun book, even if he gets some of the tech slightly wrong.  :-)&lt;br /&gt;&lt;br /&gt;This weekend I'm going to try to get down to Fandom II, which is apparently a Really Good gaming store downtown Ottawa.  I've never tried going downtown on the bus before, it should be a fun adventure.  I'll have to be careful: there's a Sens game happening that night (3rd game of the playoffs -- it shames me that I know that -- Go Sens Go!), so the city might get kind of crazy Saturday evening/night.&lt;br /&gt;&lt;br /&gt;Not a bad life.  I'll be glad when it's done, but I'm managing.  And we close on the house&lt;br /&gt;&lt;br /&gt;Power's flickering.  Better post this.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-397248462918836968?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/397248462918836968/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=397248462918836968' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/397248462918836968'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/397248462918836968'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/05/some-quick-pics.html' title='Some quick pics'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-6342991375145190092</id><published>2007-05-30T20:29:00.001-04:00</published><updated>2007-06-10T12:50:52.704-04:00</updated><title type='text'>What's for you won't go past you.</title><content type='html'>...or so they say.&lt;br /&gt;&lt;br /&gt;It's been quite a year, starting in January when I lost my job.  A long process of job interviews, trying to figure out what&lt;span style="font-style: italic;"&gt; &lt;/span&gt;what we wanted to do with our&lt;span&gt;&lt;span&gt;&lt;span style="font-style: italic;"&gt;&lt;/span&gt; lives, where we wanted to live, whatever.&lt;br /&gt;&lt;br /&gt;It's been an incredibly exciting opportunity.  We had all the freedom in the world.  I can work, really, anywhere.  I'm good at what I do: finding a job isn't a problem: finding the right job is.  We could pick and choose anyplace in the world (although, realistically, North America is probably the bounds: my dual citizenship only goes so far).&lt;br /&gt;&lt;br /&gt;After investigating a bunch of opportunities, we decided that Ottawa was the place to be.  Or maybe Ottawa chose us.  That probably needs some 'splainin'.&lt;br /&gt;&lt;br /&gt;If there's been one recurring theme in this whole process that we've discovered it's that: what's for you won't go past you.  If you try to go down the "wrong" path, difficulty after difficulty will be thrown in front of you.  Once you choose the "right" path, things go smooth and easy, and you find out in the end that it's better than your other opportunity anyway.&lt;br /&gt;&lt;br /&gt;Our first major choice was where to live.  We don't want to live in a big city like Toronto or San Francisco, which ruled out most of the big hotbeds for tech jobs.  In the end, the way the opportunities laid out, the choices came down to: Waterloo or Ottawa.&lt;br /&gt;&lt;br /&gt;Waterloo had the substantial advantage of being familiar and comfortable, and having friends and family there.  Ottawa has &lt;span style="font-style: italic;"&gt;way&lt;/span&gt; more tech jobs, and much cheaper land.  We investigated jobs in both places, interviewing at lots of places.  In the end, I got multiple offers, but the best opportunities were all in Ottawa.  There wasn't anyplace with jobs that seemed worthwhile in K-W.&lt;br /&gt;&lt;br /&gt;Probably not surprisingly: statistically, the more jobs there are, the more fun they'll be.  In the end, the position I chose I'm extremely happy about:  Emergis (formerly known as Dinmar).  They make and support a product called Oacis, which is a medical record application, mostly.  The people there are great, the product is interesting.  I'm enjoying learning about the dynamics of a larger company, and in the meantime, I get to do what I love and am good at.&lt;br /&gt;&lt;br /&gt;Once I accepted the offer at Emergis, stuff started in earnest.  We were moving to Ottawa.  We put the house on the market with Paul Allen, who I highly recommend if you want an extremely competent, aggressive seller.  The house sold in two weeks, but not without drama.&lt;br /&gt;&lt;br /&gt;We actually got an offer after 48 hours on the market.  But they came in with an insultingly low offer, and dragged out the negotiation process endlessly.  It was just so &lt;span style="font-style: italic;"&gt;difficult&lt;/span&gt; to deal with them...&lt;br /&gt;&lt;br /&gt;After that, a bunch more showings, and we had multiple offers one day, we accepted one that was good money and zero conditions, and life was easy.  The buyers sound excited about the house, and I hope they're happy in it.  It's a great house.&lt;br /&gt;&lt;br /&gt;What's for you won't go past you.&lt;br /&gt;&lt;br /&gt;During the house hunting, I secured an apartment out here (sight unseen), and moved out ahead of the Vincent-Wilder clan.&lt;br /&gt;&lt;br /&gt;This is probably the hardest part of the whole process.  Changing jobs and cities and everything is stressful enough, but all that is fine.  It's being away from Lisa and my family and my dogs that really depresses me.  Living in a rented basement like a troll, walking to work with my backpack like a student, coming home to an empty house, nobody to eat snacks and watch TV with...  no dogs scratching the hell out of you when they try to sit on your lap...  it's harder than I expected it to be.  I wouldn't do it if it weren't strictly time limited.&lt;br /&gt;&lt;br /&gt;Kind of weird, really.  I did this same thing years ago in Chicago.  I disliked it then, living alone, but it was &lt;span style="font-style: italic;"&gt;nothing&lt;/span&gt; like this time.  I guess I was unhappy for so long before I met Lisa that I didn't really know the difference.  Now, being apart from the people who I love, and who love me... it really hurts.  Blah.&lt;br /&gt;&lt;br /&gt;ANYWAY, enough of that.&lt;br /&gt;&lt;br /&gt;The next step, after selling our house, was to buy something out here.  Again, it was a saga.&lt;br /&gt;&lt;br /&gt;We found a really nice place right away: 8 acres, house not visible from the road, fenced for dogs, &lt;span style="font-style: italic;"&gt;beautiful&lt;/span&gt; house, trees all around, really really private, 35 minutes to work.  We liked it so much we put an offer in on it.  Then the troubles started.&lt;br /&gt;&lt;br /&gt;First, a bunch of things in the listing were misrepresented.  Whirlpool tub... absent.  Walk out from basement workshop... absent.  There were some worries that maybe other things may have been misrepresented.  Nagging fears started.&lt;br /&gt;&lt;br /&gt;Next, the boundaries of the property were in question.  When asked, the agent said it was "square".  It was clear that she meant "rectangular" and didn't know the difference, but whether the property was long and skinny or short and fat was in question.  Finally, we found out some more details, and it turned out that the property line was right along the yard.  So your private haven was actually partially owned by other people.  Meh.&lt;br /&gt;&lt;br /&gt;Finally, they were building a house, and wanted to rent us a house (not this one), until the building was completed.  This seemed like a good idea at first, but then questions started cropping up: what happens if their building goes beyond schedule?  Talking to a real estate lawyer at this end, it turns out that this sort of thing is a &lt;span style="font-style: italic;"&gt;very bad idea&lt;/span&gt;.  So we lost interest, and let the counter offer lapse.&lt;br /&gt;&lt;br /&gt;Too hard.&lt;br /&gt;&lt;br /&gt;Next, we hooked up with a buyer's agent out here recommended by the Paul Allen team: &lt;a href="http://www.ottawaproperties.com/teamothers.htm"&gt;Penny Kaszas&lt;/a&gt;.  She showed us a few properties, and we found &lt;a href="http://picasaweb.google.com/lwilder/NewHouse"&gt;The One&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;a href="http://picasaweb.google.com/shawn.vincent/House"&gt;6 acres&lt;/a&gt;, cleared and partly fenced, with a 140 year old farmhouse, 10 minutes from work.  :-)  For less than what we sold our suburban Kitchener home for.  The sellers could close quickly (2.5 weeks), accepted our conditions of inspection, etc, and generally seem really nice to work with.  There were no major concerns or issues.&lt;br /&gt;&lt;br /&gt;It's a cool place.  The house has a poured concrete foundation: it was dragged to its current position a number of years ago by horses.  It's got the beautiful wide trim, pine floors, plaster walls, beautiful doors and knobs that we remember from Villa Villatrolla and loved so much.  9' ceilings throughout, nice layout, natural place for a mudroom, lots of parking.  It's got a natural gas furnace, central air, 200 amp electrical, steel roof done in the last 10 years, new windows throughout in '94...  High speed internet is still uncertain, but certainly my High Speed Unplugged modem works there (I checked during the inspection :-)&lt;br /&gt;&lt;br /&gt;We've had an excellent inspector: &lt;a href="http://www.bowerstreet.ca/"&gt;Harry Bradford&lt;/a&gt; out to look at the place, and while there are issues as you'd expect in a 140 year old house, they're easily within our budget to just get fixed properly.  At the same time, we had a really good septic inspector (I forget his name just now) out to look over the septic system, and he was impressed with the quality, apparently it's in really good shape.  A few little maintenance things to do, nothing much.  The water tests came back spotless.  We have a &lt;a href="http://picasaweb.google.com/shawn.vincent/House"&gt;survey&lt;/a&gt; of the property, done in 1987.  There's also an aerial photograph of the place hanging at the place: our agent has asked if we could get a copy, but it shows the old barn still standing, the original red brick, ... I'd guess it was done in the 80's.&lt;br /&gt;&lt;br /&gt;There's lots to do.  Look at the pictures: all the flooring needs redoing, the kitchen needs to be gutted and reworked, the hot tub in the master bedroom needs to be removed, lots of trimwork repair, painting...  maybe the siding removed if the brickwork's in ok shape underneath.  Fencing to put up, workshops to build: it's a paradise of home improvement projects waiting to happen.  Which is good, because that's what we like.  :-)&lt;br /&gt;&lt;br /&gt;It's SO close to work: 10 minutes.  Literally right up the street.  This means that we'll not have the cost and time expenses of a long commute, more time to work on the house after hours, and it's so close to the Kanata high tech district that land values are just going to climb.&lt;br /&gt;&lt;br /&gt;It's zoned agricultural, which means that we can have horses and goats and stuff at home, which has been the dream for &lt;span style="font-style: italic;"&gt;forever&lt;/span&gt;.  Lots of room for the dogs, no neighbors within sight, nothing behind our property for miles except fields and rivers and lakes, with a &lt;a href="http://picasaweb.google.com/lwilder/NewHouse/photo#5067549554706483170"&gt;view&lt;/a&gt; of the &lt;a href="http://en.wikipedia.org/wiki/Gatineau_Hills"&gt;Gatineau Hills&lt;/a&gt; from our backyard.&lt;br /&gt;&lt;br /&gt;We've signed off on our conditions, the sold sign is on the new house as we speak (neither of us have actually seen it: our agent just told us after she drove by).  We take possession in 2 weeks.&lt;br /&gt;&lt;br /&gt;MUCH nicer than the place we put an offer in on, and nearly $100K less.&lt;br /&gt;&lt;br /&gt;What's for you won't go past you.  :-)  Now you see why I start to believe, eh?&lt;br /&gt;&lt;span&gt;&lt;span&gt;&lt;br /&gt;&lt;br /&gt;Lisa has been the real hero of this whole process.... she dealt with the realtors and the lawyers and the mortgage brokers and the banks and the inspectors and the endless cleaning and showings of the house.  She's made several road trips out here with loads of stuff for my apartment and our storage unit.  She's single-handedly packed the house and managed the dogs (she had to take them alone to the vet one day -- gak).  She's probably talked more hours on the phone than her whole career in tech support.  She bought a fax machine and has run it through its paces.&lt;br /&gt;&lt;br /&gt;She is like unto a goddess that walks upon the earth.  I am honored, proud, and a little humbled that she is my wife.&lt;br /&gt;&lt;br /&gt;So.  To sum up this year:  it's been one of the most exciting, the most wonderful, the scariest, the most stressful, and the most depressing years of my life.  Would I want to do it again?  Not on your life.  :-)  But I'm glad it happened.  I'm really happy with where things ended up in the end.&lt;br /&gt;&lt;br /&gt;Now I've just got to wait the few weeks until it all settles down, Lisa and the clan move out here, and we can get on with falling into a comfortable routine again.  In between renovating our farmhouse, of course.&lt;br /&gt;&lt;br /&gt;On the theme of fixing up old houses, I have to share a website I found:   &lt;a href="http://www.ourfixerupper.com/"&gt;Our Fixer-upper&lt;/a&gt;.    It's a young couple who look like they've stolen our life.  :-)  Dogs and home improvements.  They've got a beautiful house, and lots of ideas, tips, and a whole community of people around renovating homes.  Very cool.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Now, I've got to find a snack and get on with my grueling evening of lazing about.   :-)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;What's for you won't go past you.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style="font-style: italic;"&gt;&lt;span style="font-style: italic;"&gt; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-6342991375145190092?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/6342991375145190092/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=6342991375145190092' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6342991375145190092'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6342991375145190092'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/05/whats-for-you-wont-go-past-you.html' title='What&apos;s for you won&apos;t go past you.'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-4037903349951837880</id><published>2007-05-09T21:16:00.000-04:00</published><updated>2007-05-09T21:19:59.681-04:00</updated><title type='text'>Star Trek?</title><content type='html'>My Star Trek character....&lt;br /&gt;&lt;br /&gt;Hee hee.&lt;br /&gt;&lt;br /&gt;Who would've guessed?&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;b&gt;You are &lt;span style="font-size:6;"&gt;Spock&lt;/span&gt;&lt;/b&gt;&lt;br /&gt;&lt;table&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td valign="top"&gt;&lt;table&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;Spock&lt;/td&gt;&lt;br /&gt;&lt;td&gt;&lt;hr align="left" noshade="noshade" size="4" width="72"&gt;&lt;/td&gt;&lt;td&gt; 72%&lt;/td&gt;&lt;br /&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;James T. Kirk (Captain)&lt;/td&gt;&lt;br /&gt;&lt;td&gt;&lt;hr align="left" noshade="noshade" size="4" width="70"&gt;&lt;/td&gt;&lt;td&gt; 70%&lt;/td&gt;&lt;br /&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Chekov&lt;/td&gt;&lt;br /&gt;&lt;td&gt;&lt;hr align="left" noshade="noshade" size="4" width="65"&gt;&lt;/td&gt;&lt;td&gt; 65%&lt;/td&gt;&lt;br /&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Data&lt;/td&gt;&lt;br /&gt;&lt;td&gt;&lt;hr align="left" noshade="noshade" size="4" width="55"&gt;&lt;/td&gt;&lt;td&gt; 55%&lt;/td&gt;&lt;br /&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Jean-Luc Picard&lt;/td&gt;&lt;br /&gt;&lt;td&gt;&lt;hr align="left" noshade="noshade" size="4" width="55"&gt;&lt;/td&gt;&lt;td&gt; 55%&lt;/td&gt;&lt;br /&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Beverly Crusher&lt;/td&gt;&lt;br /&gt;&lt;td&gt;&lt;hr align="left" noshade="noshade" size="4" width="55"&gt;&lt;/td&gt;&lt;td&gt; 55%&lt;/td&gt;&lt;br /&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Worf&lt;/td&gt;&lt;br /&gt;&lt;td&gt;&lt;hr align="left" noshade="noshade" size="4" width="45"&gt;&lt;/td&gt;&lt;td&gt; 45%&lt;/td&gt;&lt;br /&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Will Riker&lt;/td&gt;&lt;br /&gt;&lt;td&gt;&lt;hr align="left" noshade="noshade" size="4" width="45"&gt;&lt;/td&gt;&lt;td&gt; 45%&lt;/td&gt;&lt;br /&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Uhura&lt;/td&gt;&lt;br /&gt;&lt;td&gt;&lt;hr align="left" noshade="noshade" size="4" width="45"&gt;&lt;/td&gt;&lt;td&gt; 45%&lt;/td&gt;&lt;br /&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Leonard McCoy (Bones)&lt;/td&gt;&lt;br /&gt;&lt;td&gt;&lt;hr align="left" noshade="noshade" size="4" width="45"&gt;&lt;/td&gt;&lt;td&gt; 45%&lt;/td&gt;&lt;br /&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Geordi LaForge&lt;/td&gt;&lt;br /&gt;&lt;td&gt;&lt;hr align="left" noshade="noshade" size="4" width="40"&gt;&lt;/td&gt;&lt;td&gt; 40%&lt;/td&gt;&lt;br /&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;An Expendable Character (Redshirt)&lt;/td&gt;&lt;br /&gt;&lt;td&gt;&lt;hr align="left" noshade="noshade" size="4" width="35"&gt;&lt;/td&gt;&lt;td&gt; 35%&lt;/td&gt;&lt;br /&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Deanna Troi&lt;/td&gt;&lt;br /&gt;&lt;td&gt;&lt;hr align="left" noshade="noshade" size="4" width="25"&gt;&lt;/td&gt;&lt;td&gt; 25%&lt;/td&gt;&lt;br /&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Mr. Scott&lt;/td&gt;&lt;br /&gt;&lt;td&gt;&lt;hr align="left" noshade="noshade" size="4" width="20"&gt;&lt;/td&gt;&lt;td&gt; 20%&lt;/td&gt;&lt;br /&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;Mr. Sulu&lt;/td&gt;&lt;br /&gt;&lt;td&gt;&lt;hr align="left" noshade="noshade" size="4" width="10"&gt;&lt;/td&gt;&lt;td&gt; 10%&lt;/td&gt;&lt;br /&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/td&gt;&lt;br /&gt;&lt;td valign="top"&gt;You are skilled in knowledge and logic.&lt;br /&gt;You believe that the needs of the many&lt;br /&gt;outweigh the needs of the few.&lt;br /&gt;&lt;br /&gt;&lt;img style="width: 200px; height: 309px;" src="http://www.seabreezecomputers.com/startrek/pics/spock.jpg" /&gt;&lt;/td&gt;&lt;br /&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;a href="http://www.seabreezecomputers.com/startrek"&gt;&lt;br /&gt;Click here to take the "Which Star Trek character are you?" quiz...&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-4037903349951837880?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/4037903349951837880/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=4037903349951837880' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/4037903349951837880'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/4037903349951837880'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/05/star-trek.html' title='Star Trek?'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-8849137575151689480</id><published>2007-03-28T18:57:00.000-04:00</published><updated>2007-04-13T16:06:20.843-04:00</updated><title type='text'>Ottawa</title><content type='html'>&lt;table style="width: 194px; float: right;"&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style="background: transparent url(http://picasaweb.google.com/f/img/transparent_album_background.gif) no-repeat scroll left center; height: 194px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;" align="center"&gt;&lt;a href="http://picasaweb.google.com/shawn.vincent/Ottawa"&gt;&lt;img src="http://lh4.google.com/image/shawn.vincent/RgrwoP6KAKE/AAAAAAAAAYg/KT_eT4NelJk/s160-c/Ottawa.jpg" style="margin: 1px 0pt 0pt 4px; width: 160px; height: 160px;" height="160" width="160" /&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td style="text-align: center; font-family: arial,sans-serif; font-size: 11px;"&gt;&lt;a href="http://picasaweb.google.com/shawn.vincent/Ottawa" style="color: rgb(77, 77, 77); font-weight: bold; text-decoration: none;"&gt;Ottawa&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;br /&gt;&lt;br /&gt;We went to Ottawa early this week -- it's a beautiful city: we quite enjoyed ourselves.&lt;br /&gt;&lt;br /&gt;A little hard to drive back through Toronto, with its traffic and its swarms and its stinky air, after being in clean, small Ottawa.  :-)&lt;br /&gt;&lt;br /&gt;Some pictures if you click on the image to the right.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-8849137575151689480?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/8849137575151689480/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=8849137575151689480' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/8849137575151689480'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/8849137575151689480'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/03/ottawa.html' title='Ottawa'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-751391337505394334</id><published>2007-03-22T09:02:00.000-04:00</published><updated>2007-03-22T09:05:02.177-04:00</updated><title type='text'>Encyclopaedia Cameleopardis Update</title><content type='html'>A big update today - all my old Orcreaver notes are all entered and online (that was a big stack).  Museurth is pretty much done (there weren't as many notes still around from that).&lt;br /&gt;&lt;br /&gt;Still lots to go in the box, of course, but now I can say that there's lots of content on the website as well.  :-)  Enjoy.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-751391337505394334?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/751391337505394334/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=751391337505394334' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/751391337505394334'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/751391337505394334'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/03/encyclopaedia-cameleopardis-update.html' title='Encyclopaedia Cameleopardis Update'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-2345577379358079555</id><published>2007-03-17T19:41:00.000-04:00</published><updated>2007-03-17T19:42:52.068-04:00</updated><title type='text'>Delicious supper</title><content type='html'>We ate all the part containers of food that were in the freezer tonight.  Lots of food, all delicious.&lt;br /&gt;&lt;br /&gt;I love nights like this.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-2345577379358079555?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/2345577379358079555/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=2345577379358079555' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/2345577379358079555'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/2345577379358079555'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/03/delicious-supper.html' title='Delicious supper'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-6260213156508021489</id><published>2007-03-16T22:11:00.000-04:00</published><updated>2007-03-16T22:12:15.789-04:00</updated><title type='text'>Crow on the Road</title><content type='html'>My grandfather used to say: "if a man ever tells you that he hit a crow with his car, don't trust anything he says: he's a liar.  You can't hit a crow with a car."&lt;br /&gt;&lt;br /&gt;I've always doubted this, but today...&lt;br /&gt;&lt;br /&gt;I saw a dead crow on the road, hit by a car.  :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-6260213156508021489?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/6260213156508021489/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=6260213156508021489' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6260213156508021489'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6260213156508021489'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/03/crow-on-road.html' title='Crow on the Road'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-7481301744163663873</id><published>2007-03-15T16:34:00.000-04:00</published><updated>2007-03-15T16:35:38.769-04:00</updated><title type='text'>Orcreaver</title><content type='html'>I'm working on the Orcreaver campaign (2000-2001, Tunnelmachen, etc) notes now.  &lt;span style="font-style: italic;"&gt;Man&lt;/span&gt;, I made a lot of notes for that campaign.  Quite entertaining.  :-)&lt;br /&gt;&lt;br /&gt;When I get through them, I'll do another publish.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-7481301744163663873?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/7481301744163663873/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=7481301744163663873' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/7481301744163663873'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/7481301744163663873'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/03/orcreaver.html' title='Orcreaver'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-1975642269252623779</id><published>2007-03-12T23:00:00.000-04:00</published><updated>2007-03-12T23:10:02.895-04:00</updated><title type='text'>An old dream</title><content type='html'>I had this dream in high school...I just found an old dream journal I kept (with just one entry in it), while going through old roleplaying stuff.  It doesn't belong there, but here, I'll share it.&lt;br /&gt;&lt;br /&gt;&lt;div style="margin-left: 1in;"&gt;Everything - numbers + colors&lt;br /&gt;See.  Feel.  Hear.   People.&lt;br /&gt;&lt;br /&gt;Making 1st, 2nd, 3rd out of plastic, thick numbers&lt;br /&gt;&lt;br /&gt;Shoes - dress and casual at school.  Not polished yet.  These numbers, and the shoes were outside the men's staff.&lt;br /&gt;&lt;br /&gt;Mrs Schlosser comes to get Ingrid, says she should have bell around her neck.  Christian says "Hi", says he has "pfuf-pfuf", the booth window key.&lt;br /&gt;&lt;br /&gt;I'm wearing double-breasted suit jacket, dark slacks (perhaps jeans?), and a dark shirt.&lt;br /&gt;&lt;br /&gt;The toilet in the first stall in men's staff is filled to brim.  I question in my mind whether it is possible to flush it.  My shirt - now light dress shirt (white?) threatens to trail in used toilet water.&lt;br /&gt;&lt;br /&gt;Outside door of bathroom are clunky shoes, inside is dress shoes - stacked to the ceiling.  door says "gentlemen's bath"&lt;br /&gt;&lt;br /&gt;Ingrid in big crowd of people.&lt;br /&gt;&lt;br /&gt;I'm telling others of play I saw.  I wasn't doing lighting for it.&lt;br /&gt;&lt;br /&gt;2 girls say "hi", joke about shoes and "gentlemen's", as I enter bathroom.  Sitting on bench by window across the hall diagonally.&lt;br /&gt;&lt;br /&gt;The numbers are - green, perhaps red, perhaps blue - all light.  About a foot x a foot x maybe 4 inches.&lt;br /&gt;&lt;br /&gt;The play was about something the others had seen on TV, and I was telling - somebody about it.&lt;br /&gt;&lt;br /&gt;I had gone back to school after being on the bus w/ my bookbag.  I left my bag there.  Went with people to a restaurant, then was back at school.  Restaurant sold pies + pizzas.  Tanya Braun was there.&lt;br /&gt;&lt;br /&gt;Originally 5 people on bus - sort of like van - with same number of seats.&lt;br /&gt;&lt;br /&gt;I poked Tanya's foot under the table, and she jerked it away.  Christian was to my right.  Tanya ordered some sort of pineapple semi-transparent fruit baked novelty with nuts visible in the middle.  I ordered one too.&lt;br /&gt;&lt;br /&gt;Pizzas were pineapple.  2 ordered by our guests, but were taken off.  Pizzas had single pineapple slice on them.  They went to another table.&lt;br /&gt;&lt;br /&gt;Were originally (7?) people at table - too crowded.  2 were girls.&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;I remember this being a really vivid dream, and I'm glad I've put it here for posterity.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-1975642269252623779?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/1975642269252623779/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=1975642269252623779' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/1975642269252623779'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/1975642269252623779'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/03/old-dream.html' title='An old dream'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-5035621187995019390</id><published>2007-03-12T20:09:00.000-04:00</published><updated>2007-03-12T20:15:33.142-04:00</updated><title type='text'>More Cameleopards</title><content type='html'>I just did another big update to &lt;a href="http://www.svincent.com/rpg/"&gt;Encyclopaedia Cameleopardis&lt;/a&gt;.  A bunch of old campaign notes are up, along with most of all the characters I have in my possession.  Plus, all my electronic notes that I had on my computer (minus ones that are already on my website...).&lt;br /&gt;&lt;br /&gt;Next step is to fetch more paper notes from the Big Box and start entering them.  I'm not near done, but it's a nice chunk of it entered anyway.&lt;br /&gt;&lt;br /&gt;We're still watching Stargate SG1 -- I quite like the show.  It's fun: the writing isn't &lt;span style="font-style: italic;"&gt;great&lt;/span&gt;, but as a student of action-adventure plots, it's nice that it's not so slick that you can't see the mechanisms that they're using.  Plus, their backstory and world cyclopaedia is extremely rich and filled with cool stuff.&lt;br /&gt;&lt;br /&gt;We ate delicious steak at Angel's Diner tonight.  Mmmm.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-5035621187995019390?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/5035621187995019390/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=5035621187995019390' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/5035621187995019390'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/5035621187995019390'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/03/more-cameleopards.html' title='More Cameleopards'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-149177930074853753</id><published>2007-03-06T12:15:00.000-05:00</published><updated>2007-03-06T12:19:57.628-05:00</updated><title type='text'>Stuf</title><content type='html'>Lisa put the first coat of primer in the dining room, while I broke down the rest of the shelves from the living room.&lt;br /&gt;&lt;br /&gt;Laundry, vacuuming, eating lunch (delicious canned pasta with meatballs), and soon we're going to clean out the fridge and get groceries (I've been looking forward to Shreddies and pickles (not at the same time) for a while, so I'm looking forward to groceries.  I keep forgetting them every time we go).&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The stack of characters &lt;span style="font-style: italic;"&gt;done&lt;/span&gt; for &lt;a href="http://www.svincent.com/rpg/"&gt;Encyclopaedia Cameleopardis&lt;/a&gt; is a lot bigger than the stack left to go -- I may soon be actually done with characters.  Then it's on to some other stack (maybe some of the campaign worlds I've got laying around).  I'm looking forward to creating links between some of this campaign information, should help with dating some of it.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-149177930074853753?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/149177930074853753/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=149177930074853753' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/149177930074853753'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/149177930074853753'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/03/stuf.html' title='Stuf'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-5134119357072589236</id><published>2007-03-05T20:21:00.000-05:00</published><updated>2007-03-05T20:27:24.671-05:00</updated><title type='text'>Dysons &amp; a new Encyclopaedia Update</title><content type='html'>A quick note: I've done a big update of &lt;a href="http://www.svincent.com/rpg/"&gt;Encyclopaedia Cameleopardis&lt;/a&gt;.  Lots more characters are up.&lt;br /&gt;&lt;br /&gt;The main point of this post is to rave about the Dyson vacuum we got.&lt;br /&gt;&lt;br /&gt;I mean, wow.  :-)&lt;br /&gt;&lt;br /&gt;It's a vacuum, of course, so you still have to push it around and clean the floors.  But if any piece of equipment could make this chore enjoyable, it would be the Dyson.&lt;br /&gt;&lt;br /&gt;I had just vacuumed our floors, a couple days before we bought the thing (I even posted about it here on my blog).  The amount of dog hair and fine dust and dander and whatever that that Dyson sucked out of our visibly clean carpets was nothing short of astounding.&lt;br /&gt;&lt;br /&gt;In many ways, the clear bin is the thing that makes the Dyson fun.  You get to see the dirt getting sucked out of your carpets and floors as it comes out.  Also easy to empty and clean, so there's not really any unpleasant part of the job.&lt;br /&gt;&lt;br /&gt;We also vacuumed our dogs.  :-)  Buddy hasn't had a bath in years (we should bathe him, but he's a real jerk about it, and he's large, and hates baths, so whatever), and was kindof getting a bit of a funk to him.  Vacuuming him with the Dyson sucked out about an inch (in the bottom of the Dyson bin) of dander, plus a whole whack of fur.  Plus the dog likes it.  :-)  He doesn't smell anymore, either...&lt;br /&gt;&lt;br /&gt;Pixie, on the other hand, hates it.  You can vacuum her, if she's sitting in my lap and Lisa operates the machine, but she runs away first opportunity she gets.  Maybe she'll like it more as time goes on, hard to say.&lt;br /&gt;&lt;br /&gt;It's not the perfect machine (ideally, it'd do the cleaning itself, and maybe do windows too), but for what we want it for (general deep cleaning of the house), it does a great job.&lt;br /&gt;&lt;br /&gt;Highly recommended.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-5134119357072589236?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/5134119357072589236/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=5134119357072589236' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/5134119357072589236'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/5134119357072589236'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/03/dysons-new-encyclopaedia-update.html' title='Dysons &amp; a new Encyclopaedia Update'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-5197220800329108241</id><published>2007-03-03T19:18:00.000-05:00</published><updated>2007-03-03T19:26:43.404-05:00</updated><title type='text'>Lots of stuff</title><content type='html'>This morning, we went out to eat at Country Boy.  You don't often get to go there.  It's very popular, and usually by the time you get there, it's too early.  We were out early anyway, so we stopped for breakfast.  They do a good breakfast there.  Mmmm..&lt;br /&gt;&lt;br /&gt;Lisa finished filling the damage on the dining room walls, and I disassembled one of the two shelves from the living room.  The dining room is looking good...&lt;br /&gt;&lt;br /&gt;For lunch, as previously mentioned, we had the most delicious toasted turkey &amp; swiss sandwiches on Earth.&lt;br /&gt;&lt;br /&gt;This afternoon, we ripped out the old hose from the dishwasher, and capped the pipe (turns out there's just some widget you can get at Home Depot to do that capping).&lt;br /&gt;&lt;br /&gt;Tonight, we're having lamb for supper.  It's cooking now.  Mmmmm...&lt;br /&gt;&lt;br /&gt;Also, got a Dyson vacuum.  Hopefully it's as good as people say.  We've had a long saga trying to find a vacuum that we like.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-5197220800329108241?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/5197220800329108241/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=5197220800329108241' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/5197220800329108241'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/5197220800329108241'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/03/lots-of-stuff.html' title='Lots of stuff'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-7208444924563625946</id><published>2007-03-03T15:41:00.000-05:00</published><updated>2007-03-03T15:42:15.881-05:00</updated><title type='text'>Deliciousness</title><content type='html'>Lisa makes the best toasted turkey+swiss sandwiches on Earth.&lt;br /&gt;&lt;br /&gt;Mmm..  and I get to eat them.  :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-7208444924563625946?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/7208444924563625946/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=7208444924563625946' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/7208444924563625946'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/7208444924563625946'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/03/deliciousness.html' title='Deliciousness'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-1033315575376796486</id><published>2007-03-02T21:00:00.000-05:00</published><updated>2007-03-02T21:01:44.451-05:00</updated><title type='text'>And the file sizes are diminished.</title><content type='html'>I've updated &lt;a href="http://www.svincent.com/rpg/"&gt;Encyclopaedia Cameleopardis&lt;/a&gt; to use JPEGs rather than PNGs for character sketches.  No noticeable drop in visual quality, dramatic drop in file size.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-1033315575376796486?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/1033315575376796486/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=1033315575376796486' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/1033315575376796486'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/1033315575376796486'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/03/and-file-sizes-are-diminished.html' title='And the file sizes are diminished.'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-4981575353452294233</id><published>2007-03-02T15:56:00.000-05:00</published><updated>2007-03-02T15:57:48.666-05:00</updated><title type='text'>Encyclopaedia Cameleopardis</title><content type='html'>So, my first brief draft of &lt;a href="http://www.svincent.com/rpg/"&gt;Encyclopaedia Cameleopardis&lt;/a&gt; is up.  It's just a little beginning.  The characters that are posted are pretty much done, character sketches scanned, etc.&lt;br /&gt;&lt;br /&gt;I think I may shrink the file size of the scans down a bit -- they're a little obese right now.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-4981575353452294233?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/4981575353452294233/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=4981575353452294233' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/4981575353452294233'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/4981575353452294233'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/03/encyclopaedia-cameleopardis.html' title='Encyclopaedia Cameleopardis'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-4322190238188989747</id><published>2007-03-02T15:44:00.000-05:00</published><updated>2007-03-02T15:55:53.147-05:00</updated><title type='text'>Scanner Goodness</title><content type='html'>So I got the scanner working, finally.&lt;br /&gt;&lt;br /&gt;I've got a Canon Canoscan LIDE 30 scanner.  It's a beautiful scanner, cheap, slim, runs off USB power, and it seems (to me) to make fine scans.  Unfortunately, I'm now using a Mac, and I wanted my scanner to work so that I could scan a whole bunch of old RPG stuff.&lt;br /&gt;&lt;br /&gt;Officially, it's supported.  There are drivers you can download from Canon's support site.  However, they don't seem to work for many people.  Very poorly written, very difficult to install, very difficult to use...  really, a write off.  Plus, I couldn't get them to work at all, despite wasting hours at it.&lt;br /&gt;&lt;br /&gt;Next up, I discovered &lt;a href="http://www.hamrick.com/"&gt;VueScan&lt;/a&gt;, a commercial scanning utility.  This thing just works, it supports the scanner nicely.  The free version is crippled (watermarks all image output), and you have to pay $40 for the program if you want it for real.  This would have been fine, but I was looking for a free solution.&lt;br /&gt;&lt;br /&gt;Turns out that &lt;a href="http://www.xsane.org/"&gt;XSane&lt;/a&gt; is the trick.  I've used XSane on Linux before, and it works great and is very very powerful (although it's a little wonky, UI-wise, as are many Linux programs).  To get it to run, you have to use one of the Mac-Linux porting efforts.  The one I got to work was &lt;a href="http://www.finkproject.org/download/index.php?phpLang=en"&gt;Fink&lt;/a&gt;.  To install XSane, you need to install the unstable version from source.&lt;br /&gt;&lt;br /&gt;Finally, it doesn't just work (nothing's &lt;span style="font-style: italic;"&gt;that&lt;/span&gt; easy, right?).  As documented &lt;a href="http://lists.alioth.debian.org/pipermail/sane-devel/2006-June/017160.html"&gt;here&lt;/a&gt;, there is a permission problem when you first install it.  The trick is that you need to make the directory &lt;span style="font-family: courier new;"&gt;/sw/var/lock/sane&lt;/span&gt; world-writable with some command like this:&lt;br /&gt;&lt;br /&gt;     &lt;span style="font-family: courier new;"&gt;sudo chmod a+w /sw/var/lock/sane&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Then it should work great.  (This was a trick to find out, as there's no clear error message: it just says "can't find scanner").&lt;br /&gt;&lt;br /&gt;Anyway, here's hoping that this little tip helps some other poor schmuck like me who tried to get their LIDE 30 scanner working on a Mac.&lt;br /&gt;&lt;br /&gt;Others have &lt;a href="http://rentzsch.com/notes/canonLide30Followup"&gt;problems with this scanner&lt;/a&gt;, too.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-4322190238188989747?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/4322190238188989747/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=4322190238188989747' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/4322190238188989747'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/4322190238188989747'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/03/scanner-goodness.html' title='Scanner Goodness'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-1950014643443873773</id><published>2007-03-01T21:34:00.000-05:00</published><updated>2007-03-01T21:39:30.393-05:00</updated><title type='text'>Snow and ice and rain - I Love Ontario</title><content type='html'>So it's another fine Ontario March: wet snow and ice pellets, changing to freezing rain and rain.  I haven't been outside very recently, but when I was, it was pretty nasty.&lt;br /&gt;&lt;br /&gt;Last night we went to see Jess's show at the Sears Ontario Drama Festival -- I've said it before, and I'll say it again, some of these kids have real talent.  Wow.&lt;br /&gt;&lt;br /&gt;A kindof fun bit at the beginning of the night: the adjudicator was stuck in traffic on the 401, and so the show was delayed.  These kids, extroverts all, self-arranged a bunch of skits and singing numbers amongst themselves to entertain the audience until the woman could show up.  Good stuff, too.  :-)&lt;br /&gt;&lt;br /&gt;I have another crack at getting the scanner to work with free software.  I'm installing xsane through Fink as I type this, hopefully it works like it should.  I'd love that scanner to work from my computer: it'd make Encyclopaedia Cameleopardis much simpler.  I have a backup plan: there's a $40 piece of software called VueScan that seems to work, but I like free stuff much better if I can get it to work.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-1950014643443873773?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/1950014643443873773/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=1950014643443873773' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/1950014643443873773'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/1950014643443873773'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/03/snow-and-ice-and-rain-i-love-ontario.html' title='Snow and ice and rain - I Love Ontario'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-6728199143816708810</id><published>2007-02-28T16:35:00.000-05:00</published><updated>2007-02-28T16:47:16.230-05:00</updated><title type='text'>More Home Improvements and Random Happenings</title><content type='html'>Lots of stuff, always lots of stuff.&lt;br /&gt;&lt;br /&gt;Yesterday we finished reinstalling Lisa's sister's computer, then went to the bank, got dog food (we're switching their food - the dog food companies keep changing the formulations to make them cheaper, and our Brown Dog gets sick when they do this), and stripped the rest of the wallpaper in the dining room.  That room is a mess: the walls weren't primed before painting originally, the drywall mud was mixed wrong, and nobody primed or otherwise treated the wall before slapping wallpaper up over the whole mess.  Ugh.  When you pull the wallpaper down, lots of other stuff comes down with it.  That's the story with this house.&lt;br /&gt;&lt;br /&gt;Last night, we helped Jess with her UW application form - it's a lot more complicated to get into Arts at UW than Math.  :-)  They want people who can write... and think!  :-)&lt;br /&gt;&lt;br /&gt;Then we went to bed (watched &lt;span style="font-style: italic;"&gt;Grace Under Fire &lt;/span&gt;and ate snacks first, of course).&lt;br /&gt;&lt;br /&gt;Today we had to get up really early because Jess has an all-day theater thing and had to catch a bus.  When Lisa got home from dropping her off at school, we went back to bed -- we were exhausted!&lt;br /&gt;&lt;br /&gt;Then this afternoon, Lisa did most of the re-mudding of the dining room while I vacuumed the house (one of the Big Thorough Vacuumings you do every once in a while, where you clean everywhere and move furniture and stuff).  We also set the VCR to tape &lt;span style="font-style: italic;"&gt;Lost&lt;/span&gt; - the only TV show that's new this week and we'll miss it.&lt;br /&gt;&lt;br /&gt;Then we took showers (I was HOT after vacuuming everything), and now I'm here.  Who knows what the evening will bring?&lt;br /&gt;&lt;br /&gt;In other news, I'm a big chunk of the way through entering all my Encyclopaedia Cameleopardis characters.  Busily working through.  I've got more Medieval Occupations updates in my pipeline too, that I haven't had a chance to get to.&lt;br /&gt;&lt;br /&gt;Delicious lunch today: Lisa made asparagus+bacon omelettes.  Mmmm.  Probably my favorite thing to eat in the world.  And last night we had delicious leftovers: prime rib, turkey, ribs, mmm.  Hm.  I wonder what we'll eat for dinner tonight?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-6728199143816708810?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/6728199143816708810/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=6728199143816708810' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6728199143816708810'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6728199143816708810'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/02/more-home-improvements-and-random.html' title='More Home Improvements and Random Happenings'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-1865342599691391219</id><published>2007-02-26T16:10:00.000-05:00</published><updated>2007-02-26T16:23:17.269-05:00</updated><title type='text'>Get Rid of Old Stuff ... Profit!</title><content type='html'>Recently we went through a bunch of my old gaming stuff, and weeded out a bunch of stuff that I haven't looked at or touched in years and years.  I've still got a huge collection, but the real junky stuff, it's stupid to haul it around from home to home and never look at it.&lt;br /&gt;&lt;br /&gt;So I've got two big heavy boxes, that I can barely lift, of books.  Old 2nd edition 'Complete X' splatbooks, old Star Wars RPG sourcebooks, a great big stack of &lt;span style="font-style: italic;"&gt;Dragon&lt;/span&gt; and &lt;span style="font-style: italic;"&gt;White Dwarf&lt;/span&gt; magazines, and really weird stuff.&lt;br /&gt;&lt;br /&gt;We figure we'll try to sell it to one of the local gaming stores.  I knew &lt;span style="font-style: italic;"&gt;Now and Then Books&lt;/span&gt; did used stuff, but I hate myself every time I go in there.  &lt;span style="font-style: italic;"&gt;J+J Cards and Collectables&lt;/span&gt; doesn't do it anymore, they said, and so I took it to &lt;span style="font-style: italic;"&gt;Phoenix Games and Hobbies&lt;/span&gt; (formerly &lt;span style="font-style: italic;"&gt;Nexus Games&lt;/span&gt;).&lt;br /&gt;&lt;br /&gt;Lisa stopped outside the door (this is downtown Kitchener, no street parking), and I hauled these heavy boxes in the door, and she goes to park.  While she's gone, I haul these two boxes up the flight of stairs (there's 23 stairs inside the door at &lt;span style="font-style: italic;"&gt;Phoenix&lt;/span&gt;, and a tiny landing at the top.  And they're steep stairs.  And they were heavy boxes.&lt;br /&gt;&lt;br /&gt;By the time I get the boxes up the stairs, I think I'm going to have a heart attack.  I mean, my heart hasn't pounded that hard in years.  &lt;pant&gt;... even now, an hour later, I feel a little out of breath.  So I stood outside the door on the landing for a while, just waiting for my heart to stop racing.&lt;br /&gt;&lt;br /&gt;Finally, I felt good enough to go in (I had enough breath I could talk again), and so I went in, and showed Bill (the owner, I guess) my stash.&lt;br /&gt;&lt;br /&gt;He goes through it for a long time.  At some point, Lisa gets back from parking the car, and we wait while he goes through all this old stuff.  Funny -- not a single piece of it did I regret giving up as I watched him go through it.  Really, though, I still have a huge collection.  Most of this stuff I actively hated.&lt;br /&gt;&lt;br /&gt;So, I was expecting maybe $20-30 for this stuff (I mean really -- who would want it!?), and so when he said I could have $116 in trade, or $96 cash, it was all I could do to take the cash and not giggle hysterically.  :-)  I just wanted to get rid of it, and here he gives me real money.  I took cash ($116 is way too much to spend at this point -- what would I do with all the stuff I got?  I'd have to store it somewhere, and move it...).  The cash can go in the general pot, maybe help buy something we need for the house.&lt;br /&gt;&lt;br /&gt;Wow.  I'm so pleased.  :-)  I never expected to get so much cash.&lt;br /&gt;&lt;br /&gt;So the lessons of the day are:&lt;br /&gt;&lt;ol&gt;&lt;li&gt;exercise is bad, and may kill you&lt;/li&gt;&lt;li&gt;if you have junky old roleplaying books you never use, somebody may give you Real Money for them!&lt;/li&gt;&lt;/ol&gt;Now to rest.  &lt;pant&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-1865342599691391219?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/1865342599691391219/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=1865342599691391219' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/1865342599691391219'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/1865342599691391219'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/02/get-rid-of-old-stuff-profit.html' title='Get Rid of Old Stuff ... Profit!'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-6456994390132958332</id><published>2007-02-26T09:50:00.000-05:00</published><updated>2007-02-26T09:52:37.346-05:00</updated><title type='text'>Yesterday</title><content type='html'>We mostly took yesterday off.  It was Sunday, it had been a long week.  We ran Roomba (which is how you can say 'I vacuumed' without actually having to vacuum.  :-)&lt;br /&gt;&lt;br /&gt;Still tired today.  :-P  Doing some work this morning, though.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-6456994390132958332?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/6456994390132958332/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=6456994390132958332' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6456994390132958332'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6456994390132958332'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/02/yesterday.html' title='Yesterday'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-5100382666237553372</id><published>2007-02-25T10:29:00.000-05:00</published><updated>2007-02-25T10:40:33.977-05:00</updated><title type='text'>The Haps</title><content type='html'>Lots more happenings.&lt;br /&gt;&lt;br /&gt;We moved the Giant Fan out into the garage, in prep for doing the dining room.  Other than the freezer and a dresser and our beautiful dining room table, the room is now empty.  With the new light fixture, it's starting to look like a grown-up dining room.  :-)  Removing the Giant Fan from the room probably did the most for it.&lt;br /&gt;&lt;br /&gt;We packed up all the books into short Rubbermaid containers, and moved the remaining bookshelf units out into the garage for disassembly.  The living room looks a &lt;span style="font-style: italic;"&gt;lot&lt;/span&gt; less cluttered.&lt;br /&gt;&lt;br /&gt;We called &lt;a href="http://www.packagingtoo.com/"&gt;Packaging Too&lt;/a&gt; about a custom box.  We wanted to pack up the swords (previous moves we've tried to make random boxes work, but they poke through the sides, the boxes aren't long enough, and we now have more swords than ever.  Turns out this box company would make a 12x12x48 box out of double-thickness corrugated for $12.  :-)  This after trying and trying to find a commercial box that would work.  We packed the swords up, and it worked like a dream.&lt;br /&gt;&lt;br /&gt; Now the big things left are the dining room refinishing and the garage.  Yay fun.  :-)  And the myriad other tasks ahead of us.  Lisa made a list - there's lots of stuff on it.&lt;br /&gt;&lt;br /&gt;Busy busy.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-5100382666237553372?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/5100382666237553372/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=5100382666237553372' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/5100382666237553372'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/5100382666237553372'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/02/haps.html' title='The Haps'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-1635750224047418056</id><published>2007-02-22T20:37:00.000-05:00</published><updated>2007-02-22T20:44:52.925-05:00</updated><title type='text'>Another day, tons more stuff.</title><content type='html'>Pixie liked her new crate last night, it must seem like a palace to her.  She repaid us by eating a whole sleeve of cookies from Lisa's desk while we were out at her parent's house tonight.  :-)  Bad dog.  They were delicious cookies, too, and 99 cents on sale!&lt;br /&gt;&lt;br /&gt;We did more stuff this morning... a bunch of paperwork that took surprisingly long, and then we went out to mail a letter and eat lunch (mmm... lunch.  We were surprisingly hungry being as we'd only eaten an Cadbury's Easter Creme Egg each this morning).&lt;br /&gt;&lt;br /&gt;When we got home, Lisa packed up a bunch of boxes, and I went out in the garage to disassemble the shelf unit we removed from the living room a few months ago.  Right down to boards.  It was weird: it's the first shelf unit that we've built that I took right apart.  It's surprising how many screws come out of those things before they start not looking like shelves anymore.  :-)&lt;br /&gt;&lt;br /&gt;Oh, and I disassembled the old projector screen while I was out there.&lt;br /&gt;&lt;br /&gt;Then, it was packing up more stuff, hauling more garbage out of the house, then shower and off to Lisa's parents' house for grilled steaks (I like this warmer weather.  Mmmm).  And waffles  with blueberry sauce and whipped cream for dessert.&lt;br /&gt;&lt;br /&gt;Then home again quick to watch &lt;span style="font-style: italic;"&gt;Grey's Anatomy&lt;/span&gt; (which is a wonderful show, still), and find out that the dog ate all the cookies.  And now it's just waiting around until &lt;span style="font-style: italic;"&gt;ER&lt;/span&gt; and bedtime.&lt;br /&gt;&lt;br /&gt;And somewhere in there I made a whole bunch of more updates to my Medieval Occupations page (which is generating a lot of traffic and email the past week or so).  Also, trying (unsuccessfully) to get the scanner to work with my MacBook.  I'll probably just hook it up to my Ubuntu box, where I'm pretty sure it'll just work.  Crummy poor-quality Canon OSX drivers.  :-(&lt;br /&gt;&lt;br /&gt;In short, another good day.  :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-1635750224047418056?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/1635750224047418056/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=1635750224047418056' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/1635750224047418056'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/1635750224047418056'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/02/another-day-tons-more-stuff.html' title='Another day, tons more stuff.'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-608356302472999840</id><published>2007-02-22T09:08:00.000-05:00</published><updated>2007-02-22T09:20:33.635-05:00</updated><title type='text'>Lots of things</title><content type='html'>Lots and lots of things have been going on recently...&lt;br /&gt;&lt;br /&gt;We got Pixie a new crate - we realized suddenly that her old crate was hardly big enough for her to lay down in.  :-)  Apparently she's grown over the past few years.  We're also getting new dog beds for both of them -- their current ones are eyesores, and don't show well.  :-)&lt;br /&gt;&lt;br /&gt;A friendly guy named Jared Oakes submitted a metric ton of new definitions and corrections for my &lt;a href="http://www.svincent.com/MagicJar/Economics/MedievalOccupations.html"&gt;Medieval Occupations page&lt;/a&gt;, making it an even better resource for thousands of gamers and gradeschool children everywhere.  :-)&lt;br /&gt;&lt;br /&gt;I've begun my Big Paper Project, where I start digitizing some of the massive pile of RPG stuff I've been collecting for years (since 83, when I started gaming!).  I've got all of Christian's old characters entered, and a few of my favorites.  At some point I'll publish the pages on the website, maybe after a few more are entered.  The digitization project is currently called &lt;span style="font-style: italic;"&gt;Encyclopaedia Cameleopardis&lt;/span&gt;.  More details will be posted here as it becomes available.&lt;br /&gt;&lt;br /&gt;We moved some dressers around upstairs to make room for Buddy's new bed.  We also cleared out pretty much all of the clutter in our bedroom.  Our bedroom looks quite snazzy -- we're thinking of putting up a new mirror in there.&lt;br /&gt;&lt;br /&gt;We replaced the dining room fixture with the same fixture we did at the top of the stairs, and it's beautiful in there as well.  Next step: stripping wallpaper (maybe today).&lt;br /&gt;&lt;br /&gt;We took down the kitchen table, and moved the island out of the dining room into its place, where it belongs.  The dining room looks &lt;span style="font-style: italic;"&gt;huge&lt;/span&gt;, with the removal of furniture and the new (bright 200W) fixture, it makes a nice place to dine.&lt;br /&gt;&lt;br /&gt;The weather's been very nice.  It snowed last night, but it's warm out.  Lisa grilled steaks last night for dinner -- nice to have that in February.&lt;br /&gt;&lt;br /&gt;We watched the new &lt;span style="font-style: italic;"&gt;Lost&lt;/span&gt; and &lt;span style="font-style: italic;"&gt;House&lt;/span&gt; - &lt;span style="font-style: italic;"&gt;House&lt;/span&gt; wasn't new, but the episode was good, &lt;span style="font-style: italic;"&gt;Lost&lt;/span&gt; is starting to get really really irritating.  &lt;span style="font-style: italic;"&gt;SG-1&lt;/span&gt; had better get good again soon, or I'll regret that I said that 2nd and 3rd season were getting better.&lt;br /&gt;&lt;br /&gt;Other than that, lots more junk consolidation (trips to the dump, trips to the thrift store, rubbermaid containers packed and labeled) and general cleanup.  It's been productive recently.&lt;br /&gt;&lt;br /&gt;I'm amazed at how nice a house can look if you remove all of the &lt;span style="font-style: italic;"&gt;junk&lt;/span&gt;.  It's amazing: not only can you find stuff, a surprising amount of low-level stress is removed when you're in a clean environment.  I had no idea.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-608356302472999840?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/608356302472999840/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=608356302472999840' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/608356302472999840'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/608356302472999840'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/02/lots-of-things.html' title='Lots of things'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-8654711381153843218</id><published>2007-02-18T10:59:00.000-05:00</published><updated>2007-02-18T11:00:45.920-05:00</updated><title type='text'>Photos of our adventure at Medieval Times</title><content type='html'>&lt;div style="float: right; text-align: center; width: 194px; font-family: arial,sans-serif; font-size: 83%;"&gt;&lt;div style="background: transparent url(http://picasaweb.google.com/f/img/transparent_album_background.gif) no-repeat scroll left center; height: 194px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"&gt;&lt;a href="http://picasaweb.google.com/shawn.vincent/MedievalTimes"&gt;&lt;img src="http://lh6.google.com/image/shawn.vincent/Rdh0CDx2RqE/AAAAAAAAARs/CFcyXMtJxa8/s160-c/MedievalTimes.jpg" style="border: medium none ; padding: 0px; margin-top: 16px;" height="160" width="160" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;a href="http://picasaweb.google.com/shawn.vincent/MedievalTimes"&gt;&lt;div style="color: rgb(77, 77, 77); font-weight: bold; text-decoration: none;"&gt;Medieval Times&lt;/div&gt;&lt;/a&gt;&lt;div style="color: rgb(128, 128, 128);"&gt;&lt;/div&gt;&lt;/div&gt;&lt;br /&gt;&lt;br /&gt;Sorry the quality of these photos isn't great: I'm not that good a photographer.  :-)&lt;br /&gt;&lt;br /&gt;But it gives a bit of a taste of what we saw last night.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-8654711381153843218?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/8654711381153843218/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=8654711381153843218' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/8654711381153843218'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/8654711381153843218'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/02/photos-of-our-adventure-at-medieval.html' title='Photos of our adventure at Medieval Times'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-4356395657442236552</id><published>2007-02-17T23:36:00.000-05:00</published><updated>2007-02-17T23:41:47.298-05:00</updated><title type='text'>Medieval Times!</title><content type='html'>We just got back from Medieval Times.  Wow.  Unbelievable entertainment.&lt;br /&gt;&lt;br /&gt;Now, if you're a historic accuracy nut, or a horse nut: you may be disappointed.&lt;br /&gt;&lt;br /&gt;But if you're looking for a good time, to eat chicken with your fingers, to shout for your hero until you're hoarse in the throat, see falcons zooming around overhead, and watch costumed knight dudes whaling on each other with big sharp heavy weapons, this is for you.&lt;br /&gt;&lt;br /&gt;Hint: we do.  :-)&lt;br /&gt;&lt;br /&gt;We had a great time, and look forward to going back again.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-4356395657442236552?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/4356395657442236552/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=4356395657442236552' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/4356395657442236552'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/4356395657442236552'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/02/medieval-times_17.html' title='Medieval Times!'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-1602285262913416572</id><published>2007-02-16T20:10:00.001-05:00</published><updated>2007-02-16T20:10:53.423-05:00</updated><title type='text'>Updated site style.</title><content type='html'>I made a few tweaks to the stylesheet of my website...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-1602285262913416572?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/1602285262913416572/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=1602285262913416572' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/1602285262913416572'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/1602285262913416572'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/02/updated-site-style.html' title='Updated site style.'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-1128558967799248838</id><published>2007-02-16T19:31:00.000-05:00</published><updated>2007-02-16T19:32:39.870-05:00</updated><title type='text'>Yellow Dog Dingo</title><content type='html'>There is a traditional Australian song (I think) that has these lyrics:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Oh yellow dog dingo,&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;how old are you?&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Where did you come from?&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;What did you do?&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;Did you come from Asia,&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic;"&gt;with the Aborigines?&lt;br /&gt;...&lt;br /&gt;&lt;/span&gt;&lt;br /&gt; Does anybody know anything more about this song?&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-1128558967799248838?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/1128558967799248838/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=1128558967799248838' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/1128558967799248838'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/1128558967799248838'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/02/yellow-dog-dingo.html' title='Yellow Dog Dingo'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-3108527434871690724</id><published>2007-02-16T19:12:00.000-05:00</published><updated>2007-02-16T19:27:23.540-05:00</updated><title type='text'>Legacy Systems</title><content type='html'>So I've been thinking about Service Oriented Architectures a lot recently.&lt;br /&gt;&lt;br /&gt;I was a skeptic until I saw a recent excellent presentation on them, and then I could really see the point.  Promoting loose coupling between autonomous systems written in disparate programming languages, this architecture is unique among those proposed today in that it actually attempts to solve the legacy system problem, which is rampant, and not going away anytime soon.&lt;br /&gt;&lt;br /&gt;Legacy systems are irritating.  On the one hand, you want to rewrite them in whatever the latest trendy language is, and have polished gems in your IT department.  On the other hand, it's impossible, since the systems you're trying to replace are insanely complex, because the business problems they're trying to solve are insanely complex.&lt;br /&gt;&lt;br /&gt;Rewrites in the latest trendy language are especially insidious.  I mean, &lt;span style="font-style: italic;"&gt;COBOL&lt;/span&gt; used to be the latest trendy language.  Ada, too.  Maybe Smalltalk.  What about C or C++?  Now it's Java or C#.  At each of these stages, any large system written is building a legacy.  The most recent legacies are no more and no less horrible than the ones before, because in 5-10 years, there'll be a &lt;span style="font-style: italic;"&gt;new &lt;/span&gt;trendy language (maybe some functional language for all the massive multiprocessors that are coming out), and all this Java or C# code will be the millstones hanging around our necks.&lt;br /&gt;&lt;br /&gt;SOA is the first architectural advance that I've seen that directly addresses this problem.  The SOA pundits say: break your system into functional units, and have them call each other using SOAP.  If you design your system right, this may, in fact, give you the leverage to replace individual chunks of functionality in whatever the new trendy language is, in 5-10 years.&lt;br /&gt;&lt;br /&gt;This, of course, is only part of the problem.  You still need good data modeling and databases (because these legacies are particularly hard to migrate).  Also, in 5-10 years, there'll probably be something better than SOAP or XML that we're all supposed to migrate to, which means that your entire system has to come down, and you haven't really won anything.&lt;br /&gt;&lt;br /&gt;I'm a little disappointed in the complexity of some of the SOA standards.  SOAP seems overkill.  If you want loose coupling of systems (and stability of standards over time), don't make your interface language that sophisticated.  I'd have stuck with something really simple and defined elsewhere (maybe HTTP POSTs with string-typed parameters, and XML bodies).  But still, it's a step.&lt;br /&gt;&lt;br /&gt;So, SOA isn't just OO with remote method calls -- it's really a whole new way of thinking about the real problems that affect businesses.  I'm curious how it works in practice.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-3108527434871690724?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/3108527434871690724/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=3108527434871690724' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/3108527434871690724'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/3108527434871690724'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/02/legacy-systems.html' title='Legacy Systems'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-320918894821524999</id><published>2007-02-16T19:09:00.000-05:00</published><updated>2007-02-16T19:28:38.009-05:00</updated><title type='text'>Sleepy Day</title><content type='html'>We didn't end up going to see Dr Edwards: there were flurries and poor visibility on the roads up there (same as last time we tried to go).  This threw us for a bit of a loop, and we were tired and unmotivated today.&lt;br /&gt;&lt;br /&gt;I did blow out the driveway again, and we went to the &lt;span style="font-style: italic;"&gt;Mongolian Grill&lt;/span&gt; for dinner, which we hadn't done in years.&lt;br /&gt;&lt;br /&gt;Tomorrow night we're still on track for &lt;span style="font-style: italic;"&gt;Medieval Times&lt;/span&gt;, so that should be fun.&lt;br /&gt;&lt;br /&gt;EDIT: P.S. &lt;span style="font-style: italic;"&gt;Gray's Anatomy&lt;/span&gt; rocked, as usual.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-320918894821524999?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/320918894821524999/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=320918894821524999' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/320918894821524999'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/320918894821524999'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/02/sleepy-day.html' title='Sleepy Day'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-5809659206797057699</id><published>2007-02-15T15:28:00.000-05:00</published><updated>2007-02-15T15:45:13.901-05:00</updated><title type='text'>We had snacks after all.</title><content type='html'>Last night, we watched &lt;a href="http://en.wikipedia.org/wiki/Grace_Under_Fire"&gt;&lt;span style="font-style: italic;"&gt;Grace Under Fire&lt;/span&gt;&lt;/a&gt;, an entertaining sitcom that we like to watch before we go to bed.  We were finally hungry enough for snacks: I ended up eating a cupcake, chips+dip, and a bowl of &lt;a href="http://en.wikipedia.org/wiki/Shreddies"&gt;Shreddies&lt;/a&gt;.  :-)  A little excessive... I went to bed very full.&lt;br /&gt;&lt;br /&gt;Today, we replaced a ceiling fan with a new light fixture.&lt;br /&gt;&lt;br /&gt;Now, to get a real feel for this you have to realize that we live in a back split suburban home, and there's a flight of stairs that goes up and up and up: 4 flights in all.  When you're outside our bedroom, at the top, you can look down two stories.&lt;br /&gt;&lt;br /&gt;I'm afraid of heights, and the ceiling fan to be replaced is out over the railing, at the end of my reach.&lt;br /&gt;&lt;br /&gt;We had to take down the old ceiling fan, which was the hardest part: one screw holding is up was on the far side of the fixture.  I ended up on a ladder, leaning out, with a stubby screwdriver (so that the extra driver length didn't need to be reached).&lt;br /&gt;&lt;br /&gt;But we got it done.  Here's the product page for the fixture we installed (it's 15" diameter, and takes 2 100W bulbs):&lt;br /&gt;&lt;br /&gt;      &lt;a href="http://www.dvcanada.com/feature_product.php?id=88"&gt;http://www.dvcanada.com/feature_product.php?id=88&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;The ceiling fan that was there was a gaudy brass thing we've hated since we moved into this place, and it serves very little purpose now that we have a superquiet whole-house fan that came with the new furnace.  The new light is classy, and really suits the style of the house.  As an added bonus, all the 3- and 4-way switches on all the floors of the house now have a purpose, and when we go to bed in the dark, one of us doesn't need to stay behind and turn lights off.  Like in a modern home!  :-)&lt;br /&gt;&lt;br /&gt;Then, over a delicious lunch, Lisa and I discussed plans for finishing up the house renos, and how to set up the house for sale.  Big plans.  I'm going to miss spending all this time with her, the past few months have been wonderful.&lt;br /&gt;&lt;br /&gt;I'm planning on cooking something (haven't figured out what yet) -- I realized I hadn't cooked anything in like 6 years, and maybe it's getting a little silly.&lt;br /&gt;&lt;br /&gt;Now I'm doing laundry, the snow is falling again, tonight we're going to Lisa's parents' house for dinner, watching &lt;span style="font-style: italic;"&gt;Gray's Anatomy &lt;/span&gt;and&lt;span style="font-style: italic;"&gt; ER&lt;/span&gt;.   Tomorrow we're off to see Dr Edwards, and Saturday we go to Medieval Times.  A fun cap to the week.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-5809659206797057699?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/5809659206797057699/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=5809659206797057699' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/5809659206797057699'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/5809659206797057699'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/02/we-had-snacks-after-all.html' title='We had snacks after all.'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-7111970201861379891</id><published>2007-02-14T21:09:00.000-05:00</published><updated>2007-02-14T21:10:13.838-05:00</updated><title type='text'>No snack</title><content type='html'>We were still too full from supper for a snack for &lt;span style="font-style: italic;"&gt;Lost&lt;/span&gt; (impenetrable as usual: opening new questions, answering none).  Maybe later.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-7111970201861379891?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/7111970201861379891/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=7111970201861379891' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/7111970201861379891'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/7111970201861379891'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/02/no-snack.html' title='No snack'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-6818833192007724931</id><published>2007-02-14T18:25:00.000-05:00</published><updated>2007-02-14T18:26:22.547-05:00</updated><title type='text'>Delicious supper</title><content type='html'>We ate a delicious supper, with schnitzel, mashed potatoes, broccoli, tomato juice, and leftover lamb chop from last night.&lt;br /&gt;&lt;br /&gt;Mmmm.   I got real full.  Hopefully I have room for snack at 8:00 when &lt;span style="font-style: italic;"&gt;Lost&lt;/span&gt; is on...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-6818833192007724931?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/6818833192007724931/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=6818833192007724931' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6818833192007724931'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6818833192007724931'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/02/delicious-supper.html' title='Delicious supper'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-8938355433430590459</id><published>2007-02-14T16:31:00.000-05:00</published><updated>2007-02-14T16:34:31.817-05:00</updated><title type='text'>Snow snow snow</title><content type='html'>We didn't get as much as some people feared, but we got quite a dump: more than I've seen around here this winter, anyway.&lt;br /&gt;&lt;br /&gt;I got to use the snowblower again: it wouldn't start at first, we had to use the electric start, but once it was going, it did a great job, cutting into big snowbanks, throwing snow everywhere.  Very exciting.  :-)  The driveway is all clear.  Nice.&lt;br /&gt;&lt;br /&gt;I also wore our snowsuit for the first time this winter... actually, probably for the first time since Clyde Road.  I like that.  It always makes me feel like a big kid.  :-)&lt;br /&gt;&lt;br /&gt;We also went out and got a light fixture to replace the top-of-the stairs fixture with.  I think we'll do that tomorrow.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-8938355433430590459?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/8938355433430590459/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=8938355433430590459' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/8938355433430590459'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/8938355433430590459'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/02/snow-snow-snow.html' title='Snow snow snow'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-6491019740568470226</id><published>2007-02-13T22:19:00.000-05:00</published><updated>2007-02-13T22:20:50.705-05:00</updated><title type='text'>Later on...</title><content type='html'>The neighbors have their driveway ripped up by Ontario Hydro.  No lights are on in their house.  Something bad seems to have happened over there (for Hydro to be out after hours in the snow...).  Bad night to be without power.  Cold out there.&lt;br /&gt;&lt;br /&gt;For Lisa: I'm posting all night.  I'm crazy!  :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-6491019740568470226?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/6491019740568470226/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=6491019740568470226' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6491019740568470226'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6491019740568470226'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/02/later-on.html' title='Later on...'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-6942212378191474451</id><published>2007-02-13T19:43:00.000-05:00</published><updated>2007-02-13T19:42:41.270-05:00</updated><title type='text'>Designing the Future</title><content type='html'>People who know me know that I'm a little down on environmentalists.  :-)  It's not that I'm anti-green, it's just that I think people tend not to think a whole lot about what compromises are reasonable.  If you're asking people to change things for the environment, I think it falls on you to ensure that the changes you're asking for will be highly effective, and minimally invasive.&lt;br /&gt;&lt;br /&gt;This guy's got it right (IMHO):&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.msnbc.msn.com/id/7773650/site/newsweek/"&gt;http://www.msnbc.msn.com/id/7773650/site/newsweek/ &lt;/a&gt;&lt;br /&gt;&lt;br /&gt;This is a guy who thinks hard about the problems facing society, and has some very interesting points of view on it.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-6942212378191474451?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/6942212378191474451/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=6942212378191474451' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6942212378191474451'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6942212378191474451'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/02/designing-future.html' title='Designing the Future'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-4025572422791571031</id><published>2007-02-13T19:39:00.000-05:00</published><updated>2007-02-13T19:37:14.873-05:00</updated><title type='text'>The Not So Big House</title><content type='html'>A very interesting site: &lt;a href="http://www.notsobighouse.com/"&gt;&lt;span style="font-style: italic;"&gt;The Not So Big House&lt;/span&gt;&lt;/a&gt;.  Sarah Suzanka is an architect trying to spread the meme that the quantitative aspects of your house (square footage, ceiling height, etc) matter a lot less than the qualitative aspects (beautiful detailing, deliberate and pleasing architecture).&lt;br /&gt;&lt;br /&gt;She says that you should buy smaller houses, and spend the money on making your places nice.&lt;br /&gt;&lt;br /&gt;It's a fun idea: something that's obvious once read.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-4025572422791571031?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/4025572422791571031/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=4025572422791571031' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/4025572422791571031'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/4025572422791571031'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/02/not-so-big-house.html' title='The Not So Big House'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-3106405486351304113</id><published>2007-02-13T19:28:00.000-05:00</published><updated>2007-02-13T07:51:21.264-05:00</updated><title type='text'>A good day...</title><content type='html'>Lots of stuff the past couple of days: we cleaned out the remaining stuff upstairs (sewing supplies, etc), and our desks and files downstairs.  Took another load to the dump and thrift shop.  Looked around (unsuccessfully) for a light fixture to replace the only remaining original light fixture in the house (we're trying a specialty shop tomorrow probably), and went to Rocky Mountain Chocolate Factory, and got some delicious snacks.&lt;br /&gt;&lt;br /&gt;The most delicious thing in the world is these chocolate balls encased in hard candy cinnamon.  They're called "Cinnamon Chocolate Mints" from RMCF, and they only get them around Christmas.  (Except our store here in Kitchener ordered lots, and still has a few left out back).  Unbelievably delicious.&lt;br /&gt;&lt;br /&gt;The furnace guy came today to do our yearly maintenance/check, and fix a few minor things that were wrong with it.  The guy was rude and snarky, and not particularly careful (he ran into things a lot).  Maybe too much testosterone.  He did an ok job though, I guess.&lt;br /&gt;&lt;br /&gt;I got my March &lt;span style="font-style: italic;"&gt;Martha Stewart Living&lt;/span&gt; today, and I've read it already (mostly waiting while the furnace dude went out and got parts).&lt;br /&gt;&lt;br /&gt;We ate delicious lamb chops for dinner.  Mmmm.&lt;br /&gt;&lt;br /&gt;It's &lt;span style="font-style: italic;"&gt;House&lt;/span&gt; tonight, which I'm looking forward to.  I love that show.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;So far, a fun enough day.  Now, bring on tomorrow!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-3106405486351304113?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/3106405486351304113/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=3106405486351304113' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/3106405486351304113'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/3106405486351304113'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/02/good-day.html' title='A good day...'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-6864929647687287387</id><published>2007-02-12T19:03:00.000-05:00</published><updated>2007-02-11T20:52:16.061-05:00</updated><title type='text'>Some minor site updates.</title><content type='html'>I've been meaning to do this for a while, and now I have.&lt;span class="down" style="display: block;" id="formatbar_CreateLink" title="Link" onmouseover="ButtonHoverOn(this);" onmouseout="ButtonHoverOff(this);" onmouseup="" onmousedown="CheckFormatting(event);FormatbarButton('richeditorframe', this, 8);ButtonMouseDown(this);"&gt;&lt;/span&gt;&lt;br /&gt;I've updated my &lt;a href="http://www.svincent.com/shawn/coolsites.html"&gt;ObInternet  Links&lt;/a&gt; and &lt;a href="http://www.svincent.com/shawn/PhotoGallery.html"&gt;Photo Gallery&lt;/a&gt; pages to include badges from my &lt;a href="http://del.icio.us/spvincent"&gt;del.icio.us&lt;/a&gt;  and &lt;a href="http://picasaweb.google.com/shawn.vincent"&gt;Picasa Web Albums&lt;/a&gt; accounts, respectively.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-6864929647687287387?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/6864929647687287387/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=6864929647687287387' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6864929647687287387'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6864929647687287387'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/02/some-minor-site-updates.html' title='Some minor site updates.'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-7082435366651425230</id><published>2007-02-11T20:49:00.000-05:00</published><updated>2007-02-11T10:23:10.107-05:00</updated><title type='text'>Medieval Times...</title><content type='html'>We got tickets for 4 of us to go up to &lt;a href="http://www.medievaltimes.com/"&gt;Medieval Times&lt;/a&gt; this weekend.  It's kindof a Valentine's present from me to Lisa.&lt;br /&gt;&lt;br /&gt;We've never been to this restaurant/show, but we've talked about it for a long time.&lt;br /&gt;&lt;br /&gt;We're looking forward to it.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-7082435366651425230?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/7082435366651425230/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=7082435366651425230' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/7082435366651425230'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/7082435366651425230'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/02/medieval-times.html' title='Medieval Times...'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-5118441195503946966</id><published>2007-02-11T10:15:00.000-05:00</published><updated>2007-02-11T10:19:34.434-05:00</updated><title type='text'>Home Theater</title><content type='html'>&lt;div style="float: right; text-align: center; width: 194px; font-family: arial,sans-serif; font-size: 83%;"&gt;&lt;div style="background: transparent url(http://picasaweb.google.com/f/img/transparent_album_background.gif) no-repeat scroll left center; height: 194px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;"&gt;&lt;a href="http://picasaweb.google.com/shawn.vincent/HomeTheater"&gt;&lt;img src="http://lh5.google.com/image/shawn.vincent/Rc8ynDx2RXE/AAAAAAAAALY/Ils4c1LeCeo/s160-c/HomeTheater.jpg" style="border: medium none ; padding: 0px; margin-top: 16px;" height="160" width="160" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;a href="http://picasaweb.google.com/shawn.vincent/HomeTheater"&gt;&lt;div style="color: rgb(77, 77, 77); font-weight: bold; text-decoration: none;"&gt;Home Theater&lt;/div&gt;&lt;/a&gt;&lt;div style="color: rgb(128, 128, 128);"&gt;&lt;/div&gt;&lt;/div&gt;I finally got around to uploading a few pictures of our home theater setup here: we recently got a new screen and a new component stand, plus a Logitech Harmony 880, which is pretty sweet.&lt;br /&gt;&lt;br /&gt;We really like our setup here.  All we need now is a Wii.  :-)  We actually got 3 extra Wii controllers already, but Wiis are still&lt;br /&gt;too rare to actually get.  &lt;sigh&gt;... one day.&lt;br /&gt;&lt;br /&gt;We don't like going to the theater anymore.  Once you have the theater experience at home, going out with all the loud and stinky people, eating bad food, not being able to pause the movie, not getting to sit on our nice comfy couch...  it's just better to stay home at some point.  :-)&lt;br /&gt;&lt;br /&gt;Oh yeah: the last couple of days, the pictures I've been posting have been taken on my cell phone: a Sony Ericsson W810i.  It's got a 2megapixel camera in it, and takes decent pictures.  Not nearly as nice as our little Canon camera, but you have this one with you all the time, which means you can take pictures constantly.  Better than seeing stuff you want pictures of, and saying "Darn, I wish we had the camera".  :-)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/sigh&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-5118441195503946966?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/5118441195503946966/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=5118441195503946966' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/5118441195503946966'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/5118441195503946966'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/02/home-theater.html' title='Home Theater'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-991728257025941497</id><published>2007-02-10T18:17:00.000-05:00</published><updated>2007-02-10T18:29:33.410-05:00</updated><title type='text'>Home Improvements...</title><content type='html'>&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://www.svincent.com/shawn/blog/uploaded_images/DSC00035-771096.JPG"&gt;&lt;img style="margin: 0pt 0pt 10px 10px; float: right; cursor: pointer;" src="http://www.svincent.com/shawn/blog/uploaded_images/DSC00035-768856.JPG" alt="" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;We went over to Lisa's parents' today: we were bringing over a couple of shelf units that we've been looking to get rid of.  We ended up doing a bunch of minor stuff over there: it was a good day.&lt;br /&gt;&lt;br /&gt;We replaced the threshold in their bathroom with a nice hardwood one, we hung two mirrors in their living room, we fixed a broken lamp (which I'd never done before: turns out it's quite simple: you just replace the whole little bulb/lamp/switch mechanism), alongside bringing in, modifying, etc the shelves.&lt;br /&gt;&lt;br /&gt;You know it's a good day when you finish 5 or 6 projects, and you get to use power tools.  :-)&lt;br /&gt;&lt;br /&gt;Tonight I think we're watching Star Gate again: I think we like it well enough now that we'll get the next season.  I like it well enough that I miss watching it nights that we don't.  So that's something...&lt;br /&gt;&lt;br /&gt;We've also done a whole bunch of work upstairs packing boxes, eliminating stuff, basically streamlining our life.  We've started storing everything in standard-sized Rubbermaid containers with labels on three sides.  Our storage room looks very sharp.&lt;br /&gt;&lt;br /&gt;Soon, the only area left to do in our house is the Garage: which will be a big enough deal, but nice that it's the end.  I'm particularly looking forward to going through the fasteners/screws/hinges/etc box out there, and the tools.  That's needed doing for years now.&lt;br /&gt;&lt;br /&gt;Should also clean off my desk.  Hrm.&lt;br /&gt;&lt;br /&gt;The picture attached to this post I took this evening.  I love when the dogs play.  :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-991728257025941497?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/991728257025941497/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=991728257025941497' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/991728257025941497'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/991728257025941497'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/02/home-improvements.html' title='Home Improvements...'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-6788481540633524104</id><published>2007-02-03T22:35:00.000-05:00</published><updated>2007-02-03T22:38:07.863-05:00</updated><title type='text'>New Screen Ends.</title><content type='html'>In the end, we bought a screen.&lt;br /&gt;&lt;br /&gt;We were in Toronto (the big smoke) yesterday, and stopped in at Tiger Direct.  They had, in stock, a  120" screen for just over $300.  So we went back today and bought it.  We hung it in the living room, and watched Star Gate on it.  It's nice quality, was affordable, and it's even motorized (not that we'll likely use it that way much, but still)...&lt;br /&gt;&lt;br /&gt;Nice picture, particularly compared to projecting on the stripey wallpaper.  :-)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-6788481540633524104?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/6788481540633524104/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=6788481540633524104' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6788481540633524104'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6788481540633524104'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/02/new-screen-ends.html' title='New Screen Ends.'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-7567569881975794866</id><published>2007-01-28T23:16:00.000-05:00</published><updated>2007-01-28T23:38:20.116-05:00</updated><title type='text'>Our January Vacation</title><content type='html'>Lisa and I just got back from our three day trip out to balmy Winnipeg.  The trip was mostly business, but we got to spend time with my mom while we were there, which was big fun.&lt;br /&gt;&lt;br /&gt;"Balmy", of course, is a sick joke:  we were in Winnipeg in January.   It was cold, especially Saturday, the day we flew out.  -25 + serious wind = nasty death-dealing cold.  The kind that freezes your nostrils shut.  I'd forgotten just how cold it can get.  I mean, I've survived far worse, but only in Manitoba.  :-)  I think my blood has thinned a bit since I've moved out to Ontario.&lt;br /&gt;&lt;br /&gt;Despite the cold, we had lots of fun.  We got to see my mom's new house (which is beautiful), and ate lots of delicious foods (which we always like).  A great trip all around.  We're going to have to try to get out there again sometime soon.&lt;br /&gt;&lt;br /&gt;It's always nice to come home again:  &lt;span style="font-style: italic;"&gt;"North, South, East or West, the shortest way home is always the best"&lt;/span&gt;.  Coming home, having extremely excited and happy dogs, sleeping in our own bed: it's nice.&lt;br /&gt;&lt;br /&gt;Tonight we watched &lt;span style="font-style: italic;"&gt;Gray's Anatomy&lt;/span&gt; that taped while we were gone: another wonderful episode.  That show's still my favorite.&lt;br /&gt;&lt;br /&gt;Plus another &lt;span style="font-style: italic;"&gt;Stargate: SG-1&lt;/span&gt; episode.  A good one again.  Season 2 is definitely an improvement over season 1.  Hopefully the upswing continues through season 3.  The episode &lt;span style="font-style: italic;"&gt;1969&lt;/span&gt; is coming up, too.  I'm looking forward to that one (I read the synopsis on a website a while ago, and it looked fun).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-7567569881975794866?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/7567569881975794866/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=7567569881975794866' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/7567569881975794866'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/7567569881975794866'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/01/our-january-vacation.html' title='Our January Vacation'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-2833159640064431206</id><published>2007-01-19T22:01:00.000-05:00</published><updated>2007-01-19T22:05:46.820-05:00</updated><title type='text'>Snow snow snow</title><content type='html'>We finally had a big dump of snow, and I finally got to use our new snowblower.  It worked great.&lt;br /&gt;&lt;br /&gt;It started on the first pull, I figured out how to use a choke easily, and the thing blows the snow wonderfully.&lt;br /&gt;&lt;br /&gt;Of course, never having run a snowblower before, I'm not very good at it.  There are odd constraints on its movement: it's hard to turn a sharp corner, it goes in reverse very slowly, and every time you change direction, you need to rotate the blower chute so the snow goes the right way.&lt;br /&gt;&lt;br /&gt;The combination of these constraints, plus the odd shape of the area I have to blow, makes it difficult to come up with an efficient path: to blow the snow most efficiently, without having to redo areas.  A challenge.  :-)&lt;br /&gt;&lt;br /&gt;Luckily, I get to blow snow again tomorrow: more fell during the day at least, even if no more falls tonight.&lt;br /&gt;&lt;br /&gt;SO much nicer than shoveling.  SO much better.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-2833159640064431206?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/2833159640064431206/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=2833159640064431206' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/2833159640064431206'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/2833159640064431206'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/01/snow-snow-snow.html' title='Snow snow snow'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-2515053975596680142</id><published>2007-01-14T11:25:00.001-05:00</published><updated>2007-01-14T11:27:45.398-05:00</updated><title type='text'>The Future is an Exciting Place</title><content type='html'>The initial shock has worn off.  I'm extremely excited about this news.&lt;br /&gt;&lt;br /&gt;Last week, I was laid off from Exalt.&lt;br /&gt;&lt;br /&gt;It was a wonderful company to work for.  I liked the people, it was an unbelievable learning environment, and I have no regrets about my time there.&lt;br /&gt;&lt;br /&gt;While this kind of news is always a surprise, it couldn't have happened at a better time.  Looking back, I've been ready for a career change for a while.  We were already considering moving out of our house (we've even been preparing, by getting rid of useless possessions).  Jessica just turned 18 and is about to graduate and go off to university.  It's almost as though fate has been preparing us for this event for months.&lt;br /&gt;&lt;br /&gt;As for the future, I'm not worried about employment: I'm extremely qualified, there are lots of jobs, and I still have a few industry contacts.&lt;br /&gt;&lt;br /&gt;The timing and the conditions are perfect.  It's time for a change.&lt;br /&gt;&lt;br /&gt;The future is an exciting place.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-2515053975596680142?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/2515053975596680142/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=2515053975596680142' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/2515053975596680142'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/2515053975596680142'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/01/future-is-exciting-place.html' title='The Future is an Exciting Place'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8441874.post-6124506159534987528</id><published>2007-01-12T12:02:00.000-05:00</published><updated>2007-01-12T12:11:05.629-05:00</updated><title type='text'>Very.  Very.  Long.  Week.</title><content type='html'>This has been the longest and most stressful  week of my life.  Literally.&lt;br /&gt;&lt;br /&gt;But at the same time, the most exciting and inspiring week, also.&lt;br /&gt;&lt;br /&gt;Certainly the most surreal week.&lt;br /&gt;&lt;br /&gt;Good or bad?  I think good, although my opinion changes on that, hour by hour.  It's Change.  And that's always Scary, but usually Good.&lt;br /&gt;&lt;br /&gt;Hopefully I can get through the rest of today without anything Huge or Monumental happening.  I'd like that.  Just get to the weekend to regroup.&lt;br /&gt;&lt;br /&gt;* * *&lt;br /&gt;&lt;br /&gt;But I needed to post now, just to say that I have the most supportive and loving people around me.  People so good to me that I feel I can't possibly deserve it.  I just wanted to say thank you.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8441874-6124506159534987528?l=shawn-vincent.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://shawn-vincent.blogspot.com/feeds/6124506159534987528/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8441874&amp;postID=6124506159534987528' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6124506159534987528'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8441874/posts/default/6124506159534987528'/><link rel='alternate' type='text/html' href='http://shawn-vincent.blogspot.com/2007/01/very-very-long-week.html' title='Very.  Very.  Long.  Week.'/><author><name>Shawn Vincent</name><uri>http://www.blogger.com/profile/11188548575718898864</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='32' height='32' src='http://www.svincent.com/shawn/images/BlueIcon100x100.gif'/></author><thr:total>0</thr:total></entry></feed>
