<?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>Mewcetti &#187; Tips</title>
	<atom:link href="http://mewcetti.com/category/tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://mewcetti.com</link>
	<description>My Home\\A blog about programming, satire, and my experiences</description>
	<lastBuildDate>Wed, 28 Apr 2010 00:55:09 +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>Alleviating Windows DNS performance problems</title>
		<link>http://mewcetti.com/2010/04/27/alleviating-windows-dns-performance-problems/</link>
		<comments>http://mewcetti.com/2010/04/27/alleviating-windows-dns-performance-problems/#comments</comments>
		<pubDate>Wed, 28 Apr 2010 00:55:09 +0000</pubDate>
		<dc:creator>Rei</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://mewcetti.com/?p=179</guid>
		<description><![CDATA[The Windows DNS system is central to ActiveDirectory so you can&#8217;t exactly get rid of it.  Unfortunately, it suffers from performance issues, especially when its coupled together with your primary domain controllers. I&#8217;ve experienced these issues on iSCSI storage, Fiber channel, and high speed 15k RPM SAS drives (albeit I haven&#8217;t tried solid state).  The [...]]]></description>
			<content:encoded><![CDATA[<p>The Windows DNS system is central to ActiveDirectory so you can&#8217;t exactly get rid of it.  Unfortunately, it suffers from performance issues, especially when its coupled together with your primary domain controllers.</p>
<p>I&#8217;ve experienced these issues on iSCSI storage, Fiber channel, and high speed 15k RPM SAS drives (albeit I haven&#8217;t tried solid state).  The remedy I&#8217;ve found (and it rather cheap), is to using a caching DNS relay.</p>
<p>My particular setup uses <a href="http://centos.org/" target="_blank">CentOS</a> and <a href="http://www.unbound.net/" target="_blank">Unbound</a>.  It also uses paravirtualization mode and vmxnet3 adapters on a VMware ESX cluster for enhanced performance.  If you read further into the <a href="http://www.unbound.net/documentation/howto_optimise.html" target="_blank">Unbound Optimization Documentation</a>, you&#8217;ll get some really good tips on how to optimize the setup for your particular environment.</p>
<p><span id="more-179"></span></p>
<p>You&#8217;ll have to upgrade <a href="http://www.monkey.org/~provos/libevent/" target="_blank">libevent</a> as of CentOS 5.4 (version 1.4.8 seems to work as they indicate), but this is rather simple.  Just do a simple &#8220;./configure &amp;&amp; make &amp;&amp; sudo make install&#8221; job on that library, then when you&#8217;re running your ./configure on libevent, be sure to add &#8211;with-libevent=/usr/local as an argument.</p>
<p>My particular DNS is only allocated 1 CPU (which works rather well, DNS&#8217;s usually aren&#8217;t too processor intensive, just I/O intensive), so I chose to enable forked operation as well for an extra little boost (10-20% since no thread locking needs to take place).</p>
<p>Finally, once all you have everything set up, be SURE to add the following lines to your config</p>
<p>(under Forward Zones section)</p>
<p>name: .<br />
forward-addr: DNS-Server-1-IP-Address<br />
forward-addr: DNS-Server-2-IP-Address</p>
<p>and so on.  You can use as many or as few &#8220;forward-addr:&#8221; lines as you see fit.  The &#8220;name: .&#8221; basically tells it to forward all requests to your Windows DNS servers.  You can set it up where it will only look up your AD domain names on your Windows DNS&#8217;s then use another DNS server for everything else as well.</p>
<p>You also might change a few other variables like &#8220;cache-min-ttl&#8221; and &#8220;cache-max-ttl&#8221; to something like 30 and 90 respectively, to ensure that the addresses are cached for a reasonable amount of time to offload the Windows DNS servers, but also don&#8217;t get in the way of maintenance purposes.  Other variables like &#8220;msg-cache-size&#8221; and &#8220;so-rcvbuf&#8221; might need to be bumped up as well (with so-rcvbuf you might have to change a kernel variable to allow you to have larger I/O buffer sizes so DNS requests don&#8217;t get inadvertently dropped during spikes).</p>
<p>More information can be found in the <a href="http://www.unbound.net/documentation/unbound.conf.html" target="_blank">unbound.conf documentation</a>.</p>
<p>You should see a drastic cutdown in the response time and the amount of I/O load on your DNS servers.</p>
]]></content:encoded>
			<wfw:commentRss>http://mewcetti.com/2010/04/27/alleviating-windows-dns-performance-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove GRUB from a Mac under OSX</title>
		<link>http://mewcetti.com/2009/07/11/remove-grub-from-a-mac-under-osx/</link>
		<comments>http://mewcetti.com/2009/07/11/remove-grub-from-a-mac-under-osx/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 00:20:01 +0000</pubDate>
		<dc:creator>Rei</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://mewcetti.com/?p=145</guid>
		<description><![CDATA[I seem to deal with the most obscure scenarios known to computing, and here&#8217;s another one. So you&#8217;ve installed Ubuntu on your Mac running a dual boot with OSX, but you messed up and accidentally installed the bootloader to the MBR.  Well this will render your system useless as Mac&#8217;s use EFI and GPTs, rendering [...]]]></description>
			<content:encoded><![CDATA[<p>I seem to deal with the most obscure scenarios known to computing, and here&#8217;s another one.</p>
<p>So you&#8217;ve installed <a href="http://www.ubuntu.com/" target="_blank">Ubuntu</a> <a href="https://wiki.ubuntu.com/MactelSupportTeam/CommunityHelpPages" target="_blank">on your Mac</a> running a dual boot with OSX, but you messed up and accidentally installed the bootloader to the MBR.  Well this will render your system useless as Mac&#8217;s use EFI and GPTs, rendering MBRs rather useless, outside of its MBR emulation mode that is.  However in order for it to function properly, it needs to be on your first Ubuntu partition, not in the whole disk&#8217;s MBR segment.</p>
<p>You <em>could</em> just reinstall, but that&#8217;ll will leave another icon of Tux just sitting there in your <a href="http://refit.sourceforge.net/" target="_blank">rEFIt</a> menu.  Its a little annoying in my opinion so lets get rid of it.</p>
<p>Within OSX, pop open your Terminal (yeah, that thing that none of you Mac-heads ever use but us UNIX guys can&#8217;t live without).  If you&#8217;re running a Mac with only 1 hard drive then its pretty simple.  Just type in <strong><em>sudo fdisk -u /dev/disk0</em></strong><sup>See note</sup> and just type in your password and go.  This will write a new MBR to the proper segment and remove the extra logo from rEFIt.</p>
<p>If you&#8217;re running multiple hard drives with ZFS concatenation, or RAID, or whatever the heck you may be doing, you&#8217;re on your own, sorry <img src='http://mewcetti.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong>Note:</strong> Be careful in performing this action, because it does mess with your MBR.  I don&#8217;t think your Mac is going to be that picky with the MBR since it uses a GPT by default but it still could <strong>render your system unbootable</strong>.  As such I obviously take no responsibility for your actions.  You break it, its your fault, not mine.</p>
]]></content:encoded>
			<wfw:commentRss>http://mewcetti.com/2009/07/11/remove-grub-from-a-mac-under-osx/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Getting the Alfa AWUS036H working on Ubuntu</title>
		<link>http://mewcetti.com/2009/02/13/getting-the-alfa-awus036h-working-on-ubuntu/</link>
		<comments>http://mewcetti.com/2009/02/13/getting-the-alfa-awus036h-working-on-ubuntu/#comments</comments>
		<pubDate>Sat, 14 Feb 2009 04:59:51 +0000</pubDate>
		<dc:creator>Rei</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://mewcetti.com/?p=115</guid>
		<description><![CDATA[The Alfa AWUS036H, based on the Realtek 8187 chipset, is a really nice unit, but it tends to have a few quirks on Ubuntu. Here&#8217;s how I got mine working. First make sure that you have the rtl8187 driver installed and loaded by running (do NOT plug your Alfa in yet, if you already have [...]]]></description>
			<content:encoded><![CDATA[<p>The Alfa AWUS036H, based on the Realtek 8187 chipset, is a really nice unit, but it tends to have a few quirks on Ubuntu.  Here&#8217;s how I got mine working.</p>
<p>First make sure that you have the rtl8187 driver installed and loaded by running (do NOT plug your Alfa in yet, if you already have it plugged in, unplug it, disable any existing networking equipment, restart the wireless by right clicking on the network manager and unchecking &#8220;Wireless&#8221;, then recheck it)<br />
Code:</p>
<p><i>sudo modprobe rtl8187</i></p>
<p>Now plug your Alfa in. You should see that the Network Manager identifies the dongle as a &#8220;Realtek RTL8187&#8243;. Go ahead and associate with a network if you can.</p>
<p>Now I was using the Alfa with an 8dBi antenna. You do the math to realize how much power that is, and you&#8217;re probably getting a bunch of reflections and echos. We need to turn the power down.</p>
<p>Code:</p>
<p><i>sudo iwconfig wlan0 txpower 50mW</i></p>
<p>Where wlan0 is the name of your dongle.</p>
<p>I also had an issue where the dongle was identifying the signal strength as much lower than it actually was, so it set my bit rate really low (like 1Mb/s)</p>
<p>To fix this, run<br />
Code:</p>
<p><i>sudo iwconfig wlan0 rate auto</i></p>
<p>And it should read 54 Mb/s when you do another iwconfig</p>
<p>Now you need to reassociate to the network. You do this by going to your network manager and right clicking on the network you&#8217;ve already associated to.</p>
<p>After doing this my networking was screaming fast. Also continued to work after reboot, but the power went back up. I left it alone and things seemed stable. Held a stable ping over 2000 sequences with around 1% packet loss.</p>
<p>Hope this helps.</p>
]]></content:encoded>
			<wfw:commentRss>http://mewcetti.com/2009/02/13/getting-the-alfa-awus036h-working-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Utilizing the internet as a modern student: Tips from a Master Googler</title>
		<link>http://mewcetti.com/2008/09/28/utilizing-the-internet-as-a-modern-student-tips-from-a-master-googler/</link>
		<comments>http://mewcetti.com/2008/09/28/utilizing-the-internet-as-a-modern-student-tips-from-a-master-googler/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 04:53:43 +0000</pubDate>
		<dc:creator>Rei</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Using the Internet as a Student]]></category>

		<guid isPermaLink="false">http://mewcetti.com/2008/09/28/utilizing-the-internet-as-a-modern-student-tips-from-a-master-googler/</guid>
		<description><![CDATA[This is an article in two parts, the first explains search engines and searching, while the second explains actual tips about searching, skip to the second part if you don&#8217;t want to read about search engines and searching. Part 1: Understanding the Google Algorithm and computer searching The internet is a big place.  What amasses [...]]]></description>
			<content:encoded><![CDATA[<p>This is an article in two parts, the first explains search engines and searching, while the second explains actual tips about searching, skip to the second part if you don&#8217;t want to read about search engines and searching.</p>
<h2>Part 1: Understanding the Google Algorithm and computer searching</h2>
<p>The internet is a big place.  What amasses in the petabytes (1 petabyte = 1,048,576 Gigabytes; possibly even larger) of information, culminates one of the largest data archives in the known universe, and best yet, it&#8217;s actively archived by search engines such as Google, Microsoft Live, and Yahoo.  However, in it&#8217;s initial days, search engines were loaded down with poor information and bad sorting algorithms.  Fortunately, this is no longer the case.  Ever since Google came into being, the original revolutionary search engine sorting algorithm, pretty much everyone has updated their algorithms to be more efficient, and thus more useful.</p>
<p>However, despite this, the ever growing Google index can be difficult to navigate and find useful information.  With literally trillions of entries (<a href="http://googleblog.blogspot.com/2008/07/we-knew-web-was-big.html" target="_blank">link</a>) in the index, searching through it to find anything from a niche topic to the latest big news article can be an absolute nightmare (and just imagine what it&#8217;s like to INDEX all of this).</p>
<p>First however, you need to understand a little about searching.</p>
<p><span id="more-96"></span></p>
<p>For the most part, computer search programs index information based on key words.  Indexing, is the action of taking significant (important) information, id est, key words, and adding the key words plus their location to a massive database called an index.  Like the index cards at your local library, the index contains significant information and it&#8217;s location, along with some other information (Google actually keeps a cache of the sites the crawl, id est they keep a copy).  However, unlike your index cards, indexes can span trillions of entries across terabytes of drive space.</p>
<p>Computers, however, are able to take this information and process it based on rules (aka an algorithm) and update the index with this information.</p>
<p>This introduces a couple of problems.</p>
<p>First two are technical.  The first of the two is searching.  Its extremely inefficient to just go from A-&gt;Z on the index list.  Computer&#8217;s on their own are incapable of just &#8220;skimming&#8221; through the index like we are to find the information they&#8217;re looking for.  Therefore more efficient sorting algorithms such as Binary searching are used (although I highly doubt Google uses this mechanism, binary searching is a lot more efficient than &#8220;linear&#8221; searching, but is still inefficient in it&#8217;s own respect, id est serving up the kind of traffic Google serves).</p>
<p>The second is keeping all of this information up to date.  Sites, such as this blog, are constantly updated with more or less of a frequency.  Wikipedia for instance gets updated very rapidly, as do popular forums.  Other sites, such as the W3C&#8217;s site or a personal &#8220;about&#8221; page, are updated less frequently.  There are quite a few initiatives working to resolve some of these issues but more often then not you&#8217;ll notice it takes a few hours/days/weeks/months for you to see changes in a search engine&#8217;s index because of the time it takes to &#8220;crawl&#8221; (crawling is a term used to indicate what search engine &#8220;spiders&#8221; do, they&#8217;re computer programs that crawl the web parsing information and updating the index) your site.</p>
<p>The third is probably the most obviously and also arguably the most important.  How do you group all of that significant information together in a way that makes sense and is easy to use?</p>
<p>Google pioneered this thought with their revolutionary algorithm, of which the byproduct is a &#8220;Page Rank&#8221;.  Google&#8217;s method was to use both the archaic method of taking your keywords and finding the site with the most of those keywords (however this resulted in quite a few &#8220;spam&#8221; sites), with a new method that measured how many sites <em>linked</em> to that given site with the given key words.  Exempli Gratia; say LifeHacker links to an article on Gizmodo with the key words &#8220;cell phone&#8221;.  This increases Gizmodo&#8217;s &#8220;Page Rank&#8221; because another site linked to it with given key words, so that when you search for &#8220;cell phone&#8221; you&#8217;re more likely to be linked to Gizmodo than some other site with just the key words &#8220;cell phone&#8221; and no site linking to it with those key words.</p>
<p>Confused yet?  Well it gets worse.  In this given example, LifeHacker has a high Page Rank, and thus it&#8217;s link to Gizmodo has more &#8220;weight&#8221; (id est, influence) on the Google Spiders than say if you opened a site on Geocities and linked to another site with the key words &#8220;cell phone&#8221;.</p>
<p>Short little trip off the path.  You probably are thinking &#8220;can&#8217;t this be exploited?&#8221; and the answer is yes.  Exploiting the Google algorithm is called &#8220;Google Bombing&#8221; and was very prominent in the 2004 US Presidential election (search &#8220;failure&#8221; or &#8220;waffle&#8221; and you&#8217;d see George Bush&#8217;s website and Michael Moore&#8217;s website linked to the prior and John Kerry&#8217;s website linked to the latter).</p>
<p>Now for a little more information.  Google has recently started keeping a history of your web searches (and web history if you use Google Toolbar or Google Chrome).  This adds to a decent level of personalization in your search results as Google &#8220;learns&#8221; how you search (how you phrase your search terms) and what information you look for.  However the extent to which this is effective is rather debatable.</p>
<p>Now that you have a better understanding of how Google sorts its data, lets work into part 2, which explains more of how to fully utilize the algorithm to find information.</p>
<h2>Part 2: Utilizing the Google Algorithm (aka, good searching techniques)</h2>
<p>First off, most common mistake is to ask Google a question.  This theory is due to A.Natural habit (you have a question, we&#8217;re all trained to ask it a specific way) and B. Ask Jeeves, which is (misleadingly) getting users to ask it questions.  Google is smart enough to omit some of the commonly used &#8220;question keywords&#8221; such as &#8220;how do I ___?&#8221;  It will extrapolate that phrase and guide you to a site that has instructions on how to do whatever.</p>
<p>However, a better method is to completely remove the &#8220;how do I?&#8221; part, and just go with the ____ part.  Exempli Gratia, if your question is <em>how do I register to vote</em> you&#8217;d enter <em>register to vote</em> in Google and it will likely lead you to a site that has registration information.  Also, this search is further enhanced by adding your state of residence, such as <em>register to vote Texas</em>.  Also keep in mind that Google does <strong>not</strong> keep your search terms linear unless you specifically ask it to.  So <em>register to vote Texas</em> is the same as <em>Texas register to vote</em> which is the same as <em>register Texas vote to</em>.  If you want to signal Google to keep all search terms (not omit any search terms that you inputted) and in that specific order, use quotation marks around your search term.  Keep in mind that this will seriously hamper the amount of search terms returned, and while useful for honing in on specific things such as quotes, will be a lot less useful for generic information because other people might have phrased their information differently.  Also keep in mind that words like &#8220;to&#8221; and &#8220;for&#8221; and words like that are largely unnecessary in a search, but can sometimes be helpful if you need to reference back to that search later.</p>
<p>Second is probably isn&#8217;t what a lot of you are going to want to hear, but, while decent search terms yield decent to good answers, great search terms will often times lead you to exactly what you want.  Great search terms often times require research, unless you already know about the given topic.</p>
<p>Like the Substitution Method in Integral Calculus, finding great search terms is more or less a trial-and-error process, all the time while you refine your search terms.  On average, I usually do 3-4 searches in Google before I find the information I was looking for.  Good search terms will often lead you to sites with good information that helps you refine your search terms.</p>
<p>However, I will most often (probably 95%-98% of the time) find my answer (or information to refine my search terms) on the first 2 pages of search results.  The thing about the Google algorithm is the information grows more irrelevant as you proceed farther down the search results.</p>
<p>This can usually be a huge time saver for those of you used to pouring over all those pages of miscellaneous and seemingly irrelevant information (often times it is).  If your top results are irrelevant to your topic, chances are you need to change your search terms.</p>
<p>But what is a good search term?  Well like I said, it&#8217;s largely a trial-and-error method, but once you get used to doing it you can usually come up with good to great search terms off the top of your head in seconds.  It also has a lot to do with how much you know on a given topic.</p>
<p>However lets take an example.  I know a lot about Windows Mobile, media formats (such as H.264), and the AT&amp;T Tilt.  Someone asked me a question about H.264 playback on the AT&amp;T Tilt.  Personally I had never tried this (I usually use my laptop for video playback if it&#8217;s necessary), so I have no idea what techniques work and which don&#8217;t.  However, I know that the Tilt in all logic should be able to run SD H.264 videos with decent framerates.  I searched &#8220;Windows Mobile H.264&#8243; (because Google handles search terms based on key words, not on the actual question), and then scanned through the search results.  Turns out my answer was the fourth link down &#8220;<a href="http://www.google.com/url?sa=t&amp;source=web&amp;ct=res&amp;cd=4&amp;url=http%3A%2F%2Fwww.hackszine.com%2Fblog%2Farchive%2F2007%2F08%2Fhowto_ipod_and_psp_movies_on_w.html&amp;ei=clbgSP6rB4G61wbjk82CBA&amp;usg=AFQjCNEDEwyCN89LW-4V6Jma613aZqpiNw&amp;sig2=gszIAUB_YFjor7XZ4E2R-Q" target="_blank">Hackzine.com: HOWTO &#8211; iPod and PSP movies on Windows Mobile</a>&#8220;.  I happened to know this was correct information because I know the iPod and PSP use H.264 as their primary codec.  I also checked the description of the link which read &#8220;Last week I mentioned that you can use TCPMP on <strong>Windows Mobile</strong> Smartphones and Pocket PCs to view <strong>H.264</strong> encoded MP4s&#8221;.  Notice how my search terms are bold-faced?  That description was exactly the information I wanted or at least had further information on it within that link.</p>
<p><span style="text-decoration: underline;">How do you refine your search terms though?</span> This can sometimes be more ambiguous but will often times require you to read an article.  However, reading entire articles can be lengthy and time consuming, something we as students have very little of.  So I&#8217;d like to introduce you to a keyboard shortcut.  I know this works in Firefox (my favorite method) and in Internet Explorer (a more annoying version with a popup box).  <strong>Ctrl+F</strong>.  This is the &#8220;find&#8221; shortcut (you can go into your toolbar, and Find is usually under &#8220;Edit&#8221;, sometimes called &#8220;Find in this page&#8221; or &#8220;Where is&#8221;) and can be a life saver.  Remember how I referenced the link descriptions in Google?  How they bold-face your matching search terms to the key words on that page?  Well this is where that comes really in handy.  Typically you can see a short preview of the information on the page before you even enter it, allowing you to discern if it&#8217;s even worth looking at, but sometimes you need to read that entire paragraph of information in order to comprehend what it&#8217;s talking about.  So you enter the page, Ctrl+F, enter your search terms that were bold faced on Google, and this will take you directly to the location of those keywords in that page.  Keep in mind that, while Google&#8217;s search tool is <strong>not</strong> linear, Firefox&#8217;s search (and probably all of them) <strong>ARE</strong>.  So in Firefox, <em>Windows Mobile</em> is <strong>not</strong> the same as <em>Mobile Windows</em>, yet they will yield the same results in Google if you search the two.</p>
<p>So once your search terms are highlighted in the page (you may have to hit &#8220;Next&#8221; a few times to find that paragraph, but you may also need to find further information in that page) you can read up a little more information and may even be able to refine your search topic, or even find your answer.</p>
<p>Now I know that sounds like a lot to learn and practice.  It does take quite a while to learn well.  I&#8217;ve been using Google for years and years, and it&#8217;s taken a long time to work out my technique.  However, with all the searching we do as students, you can work out a method rather quickly.</p>
]]></content:encoded>
			<wfw:commentRss>http://mewcetti.com/2008/09/28/utilizing-the-internet-as-a-modern-student-tips-from-a-master-googler/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Pidgin problems with Vista 64-bit</title>
		<link>http://mewcetti.com/2008/09/24/pidgin-problems-with-vista-64-bit/</link>
		<comments>http://mewcetti.com/2008/09/24/pidgin-problems-with-vista-64-bit/#comments</comments>
		<pubDate>Wed, 24 Sep 2008 23:18:37 +0000</pubDate>
		<dc:creator>Rei</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://mewcetti.com/2008/09/24/pidgin-problems-with-vista-64-bit/</guid>
		<description><![CDATA[Been a while since I last posted but I think I have the problem with Pidgin crashing every so often in Vista 64-bit figured out.&#160; My guess is that it has to do with UAC (User Account Control).&#160; Disable this and it seems like it&#8217;s a lot more stable.&#160; I haven&#8217;t totally tested this theory [...]]]></description>
			<content:encoded><![CDATA[<p>Been a while since I last posted but I think I have the problem with Pidgin crashing every so often in Vista 64-bit figured out.&#160; My guess is that it has to do with UAC (User Account Control).&#160; Disable this and it seems like it&#8217;s a lot more stable.&#160; I haven&#8217;t totally tested this theory yet but I&#8217;m going to do some more research on it and see if I can isolate it.&#160; And no, silent mode of UAC doesn&#8217;t help matters either.</p>
]]></content:encoded>
			<wfw:commentRss>http://mewcetti.com/2008/09/24/pidgin-problems-with-vista-64-bit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pidgin skins</title>
		<link>http://mewcetti.com/2008/08/28/pidgin-skins/</link>
		<comments>http://mewcetti.com/2008/08/28/pidgin-skins/#comments</comments>
		<pubDate>Thu, 28 Aug 2008 08:34:19 +0000</pubDate>
		<dc:creator>Rei</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://mewcetti.com/?p=89</guid>
		<description><![CDATA[Little known secret about Pidgin that I can&#8217;t seem to find anywhere but that I somehow figured out. Obviously it uses GTK for it&#8217;s window engine.  Logic tells us that it would use GTK themes in the same way.  This is correct. You can grab your themes from Gnome-Look (only from the GTK 2.x category) [...]]]></description>
			<content:encoded><![CDATA[<p>Little known secret about Pidgin that I can&#8217;t seem to find anywhere but that I somehow figured out.</p>
<p>Obviously it uses GTK for it&#8217;s window engine.  Logic tells us that it would use GTK themes in the same way.  This is correct.</p>
<p>You can grab your themes from <a href="http://www.gnome-look.org/" target="_blank">Gnome-Look</a> (only from the GTK 2.x category) and then extract them.</p>
<p>One you have your files, grab the folder that contains a folder with the name &#8220;gtk-2.0&#8243; (id est, you would find the &#8220;gtk-2.0&#8243; folder then hit &#8220;go up one level&#8221; one time, and then take that folder) and put it under <strong>C:\Program Files\Common Files\GTK\2.0\share\themes</strong> or <strong>C:\Program Files (x86)\Common Files\GTK\2.0\share\themes</strong> if you&#8217;re on 64-bit Windows.</p>
<p>This is the default location of GTK, if you installed it to a different you&#8217;ll need to go under /Share/themes from the root GTK install directory.</p>
<p>Then go to your start menu, find the GTK+ folder and launch &#8220;Theme Selector&#8221;, select the theme you chose from the &#8220;Global&#8221; list, hit ok, and now restart any GTK applications (like Pidgin).  You should have your new theme.</p>
]]></content:encoded>
			<wfw:commentRss>http://mewcetti.com/2008/08/28/pidgin-skins/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>JSP on IIS 6 and Apache with TomCat</title>
		<link>http://mewcetti.com/2008/08/23/jsp-on-iis-6-with-tomcat/</link>
		<comments>http://mewcetti.com/2008/08/23/jsp-on-iis-6-with-tomcat/#comments</comments>
		<pubDate>Sat, 23 Aug 2008 09:04:10 +0000</pubDate>
		<dc:creator>Rei</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://mewcetti.com/2008/08/23/jsp-on-iis-6-with-tomcat/</guid>
		<description><![CDATA[A note for those of you who followed these instructions on getting JSP to run transparently on IIS 6. This method, in my experience, would only function if IIS5 Isolation Mode was enabled. I&#8217;m not sure why but the ISAPI plugin started up just fine after enabling IIS5 isolation mode. Check this thread out. Microsoft [...]]]></description>
			<content:encoded><![CDATA[<p>A note for those of you who followed <a href="http://neosmart.net/blog/2006/configuring-jsp-for-iis/" target="_blank">these instructions</a> on getting JSP to run transparently on IIS 6.</p>
<blockquote><p><strong><span style="color: #b6b6b6;">This method, in my experience, would only function if IIS5 Isolation Mode was enabled.</span></strong></p></blockquote>
<p>I&#8217;m not sure why but the ISAPI plugin started up just fine after enabling IIS5 isolation mode.</p>
<p><a href="http://www.mail-archive.com/tomcat-user@jakarta.apache.org/msg107832.html" target="_blank">Check this thread out</a>.</p>
<p>Microsoft has <a href="http://msdn.microsoft.com/en-us/library/ms524990.aspx" target="_blank">this to say</a> about the modes of operation.</p>
<p>Here&#8217;s how to <a href="http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/ed3c22ba-39fc-4332-bdb7-a0d9c76e4355.mspx?mfr=true" target="_blank">enable IIS 5.0 Isolation mode</a>.</p>
<p>If you&#8217;re not into running Isolation mode (I wasn&#8217;t) I setup Apache 2.2 on a different port specifically to run JSP apps.  Instructions after the break&#8230;</p>
<p><span id="more-77"></span></p>
<p>If you want to do either way, grab yourself a cup of coffee (or another favorite) and clear a couple hours out.  The documentation on getting this done is sparse and annoyingly contradictory.</p>
<p>Here are a few good pages I polled info from:</p>
<p><a href="http://cwiki.apache.org/GMOxDOC11/configure-apache-httpd-with-jakarta-tomcat-connector-modjk.html" target="_blank">Good website, very accurate, follow these configuration instructions (a bit short though)</a><br />
<a href="http://apacheguide.org/jsp.php" target="_blank">Good information UNTIL you get to configuring Apache (do NOT follow these configuration instructions)</a><br />
<a href="http://tomcat.apache.org/connectors-doc/webserver_howto/apache.html" target="_blank">Old, outdated, but still somewhat useful Apache documentation</a></p>
<p>When you go to test your configuration, put</p>
<blockquote><p>JkMount /jsp-examples/* neosmart</p></blockquote>
<p>Into your httpd.conf file where neosmart is the worker from worker.list <em>name</em> defined in &#8220;workers.properties&#8221;.  Id est:</p>
<blockquote><p>worker.list=neosmart</p></blockquote>
<p><span style="color: #999999;">That should get you through it</span></p>
<p><span style="color: #999999;">Bear in mind that with the JkMount directive, it&#8217;s in the format &#8220;JkMount /directory/* worker&#8221; where directory is the directory to be hit by Tomcat under the default Tomcat install directory -&gt; webapps.  Id est, in the case of Windows, C:\Program Files\Apache Software Foundation\Tomcat 5.5\webapps by default.</span></p>
<p><span style="color: #999999;">The star after this is a wildcard telling Tomcat to parse (well, execute, but that&#8217;s semantics) everything UNDER that directory.  Again the <em>worker</em> directive is the worker that you&#8217;re using for that configuration, which would be neosmart in my case.</span></p>
<p><span style="color: #999999;">Now that I&#8217;ve thoroughly confused you due to my enhanced lethargy and exhaustion brought on by the night&#8217;s discoveries, I hope you&#8217;ll be able to take something out of this.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://mewcetti.com/2008/08/23/jsp-on-iis-6-with-tomcat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to flash a Tilt video</title>
		<link>http://mewcetti.com/2008/08/19/how-to-flash-a-tilt-video/</link>
		<comments>http://mewcetti.com/2008/08/19/how-to-flash-a-tilt-video/#comments</comments>
		<pubDate>Wed, 20 Aug 2008 05:33:42 +0000</pubDate>
		<dc:creator>Rei</dc:creator>
				<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://mewcetti.com/2008/08/19/how-to-flash-a-tilt-video/</guid>
		<description><![CDATA[I create a video for TiltMobility.com that explains and shows how to flash a ROM to your AT&#38;T Tilt, check it out. IMPORTANT! Flashing your ROM is a potentially dangerous activity and I take NO responsibility for you messing up your device or anything else. Please read this post on TiltMobility for important information about [...]]]></description>
			<content:encoded><![CDATA[<p>I create a video for <a href="http://tiltmobility.com/" target="_blank">TiltMobility.com</a> that explains and shows how to flash a ROM to your AT&amp;T Tilt, check it out.</p>
<p>IMPORTANT! Flashing your ROM is a potentially dangerous activity and I take NO responsibility for you messing up your device or anything else.</p>
<p>Please read <a href="http://tiltmobility.com/2008/08/how-to-flash-a-rom-video-new-version/" target="_blank">this post on TiltMobility</a> for important information about the video prior to flashing your ROM.</p>
<div class="wlWriterSmartContent" id="scid:5737277B-5D6D-4f48-ABFC-DD9C333F4C5D:796ea1a9-35bf-4476-8b17-0104a54abc13" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px">
<div><object width="400" height="267"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://www.vimeo.com/moogaloop.swf?clip_id=1554276&amp;server=www.vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" /><embed src="http://www.vimeo.com/moogaloop.swf?clip_id=1554276&amp;server=www.vimeo.com&amp;show_title=1&amp;show_byline=1&amp;show_portrait=0&amp;color=&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="400" height="267"></embed></object><br /><a href="http://www.vimeo.com/1554276?pg=embed&amp;sec=1554276">Tilt Mobility &#8212; Flash your AT&#038;T Tilt</a> from <a href="http://www.vimeo.com/tiltmobility?pg=embed&amp;sec=1554276">Tilt Mobility</a> on <a href="http://vimeo.com?pg=embed&amp;sec=1554276">Vimeo</a>.</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://mewcetti.com/2008/08/19/how-to-flash-a-tilt-video/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Vista threat rectified (rather quickly)</title>
		<link>http://mewcetti.com/2008/08/13/vista-threat-rectified-rather-quickly/</link>
		<comments>http://mewcetti.com/2008/08/13/vista-threat-rectified-rather-quickly/#comments</comments>
		<pubDate>Wed, 13 Aug 2008 07:42:35 +0000</pubDate>
		<dc:creator>Rei</dc:creator>
				<category><![CDATA[Thoughts]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://mewcetti.com/2008/08/13/vista-threat-rectified-rather-quickly/</guid>
		<description><![CDATA[Some of you probably read about the vulnerability in Vista that doesn&#8217;t just take advantage of any new exploit but rather Vista&#8217;s fundamental architecture all together. Well the way this systematic attack is approached is via an arbitrary browser exploit.&#160; But what if browser exploits were cut off from the main machine? Meet ZoneAlarm&#8217;s new [...]]]></description>
			<content:encoded><![CDATA[<p>Some of you probably read about the <a href="http://searchsecurity.techtarget.com/news/article/0,289142,sid14_gci1324395,00.html" target="_blank">vulnerability in Vista that doesn&#8217;t just take advantage of any new exploit but rather Vista&#8217;s fundamental architecture</a> all together.</p>
<p>Well the way this systematic attack is approached is via an arbitrary browser exploit.&#160; But what if browser exploits were cut off from the main machine?</p>
<p>Meet ZoneAlarm&#8217;s new security tool that&#8217;s been a bit long in coming in my opinion.&#160; It&#8217;s called <a href="http://www.zonealarm.com/store/content/catalog/products/zonealarm_forcefield.jsp" target="_blank">ForceField</a> (and with good reason).</p>
<p>What the product does is put your browser inside of a virtual environment that&#8217;s totally cut off from the underlying OS.&#160; It also cuts off the OS from the browser (helping negate the effects of keystroke loggers and such).</p>
<p>Now earlier they were giving away free CD keys for ForceField and I registered for a copy (1 year subscription).&#160; It doesn&#8217;t have Vista 64-bit support unfortunately but it is on my laptop (32-bit Windows XP) and I&#8217;d say that it runs rather well.&#160; My laptop is a machine that&#8217;s gaining a little age (although it&#8217;s far from old) and typically has some trouble running Firefox 3.0 with all my normal extensions.&#160; However even running virtually, it still runs rather fast (negligible performance decreases).</p>
<p>So aside from negating this proposed attack, it can also protect against a wide variety of other problems, and it&#8217;s existence (albeit probably inevitable) is certainly welcome.&#160; It will certainly be nice to be even less concerned about visited websites leaving cookies, ads containing exploits, and the like.</p>
]]></content:encoded>
			<wfw:commentRss>http://mewcetti.com/2008/08/13/vista-threat-rectified-rather-quickly/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Now on TiltSite</title>
		<link>http://mewcetti.com/2008/05/31/now-on-tiltsite/</link>
		<comments>http://mewcetti.com/2008/05/31/now-on-tiltsite/#comments</comments>
		<pubDate>Sat, 31 May 2008 07:10:18 +0000</pubDate>
		<dc:creator>Rei</dc:creator>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Utilities]]></category>

		<guid isPermaLink="false">http://mewcetti.com/2008/05/31/now-on-tiltsite/</guid>
		<description><![CDATA[Hey everyone, check out tiltsite.com, I&#8217;m a writer here now and you may see a couple of my posts.&#160; I&#8217;m working on the first article right now in fact. By the way, Microsoft Live Writer(and a lot of the Live suite of software) is very cool(using it right now for this article) Also&#8230;.I&#8217;m on the [...]]]></description>
			<content:encoded><![CDATA[<p>Hey everyone, check out <a href="http://tiltsite.com/" target="_blank">tiltsite.com</a>, I&#8217;m a writer here now and you may see a couple of my posts.&#160; I&#8217;m working on the first article right now in fact.</p>
<div class="wlWriterSmartContent" id="scid:32a77b7a-5ea4-47be-84fc-ff7471384e10:5538bb9a-3c63-4e9e-a5cc-f25ffc2cf519" style="padding-right: 0px; display: inline; padding-left: 0px; padding-bottom: 0px; margin: 0px; padding-top: 0px"><a href="http://tiltsite.com/"><img src="http://mewcetti.com/wp-content/uploads/2008/05/15c7b0d2-ef1a-4d4b-9300-1a94d383bd6a.jpg" border="0px" /></a></div>
<p>By the way, <a href="http://windowslivewriter.spaces.live.com/" target="_blank">Microsoft Live Writer</a>(and a lot of the Live suite of software) is very cool(using it right now for this article)</p>
<p>Also&#8230;.I&#8217;m on the President&#8217;s Honor Roll for last semester, WOOHOO!</p>
]]></content:encoded>
			<wfw:commentRss>http://mewcetti.com/2008/05/31/now-on-tiltsite/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
