<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>Tequila Fish</title>
	<link>http://www.tequilafish.com</link>
	<description>Ran-dumb ramblings of me...</description>
	<lastBuildDate>Wed, 28 Jul 2010 02:58:07 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.0" -->

	<item>
		<title>eAccelerator and open_basedir: open_basedir restriction in effect. File() is not within the allowed path(s):</title>
		<description><![CDATA[After installing eAccelerator on a CentOS 5.5 server running PHP 5.2.10, a bunch of websites began failing with open_basedir errors like so: [Fri Jul 16 17:53:50 2010] [error] [client XX.XX.XXX.XXX] PHP Warning: require() [function.require]: open_basedir restriction in effect. File() is not within the allowed path(s): (/home/username/) in /home/username/public_html/wp-settings.php on line 19, referer: http://www.server.com/ After doing [...]]]></description>
		<link>http://www.tequilafish.com/2010/07/22/eaccelerator-and-open_basedir-open_basedir-restriction-in-effect-file-is-not-within-the-allowed-paths/</link>
			</item>
	<item>
		<title>MySQL: Global find &amp; replace</title>
		<description><![CDATA[Global find &#038; replace is easy in MySQL: UPDATE table_name SET column_name = replace(column_name, "searchString", "replaceString");]]></description>
		<link>http://www.tequilafish.com/2010/04/29/mysql-global-find-replace/</link>
			</item>
	<item>
		<title>OS X Snow Leopard Bugs: Audio gets reset to mute on reboot.</title>
		<description><![CDATA[While my upgrade to OS x 10.6 Snow Leopard has been mostly smooth, there are a few annoying bugs I've come across. This one has to do with audio - upon reboot, audio gets set to mute no matter what settings I had the volume on before. Not a big problem, but annoying none the [...]]]></description>
		<link>http://www.tequilafish.com/2009/09/01/os-x-snow-leopard-bugs-audio-gets-reset-to-mute-on-reboot/</link>
			</item>
	<item>
		<title>Windows XP: How to cancel a chkdsk or scandisk scheduled upon reboot</title>
		<description><![CDATA[If you have a chkdsk or scandisk scheduled to run on a drive after your next reboot, normally you'd be able to cancel it by pressing any key 10 seconds before the scan starts. Unfortunately, my bluetooth keyboard/mouse combo didn't seem to work at this stage of bootup, so I was unable to cancel any [...]]]></description>
		<link>http://www.tequilafish.com/2009/08/02/windows-xp-how-to-cancel-a-chkdsk-or-scandisk-scheduled-upon-reboot/</link>
			</item>
	<item>
		<title>Slicehost: Setting up a Tor relay on Fedora to help keep Iran connected #IranElection</title>
		<description><![CDATA[As many of you know, most of the information from within Iran is coming from on-the-ground new-media and social networking sites such as Twitter, YouTube, and Facebook. This is happening despite crackdowns on communications networks by the Iranian government. The way this information is able to escape the firewalls of Iran is via proxies which [...]]]></description>
		<link>http://www.tequilafish.com/2009/06/21/slicehost-setting-up-a-tor-relay-on-fedora-to-help-keep-iran-connected-iranelection/</link>
			</item>
	<item>
		<title>Dojo: How to get the ID of an element.</title>
		<description><![CDATA[To get the ID of an element using Dojo Framework, you need to use the dojo.attr function. Given the following HTML: &#60;img src=&#34;/path/to/imageA.jpg&#34; id=&#34;myImage1&#34; /&#62; &#60;img src=&#34;/path/to/imageB.jpg&#34; id=&#34;myImage2&#34; /&#62; &#60;img src=&#34;/path/to/imageC.jpg&#34; id=&#34;myImage3&#34; /&#62; You can get the IDs of each image in Dojo like so: dojo.query(&#34;img&#34;).forEach(function(currentNode) { &#160;&#160;&#160;&#160;var theElementId = dojo.attr(currentNode, &#34;id&#34;); &#160;&#160;&#160;&#160;console.log(&#34;id: &#34;, theElementId); [...]]]></description>
		<link>http://www.tequilafish.com/2009/06/18/dojo-how-to-get-the-id-of-an-element/</link>
			</item>
	<item>
		<title>iPhone Wishlist &#8211; Form Input</title>
		<description><![CDATA[Added to my list of iPhone annoyances that I hope are someday fixed: When entering text into a form input, the first letter defaults to uppercase. This is fine for textboxes and most other inputs, but it is annoying for username/password inputs because more often than not these fields are case-sensitive. Perhaps the iPhone could [...]]]></description>
		<link>http://www.tequilafish.com/2009/05/06/iphone-wishlist-form-input/</link>
			</item>
	<item>
		<title>CSS: Removing extra space underneath an image.</title>
		<description><![CDATA[If you've ever tried to wrap an image in a div, you've surely came across the layout issue where an extra couple pixels of blank space are inserted underneath the image. Trying to get rid of this extra space has caused me to pull my hair out many times, but the fix is rather easy. [...]]]></description>
		<link>http://www.tequilafish.com/2009/04/29/css-removing-extra-space-underneath-an-image/</link>
			</item>
	<item>
		<title>Thickbox 3.1 with jQuery 1.3 &#8211; Stuck on loading image.</title>
		<description><![CDATA[Thickbox hasn't been updated in a while, and it is now incompatible with recent versions of jQuery (1.3+). What happens is that when you click the thickboxed element, the screen goes gray and the the loading "barber pole" image loads as expected, but then nothing happens... it just hangs on the loading image. The reason [...]]]></description>
		<link>http://www.tequilafish.com/2009/04/22/thickbox-31-with-jquery-13-stuck-on-loading-image/</link>
			</item>
	<item>
		<title>CSS: How to pin an image to the bottom of a DIV</title>
		<description><![CDATA[If you'd like to pin an image to the bottom of a DIV, it is a bit tricky. There is an relatively un-known property of an absolutely positioned element -- if you wrap it in a relatively positioned element, the absolute positioning of the wrapped element will be positioned relative to the wrapper rather than [...]]]></description>
		<link>http://www.tequilafish.com/2009/04/22/css-how-to-pin-an-image-to-the-bottom-of-a-div/</link>
			</item>
</channel>
</rss>
