<?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:blogger='http://schemas.google.com/blogger/2008' 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-1261911748129061176</id><updated>2024-10-24T21:01:06.395-07:00</updated><category term="software"/><category term="batch"/><category term="IM"/><category term="Vista"/><category term="badware"/><category term="music"/><category term="programming"/><category term="wireless"/><title type='text'>The End of the Net</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://theendofthenet.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1261911748129061176/posts/default?redirect=false'/><link rel='alternate' type='text/html' href='http://theendofthenet.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>wwjdcsk</name><uri>http://www.blogger.com/profile/08225312330291852674</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>13</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-1261911748129061176.post-6712516726948691847</id><published>2008-05-28T21:45:00.000-07:00</published><updated>2008-05-28T21:55:51.889-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Vista"/><category scheme="http://www.blogger.com/atom/ns#" term="wireless"/><title type='text'>Vista Does Not Like WEP</title><content type='html'>I have spent days trying to get a new Vista Laptop to connect to a WEP-encrypted network...with much frustration. At first I got it to the point where I entered a WEP passphrase but then it was asking me for a domain logon. That would be fine if there was 802.11 Authentication, but there was none. At one point it finally connected, i have no idea how, and it worked for a few days. However, when it got disconnected, i could never reconnect. After many retries and getting authentication dialogs and could not login errors, i turned to some searching. After not finding much helpful information online, i was about to try just going unsecured, but i saw a post that said Vista drops WEP in and out. So i switched to WPA2 and Vista seems to be ok with that. We have a saying for this at work...VISATA SUCKS!&lt;br /&gt;&lt;br /&gt;So if you have any Vista machines on your network, you probably want to try something other than WEP for encryption.  Not to mention WEP&#39;s numerous &lt;a href=&quot;http://en.wikipedia.org/wiki/Wired_Equivalent_Privacy&quot;&gt;vulnerabilities&lt;/a&gt;.</content><link rel='replies' type='application/atom+xml' href='http://theendofthenet.blogspot.com/feeds/6712516726948691847/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1261911748129061176/6712516726948691847' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1261911748129061176/posts/default/6712516726948691847'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1261911748129061176/posts/default/6712516726948691847'/><link rel='alternate' type='text/html' href='http://theendofthenet.blogspot.com/2008/05/vista-does-not-like-wep.html' title='Vista Does Not Like WEP'/><author><name>wwjdcsk</name><uri>http://www.blogger.com/profile/08225312330291852674</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1261911748129061176.post-405257861566191282</id><published>2008-05-02T19:41:00.000-07:00</published><updated>2008-05-02T19:53:05.804-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="batch"/><category scheme="http://www.blogger.com/atom/ns#" term="software"/><title type='text'>Batch Function for String Padding</title><content type='html'>&lt;pre&gt;&lt;br /&gt;::=======================================================&lt;br /&gt;:padStringLeft string width padCharacter&lt;br /&gt;::    author: wwjdcsk&lt;br /&gt;::                 -- pads the front of a string with specified characters to the width specified&lt;br /&gt;::=======================================================&lt;br /&gt;::                 -- string [in,out] - time to be formatted, mutated&lt;br /&gt;::                 -- width [in] - width of resulting string&lt;br /&gt;::                 -- character [in,opt] - character to pad with, default is space&lt;br /&gt;SETLOCAL ENABLEDELAYEDEXPANSION&lt;br /&gt;call set inStr=%%%~1%%&lt;br /&gt;set width=%2&lt;br /&gt;set /a width-=1&lt;br /&gt;set pad=%3&lt;br /&gt;if &quot;%pad%&quot;==&quot;&quot; set pad= &amp;::space&lt;br /&gt;&lt;br /&gt;for /l %%i in (0,1,%width%) do (&lt;br /&gt;   if &quot;!inStr:~%%i,1!&quot;==&quot;&quot; set inStr=%pad%!inStr!&lt;br /&gt;)&lt;br /&gt;&lt;br /&gt;( ENDLOCAL &amp; REM -- RETURN VALUES&lt;br /&gt;    IF &quot;%~1&quot; NEQ &quot;&quot; SET &quot;%~1=%inStr%&quot;&lt;br /&gt;)&lt;br /&gt;goto :eof&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;::=======================================================&lt;br /&gt;:padStringRight string width padCharacter&lt;br /&gt;::    author: wwjdcsk&lt;br /&gt;::                 -- pads the back of a string with specified characters to the width specified&lt;br /&gt;::=======================================================&lt;br /&gt;::                 -- string [in,out] - time to be formatted, mutated&lt;br /&gt;::                 -- width [in] - width of resulting string&lt;br /&gt;::                 -- character [in,opt] - character to pad with, default is space&lt;br /&gt;SETLOCAL ENABLEDELAYEDEXPANSION&lt;br /&gt;call set inStr=%%%~1%%&lt;br /&gt;set width=%2&lt;br /&gt;set /a width-=1&lt;br /&gt;set pad=%3&lt;br /&gt;if &quot;%pad%&quot;==&quot;&quot; set pad= &amp;::space&lt;br /&gt;&lt;br /&gt;for /l %%i in (0,1,%width%) do (&lt;br /&gt;   if &quot;!inStr:~%%i,1!&quot;==&quot;&quot; set inStr=!inStr!%pad%&lt;br /&gt;)&lt;br /&gt;&lt;br /&gt;( ENDLOCAL &amp; REM -- RETURN VALUES&lt;br /&gt;    IF &quot;%~1&quot; NEQ &quot;&quot; SET &quot;%~1=%inStr%&quot;&lt;br /&gt;)&lt;br /&gt;goto :eof&lt;br /&gt;&lt;/pre&gt;</content><link rel='replies' type='application/atom+xml' href='http://theendofthenet.blogspot.com/feeds/405257861566191282/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1261911748129061176/405257861566191282' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1261911748129061176/posts/default/405257861566191282'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1261911748129061176/posts/default/405257861566191282'/><link rel='alternate' type='text/html' href='http://theendofthenet.blogspot.com/2008/05/batch-function-for-string-padding.html' title='Batch Function for String Padding'/><author><name>wwjdcsk</name><uri>http://www.blogger.com/profile/08225312330291852674</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1261911748129061176.post-5192285242872929072</id><published>2008-05-02T18:15:00.001-07:00</published><updated>2008-05-02T19:38:19.203-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="batch"/><category scheme="http://www.blogger.com/atom/ns#" term="software"/><title type='text'>Functions in Batch</title><content type='html'>&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjRNb5sZ9BxQV9xubxTcB8frpLA51kHGI8mazOuKZ5PEDSSQ4Y5jWedjOxVZNcPp8oP0iDAtrNk_1d5hQW1oI7K6tWBWsl8No15w334B22Qrk7VG4ZtmdoIGAXtPFItz2lFkq6Fs6bpYOM/s400/Command+Prompt.png&quot;&gt;&lt;img height=&quot;150&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjRNb5sZ9BxQV9xubxTcB8frpLA51kHGI8mazOuKZ5PEDSSQ4Y5jWedjOxVZNcPp8oP0iDAtrNk_1d5hQW1oI7K6tWBWsl8No15w334B22Qrk7VG4ZtmdoIGAXtPFItz2lFkq6Fs6bpYOM/s400/Command+Prompt.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;Most  people underestimate the power of batch scripting...did you know you can have functions in batch files?  Yes, you can!! fully re-enterant ones too...&lt;br /&gt;&lt;br /&gt;Here&#39;s a good tutorial on how to make batch functions:&lt;br /&gt;&lt;a href=&quot;http://www.dostips.com/DtTutoFunctions.php&quot;&gt;http://www.dostips.com/DtTutoFunctions.php&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Here are some good batch scripting references that I use:&lt;br /&gt;&lt;a href=&quot;http://www.robvanderwoude.com/batchfiles.html&quot;&gt;http://www.robvanderwoude.com/batchfiles.html&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.ss64.com/nt/&quot;&gt;http://www.ss64.com/nt/&lt;/a&gt;&lt;br /&gt;&lt;a href=&quot;http://www.dostips.com/&quot;&gt;http://www.dostips.com/&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://theendofthenet.blogspot.com/feeds/5192285242872929072/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1261911748129061176/5192285242872929072' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1261911748129061176/posts/default/5192285242872929072'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1261911748129061176/posts/default/5192285242872929072'/><link rel='alternate' type='text/html' href='http://theendofthenet.blogspot.com/2008/05/functions-in-batch.html' title='Functions in Batch'/><author><name>wwjdcsk</name><uri>http://www.blogger.com/profile/08225312330291852674</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjRNb5sZ9BxQV9xubxTcB8frpLA51kHGI8mazOuKZ5PEDSSQ4Y5jWedjOxVZNcPp8oP0iDAtrNk_1d5hQW1oI7K6tWBWsl8No15w334B22Qrk7VG4ZtmdoIGAXtPFItz2lFkq6Fs6bpYOM/s72-c/Command+Prompt.png" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1261911748129061176.post-7581548333599759338</id><published>2008-02-11T01:39:00.000-08:00</published><updated>2008-02-11T09:15:51.045-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="software"/><title type='text'>So long...POW!</title><content type='html'>AnalogX POW! A nifty little popup destroyer for IE.  It has slammed 14183 popups to date on my machine.&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiCyB8BLmZtcb4VQ2q05saEicj_f4I4IxEZvIpRT9XEsqH8c2Ho__4YxW3BEYNq6GvjQuvPoDZjsLZt4Uo7RhK7lx29UXQeL3dYF6-r36rJ8UOmXcyrbtiwQ6Ml7RAzM_b-NTpA8ZP9R_na/s1600-h/pow.jpg&quot;&gt;&lt;br /&gt;&lt;br /&gt;&lt;div align=&quot;center&quot;&gt;&lt;img src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiCyB8BLmZtcb4VQ2q05saEicj_f4I4IxEZvIpRT9XEsqH8c2Ho__4YxW3BEYNq6GvjQuvPoDZjsLZt4Uo7RhK7lx29UXQeL3dYF6-r36rJ8UOmXcyrbtiwQ6Ml7RAzM_b-NTpA8ZP9R_na/s400/pow.jpg&quot; border=&quot;0&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5165658201128109106&quot; /&gt;&lt;/div&gt;&lt;/a&gt;&lt;br /&gt; &lt;br /&gt;But it has been running in the system tray for a few years now since I no longer use IE.  Opera does a very nice job in blocking ads.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.analogx.com/CONTENTS/download/network/pow.htm&quot;&gt;http://www.analogx.com/CONTENTS/download/network/pow.htm&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;I guess it is no longer needed...it definitely served it&#39;s purpose</content><link rel='replies' type='application/atom+xml' href='http://theendofthenet.blogspot.com/feeds/7581548333599759338/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1261911748129061176/7581548333599759338' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1261911748129061176/posts/default/7581548333599759338'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1261911748129061176/posts/default/7581548333599759338'/><link rel='alternate' type='text/html' href='http://theendofthenet.blogspot.com/2008/02/so-longpow.html' title='So long...POW!'/><author><name>wwjdcsk</name><uri>http://www.blogger.com/profile/08225312330291852674</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiCyB8BLmZtcb4VQ2q05saEicj_f4I4IxEZvIpRT9XEsqH8c2Ho__4YxW3BEYNq6GvjQuvPoDZjsLZt4Uo7RhK7lx29UXQeL3dYF6-r36rJ8UOmXcyrbtiwQ6Ml7RAzM_b-NTpA8ZP9R_na/s72-c/pow.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1261911748129061176.post-2887566340322368828</id><published>2008-02-10T19:17:00.001-08:00</published><updated>2008-02-11T09:16:32.644-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="IM"/><category scheme="http://www.blogger.com/atom/ns#" term="software"/><title type='text'>From DeadAIM to Pidgin</title><content type='html'>I have been using AIM v5.5.3595 with DeadAIM v4.5 since 2004.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/DeadAIM&quot;&gt;http://en.wikipedia.org/wiki/DeadAIM&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Looks like it&#39;s reign is coming to an end.  Welcome &lt;a href=&quot;http://www.pidgin.im/&quot;&gt; Pidgin&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;div align=&quot;left&quot;&gt;&lt;img src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEirbROPOzCDEi7AR9v8b6MEd7pPLQvPtCTWapb1UoWsQzN43a3jPCcnzKvFZpyGB1cz6qstsyAn2WcjyKOSRTM0WrM4z0gNE9iA7QwhpLAx1ZlqxVjplZgj0Jfp77EMFc5pxUVt7uXM2Hvy/s400/pidgin.png&quot; border=&quot;0&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5165660168223130690&quot; /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://theendofthenet.blogspot.com/feeds/2887566340322368828/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1261911748129061176/2887566340322368828' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1261911748129061176/posts/default/2887566340322368828'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1261911748129061176/posts/default/2887566340322368828'/><link rel='alternate' type='text/html' href='http://theendofthenet.blogspot.com/2008/02/from-deadaim-to-pidgin.html' title='From DeadAIM to Pidgin'/><author><name>wwjdcsk</name><uri>http://www.blogger.com/profile/08225312330291852674</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEirbROPOzCDEi7AR9v8b6MEd7pPLQvPtCTWapb1UoWsQzN43a3jPCcnzKvFZpyGB1cz6qstsyAn2WcjyKOSRTM0WrM4z0gNE9iA7QwhpLAx1ZlqxVjplZgj0Jfp77EMFc5pxUVt7uXM2Hvy/s72-c/pidgin.png" height="72" width="72"/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1261911748129061176.post-1979047720797116332</id><published>2008-02-10T18:48:00.001-08:00</published><updated>2008-02-11T00:16:26.517-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="music"/><category scheme="http://www.blogger.com/atom/ns#" term="software"/><title type='text'>Shoutcast in VLC</title><content type='html'>Shotcast has always been something you can use with Winamp, but you can also listen to Shoutcast radio and watch Shoutcast TV right in VLC media player.&lt;br/&gt;&lt;br/&gt;Download &lt;a href=&quot;http://www.videolan.org/&quot;&gt;VLC Media Player&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;Click View -&gt; Playlists, then &lt;br/&gt;Manage -&gt; Service Discovery -&gt; Shoutcast radio listings/Shoutcast TV listings&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhzDYF5UdvXM4ElgRCEdnBDLO0WzvnfKS4YVIJoMULwrD71T3UYtddTbGd5ACYYCRp43r2cZLndId0vfQNHqSeRyntrHAkWjRu-RPhKGS7dlZGONct39PtuuOJtFny234K0OVxT0G55krLa/s1600-h/vlc_shoutcast.jpg&quot;&gt;&lt;img src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhzDYF5UdvXM4ElgRCEdnBDLO0WzvnfKS4YVIJoMULwrD71T3UYtddTbGd5ACYYCRp43r2cZLndId0vfQNHqSeRyntrHAkWjRu-RPhKGS7dlZGONct39PtuuOJtFny234K0OVxT0G55krLa/s400/vlc_shoutcast.jpg&quot; border=&quot;0&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5165551634399560738&quot; /&gt;&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;&lt;br/&gt;You can listen to thousand of radio stations for free.</content><link rel='replies' type='application/atom+xml' href='http://theendofthenet.blogspot.com/feeds/1979047720797116332/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1261911748129061176/1979047720797116332' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1261911748129061176/posts/default/1979047720797116332'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1261911748129061176/posts/default/1979047720797116332'/><link rel='alternate' type='text/html' href='http://theendofthenet.blogspot.com/2008/02/shoutcast-in-vlc.html' title='Shoutcast in VLC'/><author><name>wwjdcsk</name><uri>http://www.blogger.com/profile/08225312330291852674</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhzDYF5UdvXM4ElgRCEdnBDLO0WzvnfKS4YVIJoMULwrD71T3UYtddTbGd5ACYYCRp43r2cZLndId0vfQNHqSeRyntrHAkWjRu-RPhKGS7dlZGONct39PtuuOJtFny234K0OVxT0G55krLa/s72-c/vlc_shoutcast.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1261911748129061176.post-2959998722516683845</id><published>2007-12-05T08:45:00.001-08:00</published><updated>2007-12-19T07:10:47.675-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="software"/><title type='text'>JDiskReport - A Free Visual Disk Utilization Tool</title><content type='html'>If you want to know what files and folders are taking up the most space on your hard drive, or find out what old and obsolete files you have, JDiskReport is a great tool. &lt;br /&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://4sysops.com/wp-content/uploads/2007/05/jdiskreport1.png&quot;&gt;&lt;img style=&quot;display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px;&quot; src=&quot;http://4sysops.com/wp-content/uploads/2007/05/jdiskreport1.png&quot; border=&quot;0&quot; alt=&quot;&quot; /&gt;&lt;/a&gt;&lt;br /&gt;Download it from the site:&lt;br /&gt;&lt;a href=&quot;http://www.jgoodies.com/freeware/jdiskreport/&quot;&gt;http://www.jgoodies.com/freeware/jdiskreport/&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://theendofthenet.blogspot.com/feeds/2959998722516683845/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1261911748129061176/2959998722516683845' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1261911748129061176/posts/default/2959998722516683845'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1261911748129061176/posts/default/2959998722516683845'/><link rel='alternate' type='text/html' href='http://theendofthenet.blogspot.com/2007/12/jdiskreport-free-visual-disk.html' title='JDiskReport - A Free Visual Disk Utilization Tool'/><author><name>wwjdcsk</name><uri>http://www.blogger.com/profile/08225312330291852674</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1261911748129061176.post-2557424971141954027</id><published>2007-10-04T23:33:00.000-07:00</published><updated>2007-12-19T07:11:10.438-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="software"/><title type='text'>[Free] Software Used</title><content type='html'>Text Editor [syntax highlighting/multi-language/multi-document]&lt;br /&gt;&lt;a href=&quot;http://notepad-plus.sourceforge.net/uk/site.htm&quot;&gt;Notepad++&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;FTP Server [lots of configuration options]&lt;br /&gt;&lt;a href=&quot;http://www.zftpserver.com/&quot;&gt;zFTP Server&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;FTP Client&lt;br /&gt;&lt;a href=&quot;http://filezilla-project.org/&quot;&gt;FileZila&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Subversion Client [document repository/windows explorer integration]&lt;br /&gt;&lt;a href=&quot;http://tortoisesvn.tigris.org/&quot;&gt;TortoiseSVN&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Code Documentation [C, C++, Java code documentation with multi-output format]&lt;br /&gt;&lt;a href=&quot;http://www.stack.nl/~dimitri/doxygen/&quot;&gt;Doxygen&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;PDF Creation&lt;br /&gt;&lt;a href=&quot;http://www.pdfforge.org/products/pdfcreator&quot;&gt;PDFCreator&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Mass ID3 Tagger [amazing power]&lt;br /&gt;&lt;a href=&quot;http://www.id3-tagit.de/&quot;&gt;ID3-TagIT&lt;/a&gt;&lt;br /&gt;(it is now depreciated on the author&#39;s site, but you can still download it from various download servers)&lt;br /&gt;&lt;br /&gt;Lyrics Viewer [automatically searches for lyrics from your media player]&lt;br /&gt;&lt;a href=&quot;http://www.evillabs.sk/evillyrics/&quot;&gt;Evil Lyrics&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Video Player [plays many many formats]&lt;br /&gt;&lt;a href=&quot;http://www.videolan.org/&quot;&gt;VideoLAN - VLC media player&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Podcast Receiver&lt;br /&gt;&lt;a href=&quot;http://juicereceiver.sourceforge.net/&quot;&gt;Juice&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;MP3 Streaming Server&lt;br /&gt;&lt;a href=&quot;http://www.vibestreamer.com/&quot;&gt;Vibe Streamer&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://theendofthenet.blogspot.com/feeds/2557424971141954027/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1261911748129061176/2557424971141954027' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1261911748129061176/posts/default/2557424971141954027'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1261911748129061176/posts/default/2557424971141954027'/><link rel='alternate' type='text/html' href='http://theendofthenet.blogspot.com/2007/10/free-software-used.html' title='[Free] Software Used'/><author><name>wwjdcsk</name><uri>http://www.blogger.com/profile/08225312330291852674</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1261911748129061176.post-3285396258144837261</id><published>2007-10-04T23:30:00.000-07:00</published><updated>2007-12-19T07:11:44.355-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="software"/><title type='text'>Windows Installer CleanUp Utility</title><content type='html'>If you have a program that you have tried to uninstall, but the system still thinks it is installed, you need to run this utility.  It removes instances of the program from the installer database.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://support.microsoft.com/kb/290301&quot;&gt;http://support.microsoft.com/kb/290301&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://theendofthenet.blogspot.com/feeds/3285396258144837261/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1261911748129061176/3285396258144837261' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1261911748129061176/posts/default/3285396258144837261'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1261911748129061176/posts/default/3285396258144837261'/><link rel='alternate' type='text/html' href='http://theendofthenet.blogspot.com/2007/10/windows-installer-cleanup-utility.html' title='Windows Installer CleanUp Utility'/><author><name>wwjdcsk</name><uri>http://www.blogger.com/profile/08225312330291852674</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1261911748129061176.post-8098459830971691246</id><published>2007-10-04T23:20:00.000-07:00</published><updated>2008-02-11T06:29:57.834-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="badware"/><category scheme="http://www.blogger.com/atom/ns#" term="software"/><title type='text'>Crapware Removal and Protection</title><content type='html'>&lt;p&gt;&lt;i&gt;aka spyware/malware/grayware/badware&lt;br/&gt;&lt;/i&gt;&lt;/p&gt;below is a section of the complete guide, found here: &lt;a id=&quot;publishedDocumentUrl&quot; class=&quot;tabcontent&quot; target=&quot;_blank&quot; href=&quot;http://www.blogger.com/Doc?id=dwsc896_17hk27g9&quot;&gt;http://docs.google.com/Doc?id=dwsc896_17hk27g9&lt;/a&gt;&lt;br/&gt;&lt;ol&gt;&lt;li&gt;Antivirus &lt;span style=&quot;color:#ff0000;&quot;&gt;**use only one antivirus software on a computer at any time&lt;/span&gt;  &lt;ol&gt;&lt;li&gt;Symantec Client Security (on Bevoware)  &lt;/li&gt;&lt;li&gt;&lt;a title=&quot;AVG&quot; href=&quot;http://www.grisoft.com/doc/downloads-products/us/crp/0?prd=ish&quot; target=&quot;_blank&quot;&gt;AVG&lt;/a&gt; (free)  &lt;/li&gt;&lt;li&gt;&lt;a title=&quot;Avast&quot; href=&quot;http://www.avast.com/eng/download-avast-home.html&quot;&gt;Avast&lt;/a&gt; &lt;/li&gt;&lt;/ol&gt;&lt;/li&gt;&lt;li&gt;Firewall &lt;span style=&quot;color:#ff0000;&quot;&gt;**use only one&lt;/span&gt;&lt;/li&gt;&lt;ol&gt;&lt;li&gt;&lt;p&gt;&lt;span style=&quot;color:#ff0000;&quot;&gt;&lt;span style=&quot;color:#000000;&quot;&gt;Symantec Firewall&lt;/span&gt;&lt;br/&gt;&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;ol&gt;&lt;li&gt;&lt;a title=&quot;ZoneAlarm&quot; href=&quot;http://www.zonealarm.com/store/content/company/products/znalm/freeDownload.jsp?dc=12bms&amp;ctry=US&amp;lang=en&quot;&gt;ZoneAlarm&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a title=&quot;Sunbelt Personal Firewall&quot; href=&quot;http://www.sunbelt-software.com/Home-Home-Office/Sunbelt-Personal-Firewall/&quot;&gt;Sunbelt Personal Firewall&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a title=&quot;Comodo&quot; href=&quot;http://www.personalfirewall.comodo.com/&quot;&gt;Comodo&lt;/a&gt; &lt;/li&gt;&lt;/ol&gt;&lt;li&gt;&lt;a title=&quot;Spybot Search &amp; Destory&quot; href=&quot;http://spybot.info/en/download/index.html&quot; target=&quot;_blank&quot;&gt;Spybot Search &amp;amp; Destory&lt;/a&gt;  &lt;/li&gt;&lt;li&gt;&lt;a title=&quot;Startup Control Panel&quot; href=&quot;http://www.mlin.net/StartupCPL.shtml&quot; target=&quot;_blank&quot;&gt;Startup Control Panel&lt;/a&gt;  &lt;/li&gt;&lt;li&gt;&lt;a title=&quot;Hijack This&quot; href=&quot;http://www.trendsecure.com/portal/en-US/threat_analytics/hijackthis.php?page=download&quot; target=&quot;_blank&quot;&gt;Hijack This&lt;/a&gt;  &lt;/li&gt;&lt;li&gt;&lt;a title=&quot;SpywareBlaster&quot; href=&quot;http://www.javacoolsoftware.com/sbdownload.html&quot; target=&quot;_blank&quot;&gt;SpywareBlaster&lt;/a&gt;  &lt;/li&gt;&lt;li&gt;&lt;a title=&quot;TrendMicro HouseCall&quot; href=&quot;http://www.trendsecure.com/portal/en-US/free_security_tools/housecall_free_scan.php?WT.cg_n=home_qa_housecall&quot; target=&quot;_blank&quot;&gt;TrendMicro HouseCall&lt;/a&gt; (online scanner)  &lt;/li&gt;&lt;li&gt;&lt;a title=&quot;Lavasoft Ad-Aware&quot; href=&quot;http://www.download.com/3001-8022_4-10708241.html&quot;&gt;Lavasoft Ad-Aware&lt;/a&gt;  &lt;/li&gt;&lt;li&gt;&lt;a title=&quot;CCleaner&quot; href=&quot;http://www.ccleaner.com/download/&quot;&gt;CCleaner&lt;/a&gt; &lt;/li&gt;&lt;/ol&gt;&lt;p&gt; &lt;br/&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://theendofthenet.blogspot.com/feeds/8098459830971691246/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1261911748129061176/8098459830971691246' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1261911748129061176/posts/default/8098459830971691246'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1261911748129061176/posts/default/8098459830971691246'/><link rel='alternate' type='text/html' href='http://theendofthenet.blogspot.com/2007/10/crapware-removal-and-protection-aka.html' title='Crapware Removal and Protection'/><author><name>wwjdcsk</name><uri>http://www.blogger.com/profile/08225312330291852674</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1261911748129061176.post-8404828217291190325</id><published>2007-10-04T22:58:00.000-07:00</published><updated>2008-02-11T12:39:39.476-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="programming"/><title type='text'>Languages Spoken</title><content type='html'>C&lt;br /&gt;C++&lt;br /&gt;Java&lt;br /&gt;Perl&lt;br /&gt;Ruby&lt;br /&gt;VHDL&lt;br /&gt;LabVIEW (G)&lt;br /&gt;Javascript&lt;br /&gt;(XML)&lt;br /&gt;various assembly code [6812,6811]</content><link rel='replies' type='application/atom+xml' href='http://theendofthenet.blogspot.com/feeds/8404828217291190325/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1261911748129061176/8404828217291190325' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1261911748129061176/posts/default/8404828217291190325'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1261911748129061176/posts/default/8404828217291190325'/><link rel='alternate' type='text/html' href='http://theendofthenet.blogspot.com/2007/10/languages-spoken.html' title='Languages Spoken'/><author><name>wwjdcsk</name><uri>http://www.blogger.com/profile/08225312330291852674</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1261911748129061176.post-7809201753233154707</id><published>2007-10-02T19:58:00.000-07:00</published><updated>2007-10-02T20:11:22.213-07:00</updated><title type='text'>My Library</title><content type='html'>Here is a link to my &lt;a href=&quot;http://books.google.com/books?as_list=BDe4J5w0Q7pOc77DX2vb_ARoUy7L8xXxh_h755OtKIoNePVL9Xtg&quot;&gt;Google Book Library&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;These are all the books I currently own in my physical library.&lt;br/&gt;&lt;br/&gt;Some books are not in Google Books so i also have a LibraryThing listing.&lt;br/&gt;&lt;br/&gt;Here is a &lt;a href=&quot;http://books.google.com/books?as_list=BDdius_kQ2N3Ozf_cjZBzGhRSpO4_2g33mo6-4hLs0InW5cpYTg&quot;&gt;wishlist&lt;/a&gt; of books I would like to own.  I also have wishlists on Amazon. &lt;br/&gt;&lt;br /&gt;&lt;br /&gt;&lt;script language=&quot;javascript&quot; type=&quot;text/javascript&quot; src=&quot;http://www.librarything.com/jswidget.php?reporton=wwjdcsk&amp;show=random&amp;header=1&amp;num=12&amp;covers=small-fixed-width&amp;text=none&amp;onlycovers=1&amp;tag=alltags&amp;css=1&amp;style=5&amp;version=1&quot;&gt;&lt;br /&gt;&lt;/script&gt;</content><link rel='replies' type='application/atom+xml' href='http://theendofthenet.blogspot.com/feeds/7809201753233154707/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1261911748129061176/7809201753233154707' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1261911748129061176/posts/default/7809201753233154707'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1261911748129061176/posts/default/7809201753233154707'/><link rel='alternate' type='text/html' href='http://theendofthenet.blogspot.com/2007/10/my-library.html' title='My Library'/><author><name>wwjdcsk</name><uri>http://www.blogger.com/profile/08225312330291852674</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1261911748129061176.post-1248823198576018560</id><published>2007-10-02T19:55:00.000-07:00</published><updated>2007-10-02T19:57:26.892-07:00</updated><title type='text'>First Post</title><content type='html'>This blog is meant mainly for a repository of random resources and things around the net.</content><link rel='replies' type='application/atom+xml' href='http://theendofthenet.blogspot.com/feeds/1248823198576018560/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment/fullpage/post/1261911748129061176/1248823198576018560' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1261911748129061176/posts/default/1248823198576018560'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1261911748129061176/posts/default/1248823198576018560'/><link rel='alternate' type='text/html' href='http://theendofthenet.blogspot.com/2007/10/first-post.html' title='First Post'/><author><name>wwjdcsk</name><uri>http://www.blogger.com/profile/08225312330291852674</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>