<?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/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>Mike&#039;s Blog</title>
	<atom:link href="http://www.brintech.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.brintech.net</link>
	<description>Gospel study notes and technical journal</description>
	<lastBuildDate>Tue, 15 Jun 2010 20:23:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Extract All Regular Expression Results (Copy all regex matches to clipboard)</title>
		<link>http://www.brintech.net/extract-all-regular-expression-results-copy-all-regex-matches-to-clipboard/</link>
		<comments>http://www.brintech.net/extract-all-regular-expression-results-copy-all-regex-matches-to-clipboard/#comments</comments>
		<pubDate>Tue, 15 Jun 2010 20:23:14 +0000</pubDate>
		<dc:creator>mbrinson</dc:creator>
				<category><![CDATA[Technical Journal]]></category>
		<category><![CDATA[Technology Recipes]]></category>
		<category><![CDATA[microsoft word]]></category>
		<category><![CDATA[regex]]></category>
		<category><![CDATA[regular expressions]]></category>

		<guid isPermaLink="false">http://www.brintech.net/?p=1345</guid>
		<description><![CDATA[
This was difficult information to  find.  I searched for a method using  Notepad++, Vim for windows, and a few others, but finally found the easy way  to do this using &#8211; of all things &#8211; Microsoft Word.

I&#8217;ll spare you the  details of the other methods I attempted and just give you [...]]]></description>
			<content:encoded><![CDATA[<ol>
<p>This was difficult information to  find.  I searched for a method using  Notepad++, Vim for windows, and a few others, but finally found the easy way  to do this using &#8211; of all things &#8211; Microsoft Word.</p>
<p><br class="spacer_" /></p>
<p>I&#8217;ll spare you the  details of the other methods I attempted and just give you the detailed answer  of how to accomplish this with Microsoft Word.</p>
<p><br class="spacer_" /></p>
<p>So I&#8217;ll use my  scenario as the example for what you might want to use this for.</p>
<p><br class="spacer_" /></p>
<p>I had a bunch of  html code from which I needed to extract every instance of anchor text between  the &lt;a href=&#8221;…&#8221;&gt;&lt;/a&gt; tags.  In this particular case here is how you  accomplish this:</p>
<p><br class="spacer_" /></p>
<li>Paste the html code you are      working on into a new word document.</li>
<p><a href="http://www.brintech.net/wp-content/uploads/2010/06/Step1.png"><img class="alignnone size-large wp-image-1346" title="Step1" src="http://www.brintech.net/wp-content/uploads/2010/06/Step1-1024x528.png" alt="" width="1024" height="528" /></a></p>
<p><br class="spacer_" /></p>
<li>Press ctrl+f to bring up the      &#8220;Find and Replace&#8221; dialog box.</li>
<p><a href="http://www.brintech.net/wp-content/uploads/2010/06/Step2.png"><img class="alignnone size-full wp-image-1347" title="Step2" src="http://www.brintech.net/wp-content/uploads/2010/06/Step2.png" alt="" width="974" height="550" /></a></p>
<p><br class="spacer_" /></p>
<li>In my particular case I used      this code in the &#8220;Find what:&#8221; field. -&gt;      \&#8221;\&gt;(*)\&lt;\/a\&gt;</li>
<p>Your needs will  most likely be different and you will need to research a bit if you&#8217;re  unfamiliar with regular expressions.   Even if you are familiar with regular expressions (as I am) you&#8217;ll  still probably need to do a little research to get the exact expression that  will work for you.  I&#8217;m sure there are  regex gurus out there who dream in regex, but in my case I find that I always  have to spend more time than I would like just coming up with the syntax for  the regular expression that will provide me the results I am looking for.  <a href="http://office.microsoft.com/en-us/help/ha010873051033.aspx">Microsoft  Word regular expressions</a>.</p>
<p><br class="spacer_" /></p>
<li>In the &#8220;Search      Options&#8221; portion on the bottom half of the dialog box you&#8217;ll need to      check the box &#8220;Use wildcards&#8221;.       This is what enables the regular expression functionality of      Microsoft Word.</li>
<p><br class="spacer_" /></p>
<li>Just to get a preview of your      results click on the &#8220;Reading Highlight&#8221; drop-down box and      choose &#8220;Highlight All&#8221;</li>
<p><a href="http://www.brintech.net/wp-content/uploads/2010/06/Step3.png"><img class="alignnone size-full wp-image-1348" title="Step5" src="http://www.brintech.net/wp-content/uploads/2010/06/Step3.png" alt="" width="547" height="385" /></a></p>
<p><br class="spacer_" /></p>
<p>Here are the  results in my scenario (which is exactly what I want… well, not exactly.  I&#8217;d like to just get the text in between the  &lt;a&gt; and &lt;/a&gt; tags, but I don&#8217;t know how to do that in one step.  The only way I know to do it is to include  the &#8220;&gt; and the &lt;/a&gt; at the beginning and end of the regular  expression so that it captures what I&#8217;m looking for):</p>
<p><a href="http://www.brintech.net/wp-content/uploads/2010/06/Step4.png"><img class="alignnone size-full wp-image-1349" title="Step5 Results" src="http://www.brintech.net/wp-content/uploads/2010/06/Step4.png" alt="" width="955" height="509" /></a></p>
<p><br class="spacer_" /></p>
<li>Once you&#8217;ve verified that      you&#8217;re getting the results you want by choosing &#8220;Highlight All&#8221;      to preview it, then you click on &#8220;Find in&#8221; and choose &#8220;Main      Document&#8221;</li>
<p><a href="http://www.brintech.net/wp-content/uploads/2010/06/Step5.png"><img class="alignnone size-full wp-image-1350" title="Step6" src="http://www.brintech.net/wp-content/uploads/2010/06/Step5.png" alt="" width="548" height="308" /></a></p>
<p><br class="spacer_" /></p>
<li>All of your highlighted text      will now actually♦ be selected.  Now      right click on top of any of the selected areas in the document and click      on &#8220;copy&#8221;.</li>
<p><a href="http://www.brintech.net/wp-content/uploads/2010/06/Step6.png"><img class="alignnone size-full wp-image-1351" title="Step7" src="http://www.brintech.net/wp-content/uploads/2010/06/Step6.png" alt="" width="831" height="481" /></a></p>
<p><br class="spacer_" /></p>
<li>Press ctrl+n to create a new      document.</li>
<p><br class="spacer_" /></p>
<li>Press ctrl+v to paste what      you&#8217;ve just copied to the clipboard into your new document.</li>
<p><br class="spacer_" /></p>
<li>Press ctrl+f to bring up the      &#8220;Find and Replace&#8221; dialog box again.  Now click on the &#8220;Replace&#8221;      tab.</li>
<p><a href="http://www.brintech.net/wp-content/uploads/2010/06/Step7.png"><img class="alignnone size-full wp-image-1352" title="Step10" src="http://www.brintech.net/wp-content/uploads/2010/06/Step7.png" alt="" width="831" height="611" /></a></p>
<p><br class="spacer_" /></p>
<li>In the &#8220;Find what:&#8221;      field make sure you still have this code -&gt;      \&#8221;\&gt;(*)\&lt;\/a\&gt;</li>
<p>In the  &#8220;Replace with:&#8221; field put this code -&gt; &#8220;\1&#8243; (without  the quotation marks)</p>
<p>Make sure the  &#8220;Use wildcards&#8221; checkbox is checked and then click &#8220;Replace  All&#8221;</p>
<p><br class="spacer_" /></p>
<li>&#8220;Wallah.  She is clean.&#8221;  (Jacques on &#8220;Finding Nemo&#8221;)</li>
<p><a href="http://www.brintech.net/wp-content/uploads/2010/06/Step8.png"><img class="alignnone size-full wp-image-1353" title="Step12" src="http://www.brintech.net/wp-content/uploads/2010/06/Step8.png" alt="" width="788" height="609" /></a></p>
<p><br class="spacer_" /></p>
<p>Kudos and thanks to  <a href="http://groups.google.com/group/regex/browse_thread/thread/d7db0f6c25477c38?pli=1">Ivaylo  for posting his workaround</a> which led to my finding this solution and  expanding on it here.</p>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.brintech.net/extract-all-regular-expression-results-copy-all-regex-matches-to-clipboard/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ModX Manager Preview Page Problem</title>
		<link>http://www.brintech.net/modx-manager-preview-page-problem/</link>
		<comments>http://www.brintech.net/modx-manager-preview-page-problem/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 21:10:46 +0000</pubDate>
		<dc:creator>mbrinson</dc:creator>
				<category><![CDATA[Technical Journal]]></category>
		<category><![CDATA[modx]]></category>
		<category><![CDATA[mod_rewrite]]></category>

		<guid isPermaLink="false">http://www.brintech.net/?p=1328</guid>
		<description><![CDATA[Wow, that was a fun little adventure.
I could not figure out for the life of me why the QM overlay for modX was not working.&#160; When you&#8217;re logged in as admin on the backend then when you preview a page you&#8217;re supposed to get what&#8217;s called the &#8220;Quick Manager&#8221; overlay at the top.&#160; I was [...]]]></description>
			<content:encoded><![CDATA[<p>Wow, that was a fun little adventure.</p>
<p>I could not figure out for the life of me why the QM overlay for modX was not working.&nbsp; When you&#8217;re logged in as admin on the backend then when you preview a page you&#8217;re supposed to get what&#8217;s called the &#8220;Quick Manager&#8221; overlay at the top.&nbsp; I was getting this when inexplicably it disappeared and I was only able to get it to come back here and there.&nbsp; I could not figure out what caused it to work and what caused it not to work specifically.</p>
<p>Here&#8217;s some pics just to make this look nice:</p>
<p><a href="http://www.brintech.net/wp-content/uploads/2010/04/Missing-QM-overlay.png"><img class="alignnone size-full wp-image-1329" title="Missing QM overlay" src="http://www.brintech.net/wp-content/uploads/2010/04/Missing-QM-overlay.png" alt="" height="96" width="770"></a></p>
<p>This is without the QM overlay.</p>
<p><br class="spacer_"></p>
<p><a href="http://www.brintech.net/wp-content/uploads/2010/04/QM-overlay-peek.png"><img class="alignnone size-full wp-image-1331" title="QM overlay peek" src="http://www.brintech.net/wp-content/uploads/2010/04/QM-overlay-peek.png" alt="" height="96" width="770"></a></p>
<p>Here it is with the QM overlay before it is extended when you hover over it (the thin little darker strip at the top)</p>
<p><br class="spacer_"></p>
<p><a href="http://www.brintech.net/wp-content/uploads/2010/04/QM-overlay-full.png"><img class="alignnone size-full wp-image-1330" title="QM overlay full" src="http://www.brintech.net/wp-content/uploads/2010/04/QM-overlay-full.png" alt="" height="96" width="770"></a></p>
<p>Here it is fully extended.</p>
<p><br class="spacer_"></p>
<p>So, I went through A LOT to finally figure it out.&nbsp; I tested it on valleywideplumbing.com with my firefox browser by backing up the DB and the templates folder and putting them into a fresh installation on that domain.&nbsp; I avoided interrupting the production environment because right now it is set up statically with .html files and the apache web server is set to give precedence to .html extensions over .php.&nbsp; The modX engine works beginning with the index.php file which is located in the root folder for your modX installation.&nbsp; So, since there was an index.html file there it did not matter that the index.php file was there because the .html is what was displayed.&nbsp; That&#8217;s how I was able to test this in parallel with the production site running.</p>
<p><br class="spacer_"></p>
<p>Anyway, from my MANY different tests I was convinced there was something wrong with my firefox install.&nbsp; I completely uninstalled firefox together with searching through the registry and removing any references to firefox and mozilla there.&nbsp; I did back up my extensions, passwords, etc.&nbsp; with <a target="_blank" title="MozBackup" href="http://www.mozbackup.org">MozBackup</a> which I am very glad I did as it was a huge time saver.&nbsp; After all of that I got it to work and I thought &#8220;problem solved&#8221;.&nbsp; But then it went back to not coming up again.</p>
<p><br class="spacer_"></p>
<p>**Tld = &#8220;Top Level Domain&#8221;</p>
<p><br class="spacer_"></p>
<p>Finally I discovered the difference.&nbsp; For Valleywideplumbing.com the mod_rewrite 301 redirect for valleywideplumbing.com -&gt; <a href="http://www.valleywideplumbing.com/">www.valleywideplumbing.com</a> was working correctly including for the tld**/manager/ folder.&nbsp; For some reason the redirect was not working correctly for brinformation.com for the tld/manager folder.&nbsp; I had worked on this extensively before and could not figure out how to get it to work.&nbsp; It would redirect for the tld and other folders that were created via the &#8220;#friendly urls&#8221; mod_rewrite rules, but would not for manager.&nbsp; Anyway, I copied what was set up for valleywideplubming and finally got it working for brinformation.</p>
<p><br class="spacer_"></p>
<p>So, that was the problem.&nbsp; You HAVE TO log in to the manager using the domain name that you have configured within modx.&nbsp; Ie:&nbsp; <a href="http://www.brinformation.com/">www.brinformation.com</a> if that&#8217;s how it&#8217;s set up in modx, or just brinformation.com if that&#8217;s how it&#8217;s set up.&nbsp; The [(site_url)] system variable is created via the config.inc.php file which resides in /manager/includes/ and is generated with the following line of code (within config.inc.php)</p>
<p><br class="spacer_"></p>
<p>$site_url .= $_SERVER['HTTP_HOST'];</p>
<p><br class="spacer_"></p>
<p>So, it pulls it from the apache $_SERVER['HTTP_HOST'] variable which is based on what was requested by the user-agent (me in this case.. Or my browser on my behalf technically).&nbsp; So, since I was putting in &#8220;brinformation.com/manager&#8221; and it wasn&#8217;t getting rewritten properly to www.brinformation.com/manager then when previewing the pages the url was being written correctly with the preceeding www. and so the http_host variable was different between the http://brinformation.com/manager and the http://www.brinformation.com/index.php?id=1 (or whatever page id we&#8217;re previewing)</p>
<p><br class="spacer_"></p>
<p><a href="http://www.brintech.net/wp-content/uploads/2010/04/url1.png"><img class="alignnone size-full wp-image-1332" title="url1" src="http://www.brintech.net/wp-content/uploads/2010/04/url1.png" alt="" height="92" width="375"></a></p>
<p><br class="spacer_"></p>
<p><a href="http://www.brintech.net/wp-content/uploads/2010/04/url2.png"><img class="alignnone size-full wp-image-1333" title="url2" src="http://www.brintech.net/wp-content/uploads/2010/04/url2.png" alt="" height="86" width="416"></a></p>
<p><br class="spacer_"></p>
<p>Whew.&nbsp; I think that makes sense.&nbsp; Even if it doesn&#8217;t, it&#8217;s fixed!&nbsp; Woohoo!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brintech.net/modx-manager-preview-page-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox 3.6.3 and Move Media Player</title>
		<link>http://www.brintech.net/firefox-3-6-3-and-move-media-player/</link>
		<comments>http://www.brintech.net/firefox-3-6-3-and-move-media-player/#comments</comments>
		<pubDate>Thu, 08 Apr 2010 16:16:57 +0000</pubDate>
		<dc:creator>mbrinson</dc:creator>
				<category><![CDATA[Technical Journal]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://www.brintech.net/?p=1323</guid>
		<description><![CDATA[I spent a while figuring out what was causing firefox to go up to 99% CPU utilization and Move Media Player was not playing at all.
I found a few other posts through google of people having stability issues with firefox 3.6 in general.  But the particular fix for Move Media Player was to upgrade to [...]]]></description>
			<content:encoded><![CDATA[<p>I spent a while figuring out what was causing firefox to go up to 99% CPU utilization and Move Media Player was not playing at all.</p>
<p>I found a few other posts through google of people having stability issues with firefox 3.6 in general.  But the particular fix for Move Media Player was to upgrade to the latest version of the player (of course).  But where do you find it?  I was trying to use the Move player to watch General Conference at beta.lds.org/general-conference.  As of 4/8/2010 the version they have you download is not the latest one offered by Move.</p>
<p>To get the most up to date one (again, as of 4/8/2010) you can <a href="http://www.brintech.net/files/MoveMediaPlayerWin_071701000002.exe">click here to download</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brintech.net/firefox-3-6-3-and-move-media-player/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Democracy</title>
		<link>http://www.brintech.net/democracy/</link>
		<comments>http://www.brintech.net/democracy/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 15:22:07 +0000</pubDate>
		<dc:creator>mbrinson</dc:creator>
				<category><![CDATA[Gospel]]></category>
		<category><![CDATA[Last Days]]></category>
		<category><![CDATA[Politics]]></category>
		<category><![CDATA[democracy]]></category>
		<category><![CDATA[Freedom]]></category>
		<category><![CDATA[republic]]></category>

		<guid isPermaLink="false">http://www.brintech.net/?p=1319</guid>
		<description><![CDATA[This is an example of Democracy Gone Bad
]]></description>
			<content:encoded><![CDATA[<p>This is an example of <a href="http://www.utahsrepublic.org/democracy-media-fiasco/">Democracy Gone Bad</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.brintech.net/democracy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Toilet Repair</title>
		<link>http://www.brintech.net/toilet-repair/</link>
		<comments>http://www.brintech.net/toilet-repair/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 17:51:37 +0000</pubDate>
		<dc:creator>mbrinson</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[emergency plumbing]]></category>
		<category><![CDATA[toilet repair]]></category>

		<guid isPermaLink="false">http://www.brintech.net/?p=1316</guid>
		<description><![CDATA[I hate doing my own plumbing.  You always think you can do it quickly, but it ends up taking up your whole day.  I tell my wife, &#8220;I should be able to fix this in 30 minutes.  Definitely no more than an hour max!&#8221;  Yeah, right.
You never have all the parts you need.  You end [...]]]></description>
			<content:encoded><![CDATA[<p>I hate doing my own plumbing.  You always think you can do it quickly, but it ends up taking up your whole day.  I tell my wife, &#8220;I should be able to fix this in 30 minutes.  Definitely no more than an hour max!&#8221;  Yeah, right.</p>
<p>You never have all the parts you need.  You end up having to make a MINIMUM of 2 trips back and forth to home depot.  By the time you&#8217;re done you would have been better off just having a plumber do it in the first place.  If I have the money then there is absolutely no reason for me to do the work myself.  My time is much more valuable than the money it costs to have a plumber fix it for me.  They are more efficient because they know what they&#8217;re doing and my time is better used doing something that I am efficient at.. like designing a new web site or fixing someone&#8217;s computer.</p>
<p>Usually I find that when I need a plumber I need them right now.  I searched for <a title="Emergency Plumber" href="http://www.homeplumbingblog.com" target="_blank">emergency plumber</a> using google maps and I saw valleywide plumbing come back as one of the top listed results.  They have great service and are very knowledgeable.  The nice thing is they already had the <a title="Toilet Parts" href="http://www.valleywideplumbing.com/Residential/" target="_blank">toilet parts</a> that I needed.  So much nicer than making several trips back and forth to Home Depot.</p>
<p>If you live in Arizona and find yourself needing <a title="Emergency Plumbing" href="http://www.valleywideplumbing.com" target="_blank">emergency plumbing</a> services I highly suggest you call Valleywide Plumbing.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brintech.net/toilet-repair/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Government assistance and Agency</title>
		<link>http://www.brintech.net/government-assistance-and-agency/</link>
		<comments>http://www.brintech.net/government-assistance-and-agency/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 15:39:20 +0000</pubDate>
		<dc:creator>mbrinson</dc:creator>
				<category><![CDATA[Freedom]]></category>
		<category><![CDATA[Gospel]]></category>
		<category><![CDATA[agency]]></category>
		<category><![CDATA[welfare]]></category>

		<guid isPermaLink="false">http://www.brintech.net/?p=1313</guid>
		<description><![CDATA[The &#8220;Samuel Principle&#8221; is an interesting one.  Not sure how I feel about this, but it is interesting and worth taking note of.

http://www.ldsfreemen.com/the-coming-apostasy-of-latter-day-conservatives/
]]></description>
			<content:encoded><![CDATA[<p>The &#8220;Samuel Principle&#8221; is an interesting one.  Not sure how I feel about this, but it is interesting and worth taking note of.</p>
<p><br class="spacer_" /></p>
<p><a href="http://www.ldsfreemen.com/the-coming-apostasy-of-latter-day-conservatives/" target="_blank">http://www.ldsfreemen.com/the-coming-apostasy-of-latter-day-conservatives/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.brintech.net/government-assistance-and-agency/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7 to Windows 2000 network connection</title>
		<link>http://www.brintech.net/windows-7-to-windows-2000-network-connection/</link>
		<comments>http://www.brintech.net/windows-7-to-windows-2000-network-connection/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 18:54:59 +0000</pubDate>
		<dc:creator>mbrinson</dc:creator>
				<category><![CDATA[Technical Journal]]></category>
		<category><![CDATA[Technology Recipes]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.brintech.net/?p=1302</guid>
		<description><![CDATA[You need to tweak a registry setting in order to allow connecting to a windows share that is shared on a windows 2000 or xp machine from a Windows 7 machine.  Here is the technet article that describes the registry setting that needs to be changed:
http://technet.microsoft.com/en-us/library/cc960646.aspx
Here is the relevant part from the post:
LmCompatibilityLevel
HKLM\SYSTEM\CurrentControlSet\Control\Lsa
Data type
Range
Default [...]]]></description>
			<content:encoded><![CDATA[<p>You need to tweak a registry setting in order to allow connecting to a windows share that is shared on a windows 2000 or xp machine from a Windows 7 machine.  Here is the technet article that describes the registry setting that needs to be changed:</p>
<p><a href="http://technet.microsoft.com/en-us/library/cc960646.aspx">http://technet.microsoft.com/en-us/library/cc960646.aspx</a></p>
<p>Here is the relevant part from the post:</p>
<p>LmCompatibilityLevel</p>
<p>HKLM\SYSTEM\CurrentControlSet\Control\Lsa</p>
<p>Data type</p>
<p>Range</p>
<p>Default value</p>
<p>REG_DWORD</p>
<p>0–5</p>
<p>0</p>
<p>Description</p>
<p>Specifies the mode of authentication and session security to be used for network logons.</p>
<p>Value</p>
<p>Meaning</p>
<p>0</p>
<p>Clients use LM and NTLM authentication, but they never use NTLMv2 session security. Domain controllers accept LM, NTLM, and NTLMv2 authentication.</p>
<p>1</p>
<p>Clients use LM and NTLM authentication, and they use NTLMv2 session security if the server supports it. Domain controllers accept LM, NTLM, and NTLMv2 authentication.</p>
<p>2</p>
<p>Clients use only NTLM authentication, and they use NTLMv2 session security if the server supports it. Domain controller accepts LM, NTLM, and NTLMv2 authentication.</p>
<p>3</p>
<p>Clients use only NTLMv2 authentication, and they use NTLMv2 session security if the server supports it. Domain controllers accept LM, NTLM, and NTLMv2 authentication.</p>
<p>4</p>
<p>Clients use only NTLMv2 authentication, and they use NTLMv2 session security if the server supports it. Domain controller refuses LM authentication responses, but it accepts NTLM and NTLMv2.</p>
<p>5</p>
<p>Clients use only NTLMv2 authentication, and they use NTLMv2 session security if the server supports it. Domain controller refuses LM and NTLM authentication responses, but it accepts NTLMv2.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brintech.net/windows-7-to-windows-2000-network-connection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Command line Tips</title>
		<link>http://www.brintech.net/command-line-tips/</link>
		<comments>http://www.brintech.net/command-line-tips/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 17:58:33 +0000</pubDate>
		<dc:creator>mbrinson</dc:creator>
				<category><![CDATA[Technical Journal]]></category>

		<guid isPermaLink="false">http://www.brintech.net/2010/02/12/command-line-tips/</guid>
		<description><![CDATA[This has got to be one of the best tutorials I have seen on really helpful command line usage tips for linux:  http://www.overclock.net/linux-unix/518232-linux-tips-overclock-your-command-line.html
	
 
 
Talks about how to move around between foreground, background tasks, how to move them between each and other good command line navigation techniques.

 
 
]]></description>
			<content:encoded><![CDATA[<p>This has got to be one of the best tutorials I have seen on really helpful command line usage tips for linux:  <a href="http://www.overclock.net/linux-unix/518232-linux-tips-overclock-your-command-line.html">http://www.overclock.net/linux-unix/518232-linux-tips-overclock-your-command-line.html</a>
	</p>
<p> <br />
 </p>
<p>Talks about how to move around between foreground, background tasks, how to move them between each and other good command line navigation techniques.
</p>
<p> <br />
 </p>
]]></content:encoded>
			<wfw:commentRss>http://www.brintech.net/command-line-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Documenting MythDora Install &#8211; 10.21 (VNC Remote Control with Vino)</title>
		<link>http://www.brintech.net/documenting-mythdora-install-10-21-vnc-remote-control-with-vino/</link>
		<comments>http://www.brintech.net/documenting-mythdora-install-10-21-vnc-remote-control-with-vino/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 23:29:59 +0000</pubDate>
		<dc:creator>mbrinson</dc:creator>
				<category><![CDATA[Technical Journal]]></category>

		<guid isPermaLink="false">http://www.brintech.net/2010/02/10/documenting-mythdora-install-10-21-vnc-remote-control-with-vino/</guid>
		<description><![CDATA[Okay, I already went through the install, but did not get any response from the snapstream firefly remote I&#8217;m using.  The problem has to do with Fedora deprecating lirc_atiusb and now using atilibusb instead.


 
I tried a few things and now yum upgrade or yum anything won&#8217;t even work.  It hangs on &#8220;Loaded plugins: [...]]]></description>
			<content:encoded><![CDATA[<p style="margin-left: 23pt">Okay, I already went through the install, but did not get any response from the snapstream firefly remote I&#8217;m using.  The problem has to do with Fedora deprecating lirc_atiusb and now using atilibusb instead.
</p>
<p style="margin-left: 23pt">
 </p>
<p style="margin-left: 23pt">I tried a few things and now yum upgrade or yum anything won&#8217;t even work.  It hangs on &#8220;Loaded plugins: refresh-packagekit&#8221;
</p>
<p style="margin-left: 23pt">I tried a few things to fix that, but can&#8217;t fix it.  I&#8217;m starting a new installation and this time I am documenting everything I do.
</p>
<p style="margin-left: 23pt">
 </p>
<ol>
<li>
<div>Doing fresh installation
</div>
<ol>
<li>Did all default options.
</li>
</ol>
</li>
<li>Fished install and rebooted.  Remove DVD so it doesn&#8217;t boot to it again.
</li>
<li>
<div>Go through &#8220;Welcome&#8221; setup screens.
</div>
<ol>
<li>Choose defaults.
</li>
<li>Click on &#8220;Setup MythTV&#8221; which launches the new web browser based installation options.
</li>
<li>Choose &#8220;A Master backend with frontend&#8221; from the dropdown and then choose &#8220;process selections&#8221;
</li>
<li>Under &#8220;MythTV User Creation&#8221; change the mythtv password and enable the SUDO  checkbox option.
</li>
</ol>
</li>
<li>
<div>Turn off the default firewall with this command (to allow remote control with Vino)
</div>
<ol>
<li><span style="background-color:aqua">chkconfig iptables off</span>
				</li>
</ol>
</li>
<li>
<div>Enable remote desktop control with Vino by getting to the desktop (exit mythtv) and then click on the top and clicking at the top &#8220;System->Preferences->Internet and network->Remote Desktop&#8221;
</div>
<p><img src="http://www.brintech.net/wp-content/uploads/2010/02/021010_2329_Documenting1.png" alt=""/>
			</p>
</li>
<li>
<div>Uncheck the option to allow connection and set up the security option to prompt for a password:
</div>
<p><img src="http://www.brintech.net/wp-content/uploads/2010/02/021010_2329_Documenting2.png" alt=""/>
			</p>
</li>
<li>Then  you can use uvnc or any other vnc viewer to remote control the desktop using &#8220;ip-address:0&#8243; for the connection string (replace &#8220;ip-address&#8221; with the ip address of the mythdora machine).  Yeah!!!
</li>
<li>
<div>Run &#8220;yum upgrade mythdora&#8221; from the commandline after first booting into it after configuring mythTV for the first time.
</div>
<ol>
<li>I ran &#8220;yum upgrade&#8221; before finding a page on mythdora.org that said to do &#8220;yum upgrade mythdora&#8221;.  &#8220;Yum upgrade&#8221; upgrades everything.  So, I&#8217;ll wait and see what happens.  It is normal for it to take a long time before it comes up with the prompt for you to enter &#8220;y/n&#8221; to proceed with the upgrades that are available.
</li>
<li>
<div>There were 420 upgrades when I ran it:
</div>
<p><img src="http://www.brintech.net/wp-content/uploads/2010/02/021010_2329_Documenting3.png" alt=""/>
					</p>
<p>It sat for quite a while on &#8220;Running Transaction Test&#8221; and then again on &#8220;Running Transaction&#8221;
</p>
</li>
<li>
<div>Then it had 800 transactions to run:
</div>
<p><img src="http://www.brintech.net/wp-content/uploads/2010/02/021010_2329_Documenting4.png" alt=""/>
					</p>
</li>
</ol>
<p>
 </p>
<p>Okay, I went through the whole install again because I posted some things to the forum and had the following exchange:
</p>
<p>
 </p>
<p><a href="http://www.mythdora.com/?q=node/4263"><span style="font-size:16pt"><strong>Snapstream firefly</strong></span></a>
			</p>
<p>Submitted by <a href="http://www.mythdora.com/?q=user/5018">mbrinson</a> on January 24, 2010 &#8211; 7:45am.
</p>
<p>I&#8217;m having the same problem, but mine is a firefly RF unit. Worked great under MD5.
</p>
<p>I&#8217;ve spent hours searching and trying different things, but no joy.
</p>
<p>My model of receiver is R1000-1.
</p>
<p>The thing that&#8217;s strange is that when I go to edit /etc/sysconfig/lirc the file is there, but it is completely empty. I tried adding the &#8220;&#8211;driver=atilibusb&#8221; line to it but I get an error when restarting the lircd service: /etc/sysconfig/lirc: line 1: &#8211;driver=atilibusb: command not found
</p>
<p>I was very surprised to find that the file /etc/lircd.conf contained a line saying that it was generated by lirc-0.7(lirc_atiusb) or something like that. I have since overwritten the file with the one from here -> <a href="http://www.mythtv.org/wiki/Snapstream_Firefly">http://www.mythtv.org/wiki/Snapstream_Firefly</a> that is generated by lirc-0.8.4a(atilibusb).
</p>
<p>Still when I run lsmod there is no entry for &#8220;lirc_atiusb&#8221; or for &#8220;atilibusb&#8221; as I&#8217;ve read in other posts should be the case.
</p>
<p>This is a completely fresh installation of MD10.21. I choose all of the default options and chose my remote from the list of options in the browser-based setup. From everyone else&#8217;s posts it&#8217;s supposed to just work with the defaults so I was surprised that with the default install I was finding the older version in /etc/lircd.conf
</p>
<p>I ran &#8220;yum upgrade&#8221; after the first run of mythtv and it all seemed to run fine. I got upgraded to .22 for mythtv but I still can not get anything for my remote. I changed the batteries in the remote so they are fresh but I get nothing when running irw and when I try irrecord I get
</p>
<p>&#8220;irrecord: could not get file information for /dev/lirc
</p>
<p>irrecord: default_init(): No such file or directory
</p>
<p>irrecord: could not init hardware (lircd running ? &#8211;> close it, check permissions)&#8221;
</p>
<p>Anyone have any thoughts?
</p>
<p>Thank you so much! Obviously the WAF is very low right now.
</p>
<p>
 </p>
<p style="margin-left: 27pt"><a href="http://www.mythdora.com/?q=node/4263"><span style="font-size:16pt"><strong>What are the contents of</strong></span></a><br/>Submitted by <a href="http://www.mythdora.com/?q=user/32">pisani</a> on January 24, 2010 &#8211; 8:21am.<br/>What are the contents of your /etc/sysconfig/lirc file?<br/>I believe it should read something like this: &#8220;LIRCD_OPTIONS=&#8217;-H atilibusb&#8217;&#8221;<br/>You can also check to make atilibusb is compiled in (if yum upgrade changed your lirc version) at the commandline with lirc -H &#8211;help.<br/>Ryan
</p>
<p>
 </p>
<p><a href="http://www.mythdora.com/?q=node/4263"><span style="font-size:16pt"><strong>My /etc/sysconfig/lirc file</strong></span></a>
			</p>
<p>Submitted by <a href="http://www.mythdora.com/?q=user/5018">mbrinson</a> on January 24, 2010 &#8211; 8:35am.
</p>
<p>My /etc/sysconfig/lirc file is completely empty.
</p>
<p>I ran the lirc -H command and I got &#8220;bash: lirc: command not found&#8221;
</p>
<p>
 </p>
<p><a href="http://www.mythdora.com/?q=node/4263"><span style="font-size:16pt"><strong>Sorry, I realized it needs</strong></span></a>
			</p>
<p>Submitted by <a href="http://www.mythdora.com/?q=user/5018">mbrinson</a> on January 24, 2010 &#8211; 8:38am.
</p>
<p>Sorry, I realized it needs to be lircd for the command.
</p>
<p>Here&#8217;s what I got:
</p>
<p>lircd -H &#8211;device=atilibusb
</p>
<p>Driver `&#8211;device=atilibusb&#8217; not supported.
</p>
<p>Supported drivers:
</p>
<p>accent
</p>
<p>alsa_usb
</p>
<p>asusdh
</p>
<p>atilibusb
</p>
<p>audio
</p>
<p>audio_alsa
</p>
<p>bte
</p>
<p>bw6130
</p>
<p>commandir
</p>
<p>creative
</p>
<p>creative_infracd
</p>
<p>default
</p>
<p>devinput
</p>
<p>dsp
</p>
<p>dvico
</p>
<p>ea65
</p>
<p>i2cuser
</p>
<p>irlink
</p>
<p>irman
</p>
<p>livedrive_midi
</p>
<p>livedrive_seq
</p>
<p>logitech
</p>
<p>macmini
</p>
<p>mp3anywhere
</p>
<p>mplay
</p>
<p>mouseremote
</p>
<p>mouseremote_ps2
</p>
<p>null
</p>
<p>pcmak
</p>
<p>pinsys
</p>
<p>pixelview
</p>
<p>samsung
</p>
<p>sb0540
</p>
<p>silitek
</p>
<p>tira
</p>
<p>udp
</p>
<p>uirt2
</p>
<p>uirt2_raw
</p>
<p>usb_uirt_raw
</p>
<p>usbx
</p>
<p>
 </p>
<p><a href="http://www.mythdora.com/?q=node/4263"><span style="font-size:16pt"><strong>Okay, obviously I don&#8217;t know</strong></span></a>
			</p>
<p>Submitted by <a href="http://www.mythdora.com/?q=user/5018">mbrinson</a> on January 24, 2010 &#8211; 8:48am.
</p>
<p>Okay, obviously I don&#8217;t know what I&#8217;m doing. Go easy on me. <img src='http://www.brintech.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />
</p>
<p>I finally found the right syntax and here is the result:
</p>
<p>&#8220;lircd -H atilibusb&#8221;
</p>
<p>lircd: there seems to already be a lircd process with pid 2024
</p>
<p>lircd: otherwise delete stale lockfile /var/run/lircd.pid
</p>
<p>So I stopped the lircd with &#8220;/sbin/service lirc stop&#8221; and then ran &#8220;lircd -H atilibusb&#8221; and then I ran irw and it WORKS!!
</p>
<p>So why wouldn&#8217;t this work by default since I used all the default install options for MD10.21?
</p>
<p>More importantly, where do I add this so that it autostarts and is running correctly?
</p>
<p>Thank you so much!!! You are the best!!!!
</p>
<p>
 </p>
<p style="margin-left: 27pt"><a href="http://www.mythdora.com/?q=node/4263"><span style="font-size:16pt"><strong>When you did you install,</strong></span></a><br/>Submitted by <a href="http://www.mythdora.com/?q=user/32">pisani</a> on January 24, 2010 &#8211; 9:40am.<br/>When you did you install, did you check the mythdora-updates repo to be active during the install? I think we made a fix for this after the release, and you&#8217;d have had to upgraded the mythdora rpm or checked it to update in the installer basically.<br/>If you missed enabling mythdora-updates it wouldn&#8217;t have had the proper fixes when you ran through the setup. <br/>Also, you could have re-run the infrared device configuration from the mythdora-settings menus. <br/>Ryan
</p>
<p>
 </p>
<p><a href="http://www.mythdora.com/?q=node/4263"><span style="font-size:16pt"><strong>Thanks for the reply Ryan.</strong></span></a>
			</p>
<p>Submitted by <a href="http://www.mythdora.com/?q=user/5018">mbrinson</a> on January 24, 2010 &#8211; 9:46am.
</p>
<p>Thanks for the reply Ryan. I was afraid to enable any other packages. When you say to enable the mythdora-updates you mean to check that additional repository during the install right?
</p>
<p>I checked a few additional repositories the first time I installed and it said I had some conflicts or something and then I had to re-run the install from the beginning as it errored out with some kind of a bug message.
</p>
<p>I want to be sure I&#8217;ve got it set up as stable as possible so if that&#8217;s what I need to do then I will re-run the installation from the start and wipe everything out again.
</p>
<p>Thanks again!
</p>
<p>
 </p>
<p style="margin-left: 27pt"><a href="http://www.mythdora.com/?q=node/4263"><span style="font-size:16pt"><strong>No. You don&#8217;t need to wipe</strong></span></a><br/>Submitted by <a href="http://www.mythdora.com/?q=user/32">pisani</a> on January 24, 2010 &#8211; 10:38am.<br/>No. You don&#8217;t need to wipe anything. I was just asking if you did that step or not, which would explain why it didn&#8217;t work the first time.<br/>You should run this from the command line as root however:<br/>yum upgrade mythdora<br/>To upgrade to the stable mythdora rpm. <br/>Ryan
</p>
<p>
 </p>
<p><a href="http://www.mythdora.com/?q=node/4263"><span style="font-size:16pt"><strong>Just to follow up for anyone</strong></span></a>
			</p>
<p>new
</p>
<p>Submitted by <a href="http://www.mythdora.com/?q=user/5018">mbrinson</a> on January 25, 2010 &#8211; 10:34pm.
</p>
<p>Just to follow up for anyone else going down the same road. I went ahead and reinstalled from scratch again and enabled the mythdora-updates package to see if the remote would work by default. It still did not work.
</p>
<p><span style="font-size:15pt"><strong>The key to getting it to work is to copy the updated /etc/lircd.conf file from this wiki page -> <a href="http://www.mythtv.org/wiki/Snapstream_Firefly">http://www.mythtv.org/wiki/Snapstream_Firefly</a><br />
					</strong></span></p>
<p>After copying that into the lircd.conf file then it did work without me having to add the &#8220;LIRCD_OPTIONS=&#8217;-H atilibusb&#8217;&#8221; line to the /etc/sysconfig/lirc file. So choosing to enable the mythdora-updates repository must have allowed it to add that line, but somehow it does not enable the correct /etc/lircd.conf file to be included by default.
</p>
<p>Thanks again for the help pisani. You guys are just incredible. <img src='http://www.brintech.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />
</p>
<p>
 </p>
<p><span style="font-family:Tahoma; font-size:8pt"><span style="color:#666666">Pasted from <a href="http://www.mythdora.com/?q=node/4263"/></span>http://www.mythdora.com/?q=node/4263#comment-20040<span style="color:#666666"></a><br />
</span></span></p>
<p>
 </p>
</li>
</ol>
<p>For errors with &#8220;yum install&#8221; hanging on &#8220;Loaded plugins: refresh-packagekit&#8221; the way I was able to get it moving on again was to deactivate a couple of repositories.  I went through the gui interface
</p>
<p style="margin-left: 1pt"><img src="http://www.brintech.net/wp-content/uploads/2010/02/021010_2329_Documenting5.png" alt=""/><span style="font-family:Times New Roman; font-size:12pt"><br />
		</span></p>
<p style="margin-left: 1pt">and unchecked  Fedora 10 &#8211; i386, Fedora 10 &#8211; i386 &#8211; Updates, and Livna for Fedora Core 10 &#8211; i386 &#8211; Base
</p>
<p style="margin-left: 1pt"><img src="http://www.brintech.net/wp-content/uploads/2010/02/021010_2329_Documenting6.png" alt=""/><span style="font-family:Times New Roman; font-size:12pt"><br />
		</span></p>
<p style="margin-left: 1pt">Then it started working again.
</p>
<p> <br />
 </p>
<p>Here&#8217;s a cool addon that should be installed for music visualizations:
</p>
<p>
 </p>
<p><span style="font-size:18pt"><strong>ProjectM in Fedora 10/11<br />
</strong></span></p>
<p>With Fedora 10 and 11, ProjectM seems to work through libvisual with MythMusic. There&#8217;s no need to do any mods, standard Fedora packages (<span style="font-size:14pt"><strong>libvisual, libvisual-plugins, projectM-libvisual</strong></span>) seem to work fine! <span style="font-size:12pt"><br />
		</span></p>
<p>
 </p>
<p><span style="font-family:Tahoma; font-size:8pt"><span style="color:#666666">Pasted from <a href="http://www.mythtv.org/wiki/ProjectM"/></span>http://www.mythtv.org/wiki/ProjectM<span style="color:#666666"></a><br />
</span></span></p>
<p>
 </p>
<p>Just &#8220;yum install</p>
<packagename>&#8221; and it should work.  I&#8217;m about to try it and will report back.
</p>
<p>
 </p>
<p><span style="font-size:14pt"><strong>HERE IS THE CRUCIAL lircd.conf FILE<br />
</strong></span></p>
<p>
 </p>
<p># Please make this file available to others<br/># by sending it to</p>
<lirc@bartelmus.de><br/>#<br/># this config file was automatically generated<br/># using lirc-0.8.4a(atilibusb) on Mon Nov 24 14:58:45 2008<br/>#<br/># contributed by <br/>#<br/># brand:                       lircd.conf<br/># model no. of remote control: <br/># devices being controlled by this remote:<br/>#<br/>
	</p>
<p>begin remote<br/>
	</p>
<p>name  lircd.conf<br/>  bits           16<br/>  eps            30<br/>  aeps          100<br/>  one             0     0<br/>  zero            0     0<br/>  pre_data_bits   8<br/>  pre_data       0&#215;14<br/>  post_data_bits  16<br/>  post_data      0&#215;0<br/>  gap          147992<br/>  min_repeat      5<br/>  toggle_bit_mask 0&#215;80800000<br/>
	</p>
<p>      begin codes<br/>          MAXI                     0&#215;812C<br/>          MAXI                     0&#215;01AC<br/>          CLOSE                    0&#215;5702<br/>          CLOSE                    0xD782<br/>          1                        0&#215;620D<br/>          1                        0xE28D<br/>          2                        0&#215;630E<br/>          2                        0xE38E<br/>          3                        0&#215;640F<br/>          3                        0xE48F<br/>          4                        0&#215;6510<br/>          4                        0xE590<br/>          5                        0&#215;6611<br/>          5                        0xE691<br/>          6                        0&#215;6712<br/>          6                        0xE792<br/>          7                        0&#215;6813<br/>          7                        0xE893<br/>          8                        0&#215;6914<br/>          8                        0xE994<br/>          9                        0&#215;6A15<br/>          9                        0xEA95<br/>          0                        0&#215;6C17<br/>          0                        0xEC97<br/>          BACK                     0&#215;6B16<br/>          BACK                     0xEB96<br/>          ENT                      0&#215;6D18<br/>          ENT                      0xED98<br/>          VOL+                     0&#215;5E09<br/>          VOL+                     0xDE89<br/>          VOL-                     0&#215;5D08<br/>          VOL-                     0xDD88<br/>          MUTE                     0&#215;5F0A<br/>          MUTE                     0xDF8A<br/>          FIREFLY                  0&#215;5500<br/>          FIREFLY                  0xD580<br/>          CH+                      0&#215;600B<br/>         CH+                      0xE08B<br/>          CH-                      0&#215;610C<br/>          CH-                      0xE18C<br/>          INFO                     0&#215;832E<br/>          INFO                     0&#215;03AE<br/>          OPTION                   0&#215;842F<br/>          OPTION                   0&#215;04AF<br/>          UP                       0&#215;6F1A<br/>          UP                       0xEF9A<br/>          LEFT                     0&#215;721D<br/>          LEFT                     0xF29D<br/>          DOWN                     0&#215;7722<br/>          DOWN                     0xF7A2<br/>          RIGHT                    0&#215;741F<br/>          RIGHT                    0xF49F<br/>          OK                       0&#215;731E<br/>          OK                       0xF39E<br/>          MENU                     0&#215;711C<br/>          MENU                     0xF19C<br/>          EXIT                     0&#215;7520<br/>          EXIT                     0xF5A0<br/>          REC                      0&#215;7C27<br/>          REC                      0xFCA7<br/>          PLAY                     0&#215;7A25<br/>          PLAY                     0xFAA5<br/>          STOP                     0&#215;7D28<br/>          STOP                     0xFDA8<br/>          REW                      0&#215;7924<br/>          REW                      0xF9A4<br/>          FWD                      0&#215;7B26<br/>          FWD                      0xFBA6<br/>          PREV                     0&#215;802B<br/>          PREV                     0&#215;00AB<br/>          PAUSE                    0&#215;7E29<br/>          PAUSE                    0xFEA9<br/>          NEXT                     0&#215;7F2A<br/>          NEXT                     0xFFAA<br/>          MUSIC                    0&#215;5B06<br/>          MUSIC                    0xDB86<br/>          PHOTOS                   0&#215;5A05<br/>          PHOTOS                   0xDA85<br/>          DVD                      0&#215;5904<br/>          DVD                      0xD984<br/>          TV                       0&#215;5803<br/>          TV                       0xD883<br/>          VIDEO                    0&#215;5C07<br/>          VIDEO                    0xDC87<br/>          HELP                     0&#215;5601<br/>          HELP                     0xD681<br/>          MOUSE                    0&#215;822D<br/>          MOUSE                    0&#215;02AD<br/>          A                        0&#215;6E19<br/>          A                        0xEE99<br/>          B                        0&#215;701B<br/>          B                        0xF09B<br/>          C                        0&#215;7621<br/>          C                        0xF6A1<br/>          D                        0&#215;7823<br/>          D                        0xF8A3<br/>      end codes<br/>
	</p>
<p>end remote
</p>
<p><span style="font-family:Tahoma; font-size:8pt"><span style="color:#666666">Pasted from <a href="http://www.mythtv.org/wiki/Snapstream_Firefly"/></span>http://www.mythtv.org/wiki/Snapstream_Firefly<span style="color:#666666"></a><br />
</span></span></p>
<p>
 </p>
<p>Option &#8220;UseEvents&#8221; &#8220;True&#8221;
</p>
<p>
 </p>
<p><span style="font-family:Tahoma; font-size:8pt"><span style="color:#666666">Pasted from <a href="http://mythdora.com/?q=node/4897"/></span>http://mythdora.com/?q=node/4897<span style="color:#666666"></a><br />
</span></span></p>
<p> <br />
 </p>
]]></content:encoded>
			<wfw:commentRss>http://www.brintech.net/documenting-mythdora-install-10-21-vnc-remote-control-with-vino/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Outlook Profile backup</title>
		<link>http://www.brintech.net/outlook-profile-backup/</link>
		<comments>http://www.brintech.net/outlook-profile-backup/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 23:21:28 +0000</pubDate>
		<dc:creator>mbrinson</dc:creator>
				<category><![CDATA[Technical Journal]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[outlook]]></category>

		<guid isPermaLink="false">http://www.brintech.net/2010/02/10/outlook-profile-backup/</guid>
		<description><![CDATA[I googled for quite some time but could not find anything…

I knew there was a registry key for this but it wasn&#8217;t so easy to find….

after digging the net / google for more than 30 minutes, I finally found the way to do it…

Just locate the following key in registry (start – run – regedit):

HKEY_CURRENT_USER\Software\Microsoft\Windows [...]]]></description>
			<content:encoded><![CDATA[<p>I googled for quite some time but could not find anything…
</p>
<p>I knew there was a registry key for this but it wasn&#8217;t so easy to find….
</p>
<p>after digging the net / google for more than 30 minutes, I finally found the way to do it…
</p>
<p>Just locate the following key in registry (start – run – regedit):
</p>
<p style="margin-left: 27pt"><span style="background-color:aqua">HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows Messaging Subsystem\Profiles\Outlook</span>
	</p>
<p>Then right click on the key, outlook and select option, Export…save it anywhere you want…
</p>
<p>and run it while restoring your outlook.
</p>
<p>This will restore your old outlook profile with all email accounts and rules.
</p>
<p>But, you will have to enter passwords for the accounts again. It does not store the user passwords.
</p>
<p><span style="font-family:Tahoma; font-size:8pt"><span style="color:#666666">Pasted from <<a href="http://www.whoisdeep.com/2006/03/07/backup-email-accounts-in-microsoft-outlook-2003/"/></span>http://www.whoisdeep.com/2006/03/07/backup-email-accounts-in-microsoft-outlook-2003/<span style="color:#666666">><br />
</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.brintech.net/outlook-profile-backup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
