<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.5" -->
<rss version="0.92">
<channel>
	<title>Tequila Fish</title>
	<link>http://www.tequilafish.com</link>
	<description>Ran-dumb ramblings of me...</description>
	<lastBuildDate>Tue, 10 Jun 2008 08:48:41 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>The 4th Leg.</title>
		<description>

So today Apple unveiled iPhone 2.0.  The whole Internets is abuzz about how much it sucks or how much it rules or how we wish technology could improve faster or how we hate it when it does.  For some reason, my mind wasn't really on iPhone 2.0 today. ...</description>
		<link>http://www.tequilafish.com/2008/06/10/the-4th-leg/</link>
			</item>
	<item>
		<title>Patriotism Part II</title>
		<description>New Rule:


Dissent is the sincerest form of Patriotism.  Ask the founding fathers.
 </description>
		<link>http://www.tequilafish.com/2008/04/18/patriotism-part-ii/</link>
			</item>
	<item>
		<title>Patriotism</title>
		<description>New rules:


Wearing a $1.99 flag pin Made in China does not make you a Patriot.
Putting a $1.99 ribbon sticker Made in China on your car does not make you a supporter of the troops.
 </description>
		<link>http://www.tequilafish.com/2008/04/17/patriotism/</link>
			</item>
	<item>
		<title>jQuery: using jquery.autocomplete.js plugin in noConflict mode</title>
		<description>When attempting to implement Dylan Verheul's excellent auto-complete jQuery plugin on a project, I ran into problems due to the fact that we are using noConflict mode for jQuery by calling noConflict();  A few quick minutes poking around jquery.autocomplete.js and I had updated it to work in both noConflict ...</description>
		<link>http://www.tequilafish.com/2008/03/09/jquery-using-autocompletejs-plugin-in-noconflict-mode/</link>
			</item>
	<item>
		<title>PHP &#038; ionCube Loader: &#8216;The Loader must appear as the first entry in the php.ini file in Unknown on line 0&#8242;</title>
		<description>I received the following in my Apache error_log when attempting to load the ionCube loader in my php.ini file:


PHP Fatal error:  [ionCube Loader] The Loader must appear as the first entry in the php.ini file in Unknown on line 0


This is because ionCube must be loaded before any of ...</description>
		<link>http://www.tequilafish.com/2008/02/18/php-ioncube-loader-the-loader-must-appear-as-the-first-entry-in-the-phpini-file-in-unknown-on-line-0/</link>
			</item>
	<item>
		<title>HOWTO: Install a networked printer without all that crappy software.</title>
		<description>Here's a step-by-step guide to installing a network printer in Windows XP without having to install all the additional crappy software that vendors force onto your system.  Often times installing all this additional software will compromise the stability of your system, slow it down, or both.  These steps ...</description>
		<link>http://www.tequilafish.com/2007/12/21/howto-install-a-networked-printer-without-all-that-crappy-software/</link>
			</item>
	<item>
		<title>Immigration &#038; The Bible - Leviticus comes back to haunt Conservatives</title>
		<description>These days, religion and politics seem to be one in the same.  The line has been blurred so much that I sure as hell don't see a line any more.  Most issues are constantly debated in terms of the Bible, whether its abortion ("life is sacred and granted ...</description>
		<link>http://www.tequilafish.com/2007/12/18/immigration-the-bible-leviticus-comes-back-to-haunt-conservatives/</link>
			</item>
	<item>
		<title>mod_rewrite &#038; PHP: How to match urlencoded plus sign (+ = %2B)</title>
		<description>I ran into trouble when trying to pass a urlencode()'ed plus sign into a web address being processed by mod_rewrite.


$url = 'http://www.server.com/browsealpha/name+has+plus+in+it/';
$url = urlencode($url); // http://www.server.com/browsealpha/name%2Bhas%2Bplus%2Bin%2Bit/


This $url variable gets echo()'d as a link in a page, so once it's clicked and loaded in the browser, I then needed mod_rewrite to ...</description>
		<link>http://www.tequilafish.com/2007/12/06/mod_rewrite-php-how-to-match-urlencoded-plus-sign/</link>
			</item>
	<item>
		<title>jQuery: How to set one &#60;select&#62; element to the value of another (using onchange equivalent)</title>
		<description>Say you have an HTML &#60;select&#62; form element and you want to set another &#60;select&#62; element equal to the first one when it changes.  Here's an easy way to do so with jQuery:


$('#id_of_select1').change(function() {
&#160;&#160;&#160;&#160;var select1_value = $(this).val();
&#160;&#160;&#160;&#160;$('#id_of_select2').val(select1_value);
});


----------------
Now playing: Drexciya - Astronomical Guidepost
via FoxyTunes
 </description>
		<link>http://www.tequilafish.com/2007/12/04/jquery-how-to-set-one-select-element-to-the-value-of-another-using-onchange-equivalent/</link>
			</item>
	<item>
		<title>jQuery: How to get the ID of your current object.</title>
		<description>Say you want to know the ID of your current jQuery object.  You can achieve this easily using jQuery's attr() method:


var current_id = $(this).attr('id');


This will only work provided that you have a valid jQuery object $(this) that you are working with, eg:


$(document).ready(function() {
&#160;&#160;$('input.text').focus(function() {
&#160;&#160;&#160;&#160;$('input.text').removeClass('onFocus'); /*  remove focus state ...</description>
		<link>http://www.tequilafish.com/2007/12/04/jquery-how-to-get-the-id-of-your-current-object/</link>
			</item>
</channel>
</rss>
