<?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-8246602636897256311</id><updated>2011-11-30T21:33:34.427-08:00</updated><category term='scripting'/><category term='Unix'/><category term='shell'/><title type='text'>Obertech</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://obertech.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8246602636897256311/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://obertech.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>VernonO</name><uri>http://www.blogger.com/profile/00501969997374258002</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>5</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8246602636897256311.post-5925071837758149291</id><published>2009-10-28T23:28:00.000-07:00</published><updated>2009-10-31T06:12:50.084-07:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='Unix'/><category scheme='http://www.blogger.com/atom/ns#' term='shell'/><category scheme='http://www.blogger.com/atom/ns#' term='scripting'/><title type='text'>Microsoft Event Viewer meets Unix shell tools</title><content type='html'>Part of the core of Unix tool set philosophy is to use small single-purpose tools that both input and output text.These tools can then be chained together, massaging the text along the way.&lt;br /&gt;&lt;br /&gt;Recently, I was tasked with retiring an aging Windows 2003 Server. As a part of that process, I wanted to find out what users were using the Printer shares on the machine.&lt;br /&gt;Printer logging had been activated, and a typical printing event appeared in this format:&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0); font-style: italic;"&gt;9/4/2009        9:26:03 AM      Print   Information     None    10      DOMAIN\username    SERVERNAME Document 56, Microsoft Word - Document10 owned by username was&lt;/span&gt;&lt;br /&gt;&lt;span style="color: rgb(255, 0, 0); font-style: italic;"&gt; printed on PRINTERNAME via port IP_192.1.3.212.  Size in bytes: 108824; pages printed: 5&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;My goal was to output results like the following sorted by PRINTERNAME,username, and of course the Printing events were scattered among the other Windows events.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(255, 0, 0);"&gt;9/4/2009 9:26:03 Print DOMAIN\username PRINTERNAME&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;After exporting the log to text, copying it to a Linux machine, and researching, I came up with the following:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(255, 0, 0);"&gt;# Pull out references to printer events&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(255, 0, 0);"&gt;grep Print.*Information $1 &gt; temp.txt&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(255, 0, 0);"&gt;# Chop off everything behind the printer name pull out desired fields with awk and then sort&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(255, 0, 0);"&gt;while read line&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(255, 0, 0);"&gt;do output=`expr "$line" : '\(.*printed on [a-zA-Z0-9_-]*\)'`&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(255, 0, 0);"&gt;    echo $output | awk '{print $1, $2, $4, $8, $NF }'&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(255, 0, 0);"&gt;done &amp;lt temp.txt | sort -k5,5 -k4,4&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 51);"&gt;Well, it did the job, but I was later inspired to use 'sed' while reading &lt;span style="font-weight: bold;"&gt;"Classic Shell Scripting" &lt;/span&gt;by Arnold Robbins &amp;amp; Nelson H.F. Beebe &lt;/span&gt;&lt;span style="font-style: italic; color: rgb(255, 0, 0);"&gt;.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(255, 0, 0);"&gt;grep Print.*Information $1 | sed s'/ via port.*//'g | awk '{print $1,$2,$4,$8,$NF}' | sort  -k5,5-k4,4&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="color: rgb(51, 0, 51);"&gt;Not surprisingly , execution time for the first script is :&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(255, 0, 0);"&gt;real    0m5.531s&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(255, 0, 0);"&gt;user    0m1.836s&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(255, 0, 0);"&gt;sys    0m3.180s&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Vs. the second:&lt;br /&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(255, 0, 0);"&gt;real    0m1.271s&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(255, 0, 0);"&gt;user    0m0.124s&lt;/span&gt;&lt;br /&gt;&lt;span style="font-style: italic; color: rgb(255, 0, 0);"&gt;sys    0m0.008s&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8246602636897256311-5925071837758149291?l=obertech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://obertech.blogspot.com/feeds/5925071837758149291/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8246602636897256311&amp;postID=5925071837758149291&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8246602636897256311/posts/default/5925071837758149291'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8246602636897256311/posts/default/5925071837758149291'/><link rel='alternate' type='text/html' href='http://obertech.blogspot.com/2009/10/microsoft-event-viewer-meets-unix-shell.html' title='Microsoft Event Viewer meets Unix shell tools'/><author><name>VernonO</name><uri>http://www.blogger.com/profile/00501969997374258002</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8246602636897256311.post-4595393054499738926</id><published>2009-08-08T07:08:00.000-07:00</published><updated>2009-08-08T07:26:31.742-07:00</updated><title type='text'>An obsession with  text</title><content type='html'>In a computing age of ever-increasing abstractions and bloated proprietary file formats, I seem to find myself drawn quite frequently to text-based file formats and command-line interfaces. Maybe its a sign of my age. Maybe I mistrust things unless I fully understand what is going on.&lt;br /&gt;&lt;br /&gt;At any rate, I re-discovered the MoinMoin wiki engine as a means of keeping myself organized and documented at work. Its python-based(which I like) and keeps its pages in simple text in the filesystem(which I also like). I dabbled a little with re-structured text( part of Python's docutils ), and while it may have its  usage as a final document, for example software manuals, I find the wiki concept to be more practical for quickly organizing projects in a free flowing manner.&lt;br /&gt;&lt;br /&gt;I also have used todo.sh to manage a text-based todo list http://ginatrapani.github.com/todo.txt-cli/ , for quite a while now.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8246602636897256311-4595393054499738926?l=obertech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://obertech.blogspot.com/feeds/4595393054499738926/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8246602636897256311&amp;postID=4595393054499738926&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8246602636897256311/posts/default/4595393054499738926'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8246602636897256311/posts/default/4595393054499738926'/><link rel='alternate' type='text/html' href='http://obertech.blogspot.com/2009/08/obsession-with-text.html' title='An obsession with  text'/><author><name>VernonO</name><uri>http://www.blogger.com/profile/00501969997374258002</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8246602636897256311.post-6295700664761050132</id><published>2009-03-11T19:25:00.000-07:00</published><updated>2009-03-11T19:44:32.388-07:00</updated><title type='text'>Only leaders can change the system</title><content type='html'>First, off topic, I recently started reading "Blog Schmog" by Robert W. Bly. Ho Hum, maybe this blogging business isn't so great after all !&lt;br /&gt;&lt;br /&gt;Back to topic, a former CEO at my POE was fond of saying "Most problems are system problems", and then eventually following that with "Only leaders can change the system". Turning this idea to Digital security, how does an IT Person positively affect change , especially if he is not endowed with a strong mandate from C-level management ?&lt;br /&gt;&lt;br /&gt;Three ideas that I have gleaned along the way are thus:( I'm being extremely lazy here and only crediting the person, I should have a hyperlink to the document...Blog Schmog, I guess you are right !)&lt;br /&gt;&lt;br /&gt;First : Marcus Ranum argued that fear as a motivator is unethical and the security pro should try and get security incorporated at the very beginning of projects.&lt;br /&gt;&lt;br /&gt;Second: Richard Bejtlich suggested that we have our mechanisms in place(i.e. forensic friendly) so that when the digital trainwreck occurs , we can step in an give the re-assuring words "We can help".&lt;br /&gt;&lt;br /&gt;Third: Unfortunately, I can't remember this source, but this expert actually prescribed a good dose of fear , esp. in these lean economic times. His view was that idealistic views would not go far given the economic climate.&lt;br /&gt;&lt;br /&gt;For myself, I seem to be having trouble with all of the above, except maybe the second.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8246602636897256311-6295700664761050132?l=obertech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://obertech.blogspot.com/feeds/6295700664761050132/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8246602636897256311&amp;postID=6295700664761050132&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8246602636897256311/posts/default/6295700664761050132'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8246602636897256311/posts/default/6295700664761050132'/><link rel='alternate' type='text/html' href='http://obertech.blogspot.com/2009/03/only-leaders-can-change-system.html' title='Only leaders can change the system'/><author><name>VernonO</name><uri>http://www.blogger.com/profile/00501969997374258002</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8246602636897256311.post-3072784574929927907</id><published>2009-01-10T07:44:00.000-08:00</published><updated>2009-01-10T09:13:52.149-08:00</updated><title type='text'>*NIX distribution thoughts</title><content type='html'>Since I listed as some of my interests being Free and Open Source software, I thought I would summarize some of my beginnings with different distributions. There really is little point in too much, overly dogmatic, &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_0"&gt;flamewars&lt;/span&gt; concerning what is the "best" &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_1"&gt;distro&lt;/span&gt;. When I use the term &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_2"&gt;distro&lt;/span&gt;, I am also including all the other wonderful free Unix-Like &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_3"&gt;OS's&lt;/span&gt; available , including the &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_4"&gt;BSD's&lt;/span&gt; , etc ... . My advice is to start somewhere, learn all you can, then tailor your choice(choice being one of the prime benefits of the FOSS movement) to reflect your own priorities and goals in computing.&lt;br /&gt;&lt;br /&gt;My personal priorities have always been somewhat along these lines:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Stability -- I can't stand crashing software, esp. the proprietary, closed source type&lt;/li&gt;&lt;li&gt;Security -- This includes ease of security updates and patches, esp. since I have for one reason or another been stuck with &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_5"&gt;dialup&lt;/span&gt; &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_6"&gt;internet&lt;/span&gt; access far too often in my life. I have always considered that if I am going to recommend the usage of a FOSS OS at my place of employment , ease of security updates will take a high priority. Ironically, I have been mentally holding FOSS to a higher standard, since the existing proprietary &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_7"&gt;OS's&lt;/span&gt; already in use at my place of employment are "in the lax" in the updating dept.&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Simplicity -- A reliance on text-based configuration and not too much "&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_8"&gt;automagical&lt;/span&gt;" stuff going on. Eye-Candy is nice, but I'm not sure its worth it.&lt;/li&gt;&lt;li&gt;A Sane, dependable choice for a business application or other meaningful work. By this I don't &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_9"&gt;necesarily&lt;/span&gt; mean one of the big supported players in the spirit of &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_10"&gt;RedHat&lt;/span&gt; or &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_11"&gt;Novell&lt;/span&gt;.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;My first &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_12"&gt;linux&lt;/span&gt; installations were Slackware 3.6 back in 1999( I don't remember now why I picked Slackware) This turned out to be a good learning experience and I still have a profound respect for &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_13"&gt;Slackware's&lt;/span&gt; KISS principles. I used Slackware successfully to run a &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_14"&gt;PHP&lt;/span&gt;-MySQL auction(real-time,live) system for a fund raiser sometime back in '03 or '04. Excellent performance and stability on modest hardware.&lt;br /&gt;&lt;br /&gt;I also dabbled with &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_15"&gt;RedHat&lt;/span&gt;(&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_16"&gt;pre&lt;/span&gt;-Fedora days) actually using it at my employment for routing and a &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_17"&gt;fileserver&lt;/span&gt;, again on very modest hardware. I also used the &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_18"&gt;Freesco&lt;/span&gt; routing &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_19"&gt;distro&lt;/span&gt; in various roles.&lt;br /&gt;&lt;br /&gt;Debian Stable is currently my most used &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_20"&gt;distro&lt;/span&gt; and it pretty much allows me to meet the goals stated above.Secure-Apt is now standard and addresses some of the issues with downloading software from the Internet.For example, how do you know what you are downloading hasn't been &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_21"&gt;trojaned&lt;/span&gt;, etc ... . Its also handy for updating machines not connected to a broadband connection. Just copy the .deb packages(previously downloaded via apt) to /var/cache/apt/archives on the target machine, and away you go.&lt;br /&gt;&lt;br /&gt; I have dabbled in FreeBSD and will continue, although I have found it difficult to keep updated(third-party ports).&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_22"&gt;Portaudit&lt;/span&gt; is a very handy utility for checking your currently installed ports for vulnerabilities.  The core system is actually easy(to update) , even on &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_23"&gt;dialup&lt;/span&gt; . You have the choice of binary updates via &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_24"&gt;freebsd&lt;/span&gt;-update or &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_25"&gt;CVS&lt;/span&gt; with direct compilation. The compilation of the kernel and &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_26"&gt;userland&lt;/span&gt; I have found to be very straight-forward and for lack of a better word "awesome".I have found the structure of FreeBSD to be very organized and "sane", for example, all third party ports and &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_27"&gt;configs&lt;/span&gt; are placed in /&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_28"&gt;usr&lt;/span&gt;/local . A FreeBSD-based server is probably easier to update with regards to ports than a GUI-heavy workstation. As an example, &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_29"&gt;firefox&lt;/span&gt; seems to require constant updating( goes with the turf in being a browser and all ), but with all the dependencies , etc ... constant re-compilation grows painful fast.With &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_30"&gt;dialup&lt;/span&gt; it becomes almost unthinkable.Currently, at my place of employment , I am using a FreeBSD-based machine as a Network Security Monitor in the spirit of http://www.taosecurity.com/ . As an aside and giving credit, Mr. &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_31"&gt;Bejtlich's&lt;/span&gt;(of &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_32"&gt;taosecurity&lt;/span&gt; ) books and ideas are very worthy reading.&lt;br /&gt;&lt;br /&gt;&lt;span class="blsp-spelling-error" id="SPELLING_ERROR_33"&gt;Ubuntu&lt;/span&gt; has been receiving a lot of attention lately, but I haven't had the time to explore it much. My thoughts are, &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_34"&gt;Ubuntu&lt;/span&gt; is based on Debian, why not just go to the "pure root" ? Also, the Universe package repository, if I understand correctly, does not receive proper security and bug updates. &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_35"&gt;Ubuntu&lt;/span&gt; is also dependent upon Canonical, whereas Debian is Community-based.&lt;br /&gt;&lt;br /&gt;Recently, I noticed the &lt;span class="blsp-spelling-error" id="SPELLING_ERROR_36"&gt;Minix&lt;/span&gt; project has been &lt;span class="blsp-spelling-corrected" id="SPELLING_ERROR_37"&gt;resurrected&lt;/span&gt; and has some interesting ideas. Plan9 also has some interesting concepts.Probably too much to explore in my lifetime/intellect, but again its wonderful to have a choice. These choices also make the options of learning about computing much greater. I hope to contribute to the FOSS in the best way I can.&lt;br /&gt;&lt;br /&gt;Reading over this post, I realize my writing skills, if I ever had any are rusty. Perhaps this blog will turn out to be one way of polishing them.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8246602636897256311-3072784574929927907?l=obertech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://obertech.blogspot.com/feeds/3072784574929927907/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8246602636897256311&amp;postID=3072784574929927907&amp;isPopup=true' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8246602636897256311/posts/default/3072784574929927907'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8246602636897256311/posts/default/3072784574929927907'/><link rel='alternate' type='text/html' href='http://obertech.blogspot.com/2009/01/nix-distribution-thoughts.html' title='*NIX distribution thoughts'/><author><name>VernonO</name><uri>http://www.blogger.com/profile/00501969997374258002</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8246602636897256311.post-5775936895231539147</id><published>2009-01-10T06:08:00.000-08:00</published><updated>2009-01-10T06:14:36.483-08:00</updated><title type='text'>Starting Post</title><content type='html'>I'm not sure how much I'll post here. My interests tend toward open source and free software subjects, science , ecology , and sustainable stewardship of the earth's resources. My current day job title is "Network Administrator" at a small rural critical access hospital.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/8246602636897256311-5775936895231539147?l=obertech.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://obertech.blogspot.com/feeds/5775936895231539147/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=8246602636897256311&amp;postID=5775936895231539147&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8246602636897256311/posts/default/5775936895231539147'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8246602636897256311/posts/default/5775936895231539147'/><link rel='alternate' type='text/html' href='http://obertech.blogspot.com/2009/01/starting-post.html' title='Starting Post'/><author><name>VernonO</name><uri>http://www.blogger.com/profile/00501969997374258002</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
