<html>
<head></head>
<body>
<iframe src="board.php" width=1000px height=50px frameborder=0 scrolling=no>
</iframe>
</body>
</html>
<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>BINARYBB.info - John Galbraith</title>
	<atom:link href="http://www.binarybb.info/johnwp/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.binarybb.info/johnwp</link>
	<description>Combating stupidity one post at a time.</description>
	<lastBuildDate>Tue, 07 Sep 2010 08:24:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Windows 2003 domain and Windows 7 login script woes&#8230;</title>
		<link>http://www.binarybb.info/johnwp/?p=120</link>
		<comments>http://www.binarybb.info/johnwp/?p=120#comments</comments>
		<pubDate>Tue, 07 Sep 2010 08:24:03 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Server]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.binarybb.info/johnwp/?p=120</guid>
		<description><![CDATA[It started out back in the Windows NT and NT Server days when we made that central network dumping ground. I remember mapping that 10GB drive for the text files and word perfect documents to be stored. It was great. The vision of no more floppy disks stacked up on desks and people accidentally taking [...]]]></description>
			<content:encoded><![CDATA[<p>It started out back in the Windows NT and NT Server days when we made that central network dumping ground. I remember mapping that 10GB drive for the text files and word perfect documents to be stored. It was great. The vision of no more floppy disks stacked up on desks and people accidentally taking the data home in their pockets. The idea of a central drive that we could all dial up into the LAN and get to.  I remember walking around to all the computers and mapping that drive on each individual machine.</p>
<p>Well,  Windows 2000 came out and Active Directory began the beast. We had these servers with 3 36GB drives in a RAID config Wonderful design and fast! We came up with these batch files to map several drives on different servers. Then 73GB drives came out, then 136GB. Unreal data storage and the company just grew into it. We were now using Office 2000 and SQL 2000 that was generating reports in xls and doc formats, then we figured out how to make pdf files from the SQL server and the data blew up out of control. But, everyone was able to get to their drives and their department&#8217;s data.</p>
<p>Then came Windows XP, Office 2003, and Windows Server 2003 with Active Directory 2003 functional level. We turned one of those servers into a centralized print server for our 35+ network printers and switched all the login scripts to vbs format allowing us to map printers on login along with mapping drives and doing several other nifty tricks.</p>
<p>Along comes Vista and Improved Vista (Windows 7). Damn it. Suddenly, those scripts are blowing up in our multi OS environment. Do we upgrade everyone? Hell no, some of the legacy software will not run on the newer OS and you have to have Professional or Ultimate to join them to the domain.</p>
<p>We need to map drives and we need to map printers. We can&#8217;t map drives with vbs and can&#8217;t map printers with batch files the same way on Vista, XP, and 7.  We only have one spot in AD to specify a login script.  Now what?</p>
<p>Here is the solution:</p>
<p>Use both vbs and batch files. Plug the VBS script into Active Directory and have it call your batch file with your old style net use commands in it. It it timeless and works on all the operating systems. Then, map the printers in the script and you are done. This method is actually faster to map the drives then using scripting host and easy to do. Here is the code for your vbs script:<span style="color: #ff0000;"> IN RED</span></p>
<p><em><span style="color: #ff0000;">&#8216;Declare your network object for your printer mapping<br />
</span></em><em><span style="color: #ff0000;">Set wshNetwork = CreateObject(&#8220;WScript.Network&#8221;)</span></em></p>
<div id="_mcePaste"><span style="color: #ff0000;"><br />
</span></div>
<div><em><span style="color: #ff0000;">&#8216;Call your batch file to map your drives</span></em></div>
<div><em><span style="color: #ff0000;">Set oShell = CreateObject(&#8220;WSCript.shell&#8221;)</span></em></div>
<div id="_mcePaste"><em><span style="color: #ff0000;">sCmd = &#8220;drives.cmd&#8221;</span></em></div>
<div id="_mcePaste"><em><span style="color: #ff0000;">oShell.Run sCmd, 0, False</span></em></div>
<div id="_mcePaste"><span style="color: #ff0000;"><br />
</span></div>
<div><em><span style="color: #ff0000;">&#8216;Map your printers</span></em></div>
<div><em><span style="color: #ff0000;">wshNetwork.AddWindowsPrinterConnection &#8220;\\G2K3SVR2\HPLJ6MP_Basement&#8221;</span></em></div>
<div id="_mcePaste"><em><span style="color: #ff0000;"><br />
</span></em></div>
<div><em><span style="color: #ff0000;">&#8216;Set one of those printers as default</span></em></div>
<div><em><span style="color: #ff0000;">wshNetWork.SetDefaultPrinter &#8220;\\G2K3SVR2\HPLJ6MP_Basement&#8221;</span></em></div>
<div></div>
<div><span style="color: #000000;">Here is the code for your drives.cmd batch file.<span style="color: #000080;"> IN BLUE</span></span></div>
<div></div>
<div><span style="color: #000000;"><span style="color: #000080;"><em>@echo off</em></span></span></div>
<div></div>
<div><span style="color: #000000;"><span style="color: #000080;"><em>rem Delete this drive if it is already mapped.</em></span></span></div>
<div><span style="color: #000000;"><span style="color: #000080;"><em>net use /D i:</em></span></span></div>
<div></div>
<div><span style="color: #000000;"><span style="color: #000080;"><em>rem Map the drive</em></span></span></div>
<div><span style="color: #000000;"><span style="color: #000080;"><em>net use i: \\servername\sharename</em></span></span></div>
<div></div>
<div>Repeat these two steps as many times and you need drives in your batch file. Now, if you have multiple departments and need multiple scripts that is fine. You can call the same batch file for all your departments and map all their different shares with one file. You will have a different vbs file for each department but one batch file. Here is how.</div>
<div></div>
<div>Since there are no case statement is batch file scripting, we are going to have to use if statements with goto. In addition we are going to be fed a parameter from the vbs file that called the batch file and use it by calling %1. Don&#8217;t use spaces in your parameter names or you will have to call %2. They are space delimited. <span style="color: #00ff00;">IN GREEN</span></div>
<div></div>
<div>Use parameters like group names: sales, engineering, shop, it, admin, security. You get the idea.</div>
<div></div>
<div><em><span style="color: #00ff00;">@echo off</span></em></div>
<div><em><span style="color: #00ff00;">if %1 == sales goto sales</span></em></div>
<div><em><span style="color: #00ff00;">if %1 == engineering goto engineering</span></em></div>
<div><span style="color: #00ff00;"><br />
</span></div>
<div><em><span style="color: #00ff00;">:sales </span></em></div>
<div><em><span style="color: #00ff00;">net use /D i:</span></em></div>
<div><em><span style="color: #00ff00;">net use i: \\server\salesIdrive</span></em></div>
<div><span style="color: #00ff00;"><br />
</span></div>
<div><em><span style="color: #00ff00;">goto eof</span></em></div>
<div><span style="color: #00ff00;"><br />
</span></div>
<div><em><span style="color: #00ff00;">:engineering</span></em></div>
<div><em><span style="color: #00ff00;">net use /D i:</span></em></div>
<div><em><span style="color: #00ff00;">net use i: \\server\engineeringIdrive</span></em></div>
<div><span style="color: #00ff00;"><br />
</span></div>
<div><em><span style="color: #00ff00;">goto eof</span></em></div>
<div></div>
<div>Instead of declaring &#8220;drives.cmd&#8221; in your vbs file you will put &#8220;drives.cmd sales&#8221; to pass the parameter into the batch file. That is all there is to it.</div>
<div></div>
<div>Happy coding. <img src='http://www.binarybb.info/johnwp/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </div>
]]></content:encoded>
			<wfw:commentRss>http://www.binarybb.info/johnwp/?feed=rss2&amp;p=120</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to hide scrollbars on a webapp&#8230;</title>
		<link>http://www.binarybb.info/johnwp/?p=117</link>
		<comments>http://www.binarybb.info/johnwp/?p=117#comments</comments>
		<pubDate>Sun, 05 Sep 2010 10:32:09 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://binarybb.info/johnwp/?p=117</guid>
		<description><![CDATA[It takes two elements to effectively hide the scrollbars. First you need to put some CSS in your CSS file or head. &#60;style type=&#8221;text/css&#8221;&#62; body { overflow: hidden; } &#60;/style&#62; Then you need to insert scroll=&#8221;no&#8221; into the body tag. Tada. Done. No more scroll bar. John]]></description>
			<content:encoded><![CDATA[<p>It takes two elements to effectively hide the scrollbars. First you need to put some CSS in your CSS file or head.</p>
<p><em>&lt;style type=&#8221;text/css&#8221;&gt;<br />
body {</em></p>
<p><em> overflow: hidden;</em></p>
<p><em> }</em></p>
<p><em>&lt;/style&gt;</em></p>
<p>Then you need to insert scroll=&#8221;no&#8221; into the body tag. Tada. Done. No more scroll bar.</p>
<p>John</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binarybb.info/johnwp/?feed=rss2&amp;p=117</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ball mouse jumpy? C&#8217;mon do we even still use those things..</title>
		<link>http://www.binarybb.info/johnwp/?p=115</link>
		<comments>http://www.binarybb.info/johnwp/?p=115#comments</comments>
		<pubDate>Sat, 28 Aug 2010 05:17:31 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://binarybb.info/johnwp/?p=115</guid>
		<description><![CDATA[YES! We do. Legacy systems and older KVM switches call for that PS2 mouse and finding a laser PS2 mouse is a pain in the rear. So, I go into the server room and that mouse is disgustingly jumpy and annoying. When I pop out the ball it appears that someone installed carpet on the [...]]]></description>
			<content:encoded><![CDATA[<p>YES! We do. Legacy systems and older KVM switches call for that PS2 mouse and finding a laser PS2 mouse is a pain in the rear. So, I go into the server room and that mouse is disgustingly jumpy and annoying. When I pop out the ball it appears that someone installed carpet on the roller pins and there was a quarter sized lint ball hanging out up in there. Ewwwwwwww&#8230; I had to scrape the grey nasties off of the roller pins and get the mouse out of the mouse. I cleaned up the ball and wala.. a working mouse again. Now, if tons of techs during day shift all touch this mouse, why am I the one to finally do something about it? Or, have we gone ignorant with all the new laser mouses out now?</p>
<p>John</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binarybb.info/johnwp/?feed=rss2&amp;p=115</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How effective of a home support technician are you?</title>
		<link>http://www.binarybb.info/johnwp/?p=111</link>
		<comments>http://www.binarybb.info/johnwp/?p=111#comments</comments>
		<pubDate>Thu, 26 Aug 2010 08:23:57 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://binarybb.info/johnwp/?p=111</guid>
		<description><![CDATA[I found out the answer to that question lately when I sat down in front of someone&#8217;s MAC and realized I was just an infant on it. I couldn&#8217;t find anything and couldn&#8217;t help the user. This is a terrible feeling. Am I a PC person? Am I a MAC hater? Well, the only thing [...]]]></description>
			<content:encoded><![CDATA[<p>I found out the answer to that question lately when I sat down in front of someone&#8217;s MAC and realized I was just an infant on it. I couldn&#8217;t find anything and couldn&#8217;t help the user. This is a terrible feeling. Am I a PC person? Am I a MAC hater? Well, the only thing I don&#8217;t like about Apple is the initial price. Now that I have a little more money rolling into the bank account I can look at options like owning a MAC and being able to support such devices. So, I have decided that the PC I put into my new office is going to be a MAC mini with a 32 inch LCD TV with 1080p HD that I will hook up to the PC via the HDMI cable on the back. The PC has virtually no foot print so there is no beast on the floor or on the desktop chewing up precious space and sucking up dog hair (I have 2 little pugs.)</p>
<p>On top of that, you can go get a 32 inch or 26 inch LCD TV flat panel and use that as a high def monitor for the price of a 24 inch wide screen monitor with far less features and capabilities.  Plus, I can watch actual TV on the TV if need be or have a console for gaming set up.</p>
<p>What really matters is that I get the MAC exposure needed to support people that own them. I really don&#8217;t need Linux exposure though I have it already and can make my way around *NIX systems easily. But, people that use nix, usually don&#8217;t need tech support for it because they already know how and where to get the information needed to support them. Windows users and MAC users, not so much. On the 25th I worked on a sweet old lady&#8217;s computer and she knew how to get her email and scan and look at pictures. That&#8217;s about it. What else does she need though. The problem I got called out on was coming behind someone that charged her $99 for a PC cleaning and didn&#8217;t fix the original problem. Plus, they left her with ony 256MB of RAM when the COMMIT charge was averaging 560MB at an idle. They put Microsoft Security Essentials which is garbage software. It might rock if they would actually finish the software. Very unpolished and unprofessional looking hunk of crap there.</p>
<p>So, my point in this article, do not limit yourself to Hardware or Software. Don&#8217;t limit yourself to Microsoft products or MAC or even Linux while flaming the competitors. Dive into what you are not fond of or don&#8217;t have a preference for. Chances are, someone out there disagrees with you and likes what  you don&#8217;t like. If you want to help that person and have a happy paying customer, you had better know their systems too.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binarybb.info/johnwp/?feed=rss2&amp;p=111</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Websites that Suck List : yoogadget.com</title>
		<link>http://www.binarybb.info/johnwp/?p=106</link>
		<comments>http://www.binarybb.info/johnwp/?p=106#comments</comments>
		<pubDate>Sun, 22 Aug 2010 23:22:14 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Websites that Suck]]></category>

		<guid isPermaLink="false">http://binarybb.info/johnwp/?p=106</guid>
		<description><![CDATA[While browsing the web to research the new WeTab coming out soon to compete with the limited iPad, I stumbled upon the site from a twitter page for more information, a review, release date, and pricing on yoogadget.com. How exciting. Instead, you get to a wordpress admin page. WHAAAAAAT?!?!?!?!?!?!? Yeah! What would you like to [...]]]></description>
			<content:encoded><![CDATA[<p>While browsing the web to research the new WeTab coming out soon to compete with the limited iPad, I stumbled upon the site from a twitter page for more information, a review, release date, and pricing on yoogadget.com. How exciting. Instead, you get to a wordpress admin page. WHAAAAAAT?!?!?!?!?!?!? Yeah! What would you like to name your blog and what is your email address. Then, you do the install, it fails all the sql script installs and gives you the admin password at the bottom.</p>
<p>WordPress is a great software to use for a blog. It is what I am using for this one. All you have to do is exactly what I did. READ THE DAMN INSTRUCTIONS THAT COME WITH THE DOWNLOAD! It tells you how to properly point the site to you database server and schema. Then, it tells you to do the admin script. Then DELETE the script.</p>
<p>This website sucks because the creator failed to follow simple instructions and left a security hole on his webserver. He also promised some juicy information on twitter that his site is not delivering. This is a real stinker of a site. For this, you made the Binarybb.info John Galbraith Websites that Suck List. Congrats.. now fix it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binarybb.info/johnwp/?feed=rss2&amp;p=106</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connection Strings Galore!!!</title>
		<link>http://www.binarybb.info/johnwp/?p=104</link>
		<comments>http://www.binarybb.info/johnwp/?p=104#comments</comments>
		<pubDate>Sun, 15 Aug 2010 06:22:43 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://binarybb.info/johnwp/?p=104</guid>
		<description><![CDATA[Ever start coding something and you need to tie it into a data set and can&#8217;t remember how.. I found a website that will help with it. Though, it is plastered with advertisements and it is not the prettiest site on the net, it is crammed full of information. http://www.connectionstrings.com/ Enjoy, John]]></description>
			<content:encoded><![CDATA[<p>Ever start coding something and you need to tie it into a data set and can&#8217;t remember how..</p>
<p>I found a website that will help with it. Though, it is plastered with advertisements and it is not the prettiest site on the net, it is crammed full of information.</p>
<p><a href="http://www.connectionstrings.com/">http://www.connectionstrings.com/</a></p>
<p>Enjoy,</p>
<p>John</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binarybb.info/johnwp/?feed=rss2&amp;p=104</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to calculate a countdown date in Excel&#8230;</title>
		<link>http://www.binarybb.info/johnwp/?p=102</link>
		<comments>http://www.binarybb.info/johnwp/?p=102#comments</comments>
		<pubDate>Sat, 14 Aug 2010 23:33:20 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Office]]></category>

		<guid isPermaLink="false">http://binarybb.info/johnwp/?p=102</guid>
		<description><![CDATA[This is a simple formula and a few extra steps to format it the way you want it. Let&#8217;s pick a date to count down to. Note: This has to be a date in the future because you can&#8217;t count down to a date that is already passed. How about Christmas this year. Let&#8217;s put [...]]]></description>
			<content:encoded><![CDATA[<p>This is a simple formula and a few extra steps to format it the way you want it.</p>
<p>Let&#8217;s pick a date to count down to. Note: This has to be a date in the future because you can&#8217;t count down to a date that is already passed. How about Christmas this year. Let&#8217;s put it in a common date format that is rarely confused like DDMMMYYYY. So, 25DEC2010 will be the date we use in the formula in that format.</p>
<p>Now, we want to convert the date into a numeric value. Every date has one and Excel can add or subtract it. So start your formula with your equal sign:</p>
<p>=</p>
<p>then add the date value:</p>
<p>=datevalue(&#8220;25DEC2010&#8243;)</p>
<p>Now you have converted 25DEC2010 into a datavalue. Next you subtract the datevalue of today but do not specify what date today is so it will take the default of now. that would look like this:</p>
<p>=datevalue(&#8220;25DEC2010&#8243;)-today()</p>
<p>You will notice that the field put a date that is WAY in the past in a date format. You want a number so right click on the field and go to format cells. Change the data type from date to number. Now,  you will notice a number. Now in a cell before or after give it a label like &#8220;Days until Christmas.&#8221; Every day you open the spreadsheet, the number will update with countdown to the date you specified.</p>
<p>Have fun with this one. I use it to count down to deadlines for projects and important dates like my anniversary, wifes birthday, Valentines day, and other days that could potentially get me in trouble if I forget them.</p>
<p>Enjoy,</p>
<p>John</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binarybb.info/johnwp/?feed=rss2&amp;p=102</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create a 3D look in Spreadsheets like Excel or OoCalc&#8230;</title>
		<link>http://www.binarybb.info/johnwp/?p=98</link>
		<comments>http://www.binarybb.info/johnwp/?p=98#comments</comments>
		<pubDate>Tue, 10 Aug 2010 07:52:42 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Office]]></category>

		<guid isPermaLink="false">http://binarybb.info/johnwp/?p=98</guid>
		<description><![CDATA[Spreadsheet programs are amazing. They are probably the most versitile inventions to date yet, if not abused (Using them to STORE data like a DATABASE), they can be something of great use to your project, organization, or anything really. We all know that we can plug in formulas and do exiting things like track how [...]]]></description>
			<content:encoded><![CDATA[<p>Spreadsheet programs are amazing. They are probably the most versitile inventions to date yet, if not abused (Using them to STORE data like a DATABASE), they can be something of great use to your project, organization, or anything really. We all know that we can plug in formulas and do exiting things like track how much we spend on Baconators at Wendys. You can also give some boxes a 3D look with a simple color and border trick.</p>
<p>1. Put a darker shade in some cells for a back ground color. Not too dark or it will have a reverse effect.</p>
<p>2. Give the box you want the stick out as 3d a lighter shade or white even.</p>
<p>3. Give that box a thick outside border.</p>
<p>You will notice that the box now pops out at you. Try it.</p>
<p>Enjoy</p>
<p>John</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binarybb.info/johnwp/?feed=rss2&amp;p=98</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Websites that Suck List &#8211; Micropower Springfield, IL Computer repair service. www.mpmis.com</title>
		<link>http://www.binarybb.info/johnwp/?p=92</link>
		<comments>http://www.binarybb.info/johnwp/?p=92#comments</comments>
		<pubDate>Thu, 05 Aug 2010 05:42:54 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Websites that Suck]]></category>

		<guid isPermaLink="false">http://binarybb.info/johnwp/?p=92</guid>
		<description><![CDATA[www.mpmis.com This one is a great example of out of the box and into play. I bet they have a great deal of resources in their building but I really have no desire to find out based off of their web site. It is about 8 pages of nothing with a boring design and no [...]]]></description>
			<content:encoded><![CDATA[<p>www.mpmis.com</p>
<p>This one is a great example of out of the box and into play. I bet they have a great deal of resources in their building but I really have no desire to find out based off of their web site. It is about 8 pages of nothing with a boring design and no content. They spout a little off in their service page but I didn&#8217;t even read it. If I wanted to read text files I would go to textfiles.com and read interesting ones from old BBS systems.</p>
<p>Their saving grace was a tiny link on the bottom of the page labeled Contact Us. It had their address, contact number, and email address. They could easily dump their entire site and make it that one page with the same effect.</p>
<p>This website sucks. I really hope they fix it.</p>
<p>John</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binarybb.info/johnwp/?feed=rss2&amp;p=92</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Users</title>
		<link>http://www.binarybb.info/johnwp/?p=88</link>
		<comments>http://www.binarybb.info/johnwp/?p=88#comments</comments>
		<pubDate>Thu, 05 Aug 2010 05:08:22 +0000</pubDate>
		<dc:creator>John</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://binarybb.info/johnwp/?p=88</guid>
		<description><![CDATA[I get new user requests every day for this blog but I don&#8217;t enable any users. Most of them have a .ru email address or gmail.com email address.  I have no idea which ones are human and which ones are bots so I suspect that they are all bots. Maybe they are, maybe they aren&#8217;t. [...]]]></description>
			<content:encoded><![CDATA[<p>I get new user requests every day for this blog but I don&#8217;t enable any users. Most of them have a .ru email address or gmail.com email address.  I have no idea which ones are human and which ones are bots so I suspect that they are all bots. Maybe they are, maybe they aren&#8217;t. Here is the deal. I am going to create a page that is open to post a reason why you want posting rights to this blog. I would love other user&#8217;s input. I just want to ensure that you are human and not going to post some lame viagra or cialis crap. My website is a place of free technical information, not a russian brides advertisement.  I will try and get that page up and running by the end of this weekend.</p>
<p>John</p>
]]></content:encoded>
			<wfw:commentRss>http://www.binarybb.info/johnwp/?feed=rss2&amp;p=88</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

