<?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>Dossy&#039;s Blog&#187; Open Source</title>
	<atom:link href="http://dossy.org/category/open-source/feed/" rel="self" type="application/rss+xml" />
	<link>http://dossy.org</link>
	<description>Everything that comes out of Dossy, from the strange to the banal.</description>
	<lastBuildDate>Wed, 18 Apr 2012 22:10:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>MySQL Geo Distance Code and Samples</title>
		<link>http://dossy.org/2011/09/mysql-geo-distance-code-and-samples/</link>
		<comments>http://dossy.org/2011/09/mysql-geo-distance-code-and-samples/#comments</comments>
		<pubDate>Fri, 23 Sep 2011 02:27:04 +0000</pubDate>
		<dc:creator>Dossy Shiobara</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://dossy.org/?p=1244</guid>
		<description><![CDATA[Over the years, I&#8217;ve implemented and re-implemented the haversine formula whenever I&#8217;ve needed to compute great-circle distances, which is pretty common when you&#8217;re doing geospatial proximity searches, e.g., &#8220;What&#8217;s near me?&#8221; or &#8220;How far are these two locations from each other?&#8221; For an implementation of the formula in MySQL, Alexander Rubin&#8217;s presentation is quite useful, [...]
Related posts:<ol>
<li><a href='http://dossy.org/2009/03/aolserver-in-googles-summer-of-code-2009/' rel='bookmark' title='AOLserver in Google&#8217;s Summer of Code 2009'>AOLserver in Google&#8217;s Summer of Code 2009</a></li>
<li><a href='http://dossy.org/2010/07/using-mysql-meta-data-effectively-at-odtug-kaleidoscope-2010/' rel='bookmark' title='Using MySQL Meta Data Effectively at ODTUG Kaleidoscope 2010'>Using MySQL Meta Data Effectively at ODTUG Kaleidoscope 2010</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Over the years, I&#8217;ve implemented and re-implemented the <a href="http://en.wikipedia.org/wiki/Haversine_formula">haversine formula</a> whenever I&#8217;ve needed to compute great-circle distances, which is pretty common when you&#8217;re doing geospatial proximity searches, e.g., &#8220;What&#8217;s near me?&#8221; or &#8220;How far are these two locations from each other?&#8221;</p>
<p>For an implementation of the formula in MySQL, <a href="http://www.arubin.org/files/geo_search.pdf">Alexander Rubin&#8217;s presentation</a> is quite useful, and is what I&#8217;ve based the following code on this time around.</p>
<p>Hopefully, rather than re-implementing this <i>yet again</i> the next time I need it, I&#8217;ll find my own blog entry on it and just reuse this code.  I keep forgetting where I&#8217;ve stashed the most recent copy, which is why I keep ending up re-implementing this every time I&#8217;ve needed it.</p>
<p>Here&#8217;s the code, tested on MySQL 5.1.41:</p>
<blockquote style="padding-top:0.3em; padding-bottom:0.3em; padding-left:0.5em; margin-left:1.5em; border-left:#666 3px solid;"><pre>
DELIMITER $$

DROP FUNCTION IF EXISTS geodist $$
CREATE FUNCTION geodist (
  src_lat DECIMAL(9,6), src_lon DECIMAL(9,6),
  dst_lat DECIMAL(9,6), dst_lon DECIMAL(9,6)
) RETURNS DECIMAL(6,2) DETERMINISTIC
BEGIN
  SET @dist := 3956 * 2 * ASIN(SQRT(
      POWER(SIN((src_lat - ABS(dst_lat)) * PI()/180 / 2), 2) +
      COS(src_lat * PI()/180) *
      COS(ABS(dst_lat) * PI()/180) *
      POWER(SIN((src_lon - dst_lon) * PI()/180 / 2), 2)
    ));
  RETURN @dist;
END $$

DROP FUNCTION IF EXISTS geodist_pt $$
CREATE FUNCTION geodist_pt (src POINT, dst POINT)
RETURNS DECIMAL(6,2) DETERMINISTIC
BEGIN
  RETURN geodist(Y(src), X(src), Y(dst), X(dst));
END $$

DROP PROCEDURE IF EXISTS geobox $$
CREATE PROCEDURE geobox (
  IN src_lat DECIMAL(9,6), IN src_lon DECIMAL(9,6), IN dist DECIMAL(6,2),
  OUT lat_top DECIMAL(9,6), OUT lon_lft DECIMAL(9,6),
  OUT lat_bot DECIMAL(9,6), OUT lon_rgt DECIMAL(9,6)
) DETERMINISTIC
BEGIN
  /*
   * src_lat, src_lon -> center point of bounding box
   * dist -> distance from center in miles
   * lat_top, lon_lft -> top left corner of bounding box
   * lat_bot, lon_rgt -> bottom right corner of bounding box
   */
  SET lat_top := src_lat - (dist / 69);
  SET lon_lft := src_lon - (dist / ABS(COS(RADIANS(src_lat)) * 69));
  SET lat_bot := src_lat + (dist / 69);
  SET lon_rgt := src_lon + (dist / ABS(COS(RADIANS(src_lat)) * 69));
END $$

DROP PROCEDURE IF EXISTS geobox_pt $$
CREATE PROCEDURE geobox_pt (
  IN pt POINT, IN dist DECIMAL(6,2),
  OUT top_lft POINT, OUT bot_rgt POINT
) DETERMINISTIC
BEGIN
  /*
   * pt -> center point of bounding box
   * dist -> distance from center in miles
   * top_lft -> top left corner of bounding box
   * bot_rgt -> bottom right corner of bounding box
   */
  CALL geobox(Y(pt), X(pt), dist, @lat_top, @lon_lft, @lat_bot, @lon_rgt);
  SET top_lft := POINT(@lon_lft, @lat_top);
  SET bot_rgt := POINT(@lon_rgt, @lat_bot);
END $$

DROP PROCEDURE IF EXISTS geobox_pt_bbox $$
CREATE PROCEDURE geobox_pt_bbox (
  IN pt POINT, IN dist DECIMAL(6,2), OUT bbox POLYGON
) DETERMINISTIC
BEGIN
  /*
   * pt -> center point of bounding box
   * dist -> distance from center in miles
   * bbox -> bounding box, dist miles from pt
   */
  CALL geobox_pt(pt, dist, @top_lft, @bot_rgt);
  SET bbox := Envelope(LineString(@top_lft, @bot_rgt));
END $$

DELIMITER ;
</pre>
</blockquote>
<p>And, here&#8217;s examples on how to use the above function and procedures:</p>
<blockquote style="padding-top:0.3em; padding-bottom:0.3em; padding-left:0.5em; margin-left:1.5em; border-left:#666 3px solid;"><pre>
SELECT @src := pt FROM exp_geo
WHERE postal_code = '07405' AND city = 'Butler';

CALL GEOBOX_PT(@src, 10.0, @top_lft, @bot_rgt);
SELECT Y(@top_lft) AS lat_top, X(@top_lft) AS lon_lft,
       Y(@bot_rgt) AS lat_bot, X(@bot_rgt) AS lon_rgt;

CALL GEOBOX_PT_BBOX(@src, 10.0, @bbox);
SELECT AsWKT(@bbox);

-- Assuming INDEX on (lat, lon) and SPATIAL INDEX on (pt) ...

-- Fast:
SELECT g.postal_code, g.city, g.state,
       GEODIST(Y(@src), X(@src), lat, lon) AS dist
FROM exp_geo g
WHERE lat BETWEEN Y(@top_lft) AND Y(@bot_rgt)
AND lon BETWEEN X(@top_lft) AND X(@bot_rgt)
HAVING dist &lt; 5.0
ORDER BY dist;

-- Also fast:
SELECT g.postal_code, g.city, g.state, GEODIST_PT(@src, g.pt) AS dist
FROM exp_geo g
WHERE lat BETWEEN Y(@top_lft) AND Y(@bot_rgt)
AND lon BETWEEN X(@top_lft) AND X(@bot_rgt)
HAVING dist &lt; 5.0
ORDER BY dist;

-- Slow:
SELECT g.postal_code, g.city, g.state, GEODIST_PT(@src, g.pt) AS dist
FROM exp_geo g
WHERE Y(pt) BETWEEN Y(@top_lft) AND Y(@bot_rgt)
AND X(pt) BETWEEN X(@top_lft) AND X(@bot_rgt)
HAVING dist &lt; 5.0
ORDER BY dist;

-- Also slow:
SELECT g.postal_code, g.city, g.state, GEODIST_PT(@src, g.pt) AS dist
FROM exp_geo g
WHERE MBRContains(@bbox, pt) = 1
HAVING dist &lt; 5.0
ORDER BY dist;
</pre>
</blockquote>
<p>Normally, I try to explain the stuff I post, but this time I&#8217;m doing it for somewhat selfish reasons &#8212; so I don&#8217;t lose this work yet again.  I&#8217;m just throwing this up here so Google will index it, so I can find it the next time I need it.</p>
<p>I suppose if you read this and have questions, please ask them in the comments below.  I&#8217;ll do my best to answer, if I can.</p>
<p>Related posts:<ol>
<li><a href='http://dossy.org/2009/03/aolserver-in-googles-summer-of-code-2009/' rel='bookmark' title='AOLserver in Google&#8217;s Summer of Code 2009'>AOLserver in Google&#8217;s Summer of Code 2009</a></li>
<li><a href='http://dossy.org/2010/07/using-mysql-meta-data-effectively-at-odtug-kaleidoscope-2010/' rel='bookmark' title='Using MySQL Meta Data Effectively at ODTUG Kaleidoscope 2010'>Using MySQL Meta Data Effectively at ODTUG Kaleidoscope 2010</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://dossy.org/2011/09/mysql-geo-distance-code-and-samples/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Android USB tethering on Mac OS X</title>
		<link>http://dossy.org/2011/04/android-usb-tethering-on-mac-os-x/</link>
		<comments>http://dossy.org/2011/04/android-usb-tethering-on-mac-os-x/#comments</comments>
		<pubDate>Thu, 07 Apr 2011 15:53:57 +0000</pubDate>
		<dc:creator>Dossy Shiobara</dc:creator>
				<category><![CDATA[Apple]]></category>
		<category><![CDATA[Geeking out]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://dossy.org/?p=1150</guid>
		<description><![CDATA[If you&#8217;ve got an Android-based phone, and want to do simple USB-based tethering on your Mac, you will find this guide useful. For reference, I performed this with the following equipment: Samsung Captivate on at&#38;t running custom Cognition 4.1.1 ROM. MacOS X 10.6.6 The standard disclaimers apply here: follow these instructions at your own risk. [...]
Related posts:<ol>
<li><a href='http://dossy.org/2008/02/adding-an-unsubscribe-button-to-google-reader-using-greasemonkey/' rel='bookmark' title='Adding an &#8220;Unsubscribe&#8221; button to Google Reader using Greasemonkey'>Adding an &#8220;Unsubscribe&#8221; button to Google Reader using Greasemonkey</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve got an Android-based phone, and want to do simple USB-based tethering on your Mac, you will find this guide useful.  For reference, I performed this with the following equipment:</p>
<ul>
<li>Samsung Captivate on at&amp;t running custom Cognition 4.1.1 ROM.</li>
<li>MacOS X 10.6.6</li>
</ul>
<p>The standard disclaimers apply here: follow these instructions at your own risk. This may void your warranty. Discontinue use if a rash develops.</p>
<h2>Getting started: Preparing Android</h2>
<p>All we need to do on Android is turn on &#8220;USB debugging&#8221; &#8211; do NOT fiddle with any of the &#8220;USB tethering&#8221; options or anything else.  So, go into Settings &gt; Applications &gt; Development, and check the box next to &#8220;USB debugging.&#8221;</p>
<div style="width:512px; margin-left:auto; margin-right:auto;"><img src="http://dossy.org/uploads/2011/04/android-screenshots.png" alt="Android screenshots" border="0" width="512" height="352" /></div>
<p>After turning on &#8220;USB debugging&#8221; connect the device to your Mac using the USB cable.</p>
<h2>Next, configure the Mac</h2>
<p>After connecting the USB cable, your Mac should pop up a window saying that a device &#8220;SAMSUNG_Android&#8221; needs to be configured, like this:</p>
<div style="width:448px; margin-left:auto; margin-right:auto;"><img src="http://dossy.org/uploads/2011/04/mac-screenshot.png" alt="Mac screenshot" border="0" width="448" height="179" /></div>
<p>This is a good sign.  Click the &#8220;Network Preferences&#8230;&#8221; button, and find that device in your System Preferences&#8217;s &#8220;Network&#8221; section, which should look something like this:</p>
<div style="width:400px; margin-left:auto; margin-right:auto;"><img src="http://dossy.org/uploads/2011/04/mac-screenshot-1.png" alt="Mac screenshot 1" border="0" width="400" height="349" /></div>
<p>The first thing to do is enter the values for this screen.  Use the following settings:</p>
<div style="width:463px; margin-left:auto; margin-right:auto;"><img src="http://dossy.org/uploads/2011/04/mac-screenshot-2.png" alt="Mac screenshot 2" border="0" width="463" height="269" /></div>
<ul>
<li>Telephone Number: <tt><b>*99#</b></tt></li>
<li>Account Name: <tt><b>wap@cingulargprs.com</b></tt></li>
<li>Password: <tt><b>cingular1</b></tt></li>
</ul>
<p>Next, click on the &#8220;Advanced&#8230;&#8221; button towards the bottom right of the window.  That should bring you to a screen that looks like this:</p>
<div style="width:400px; margin-left:auto; margin-right:auto;"><img src="http://dossy.org/uploads/2011/04/mac-screenshot-3.png" alt="Mac screenshot 3" border="0" width="400" height="313" /></div>
<p>First, click on &#8220;Generic&#8221; and select &#8220;Samsung&#8221; for the vendor.  Next, click on &#8220;Dialup&#8221; and select &#8220;GPRS (GSM/3G)&#8221; for the model.  Enter in &#8220;wap.cingular&#8221; for the APN.  Leave the CID as &#8220;1&#8243; which is the default.  When everything is done, the window should now look like this:</p>
<div style="width:498px; margin-left:auto; margin-right:auto;"><img src="http://dossy.org/uploads/2011/04/mac-screenshot-4.png" alt="Mac screenshot 4" border="0" width="498" height="247" /></div>
<p>Once that&#8217;s done, click &#8220;OK&#8221; which should bring you back to the previous screen.  Next, click the &#8220;Apply&#8221; button to save all these settings.</p>
<h2>Lets try connecting</h2>
<p>At this point, you&#8217;re ready to try tethering!  Go ahead and click on that &#8220;Connect&#8221; button.  You should now see something like this:</p>
<div style="width:423px; margin-left:auto; margin-right:auto;"><img src="http://dossy.org/uploads/2011/04/mac-screenshot-5.png" alt="Mac screenshot 5" border="0" width="423" height="260" /></div>
<p>If everything goes well, after 5-10 seconds, it should change to something that looks like this:</p>
<div style="width:449px; margin-left:auto; margin-right:auto;"><img src="http://dossy.org/uploads/2011/04/mac-screenshot-6.png" alt="Mac screenshot 6" border="0" width="449" height="272" /></div>
<h2>That&#8217;s it, now you&#8217;re tethered</h2>
<p>Not terribly painful, no goofy software installation needed and hoops to jump through.  And, here&#8217;s a speedtest for folks who are curious:</p>
<div style="width:300px; margin-left:auto; margin-right:auto;"><img src="http://dossy.org/uploads/2011/04/speedtest.png" alt="Speedtest" border="0" width="300" height="135" /></div>
<p>3.4 Mbit/s down, and 330 Kbit/s up on a 400ms ping isn&#8217;t fantastic, but it&#8217;s more than adequate for getting work done while out and about.</p>
<p>I hope you&#8217;ve found this guide useful and are happily tethered now.  If you have any questions or comments, feel free to share them in the comments below!</p>
<p>Related posts:<ol>
<li><a href='http://dossy.org/2008/02/adding-an-unsubscribe-button-to-google-reader-using-greasemonkey/' rel='bookmark' title='Adding an &#8220;Unsubscribe&#8221; button to Google Reader using Greasemonkey'>Adding an &#8220;Unsubscribe&#8221; button to Google Reader using Greasemonkey</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://dossy.org/2011/04/android-usb-tethering-on-mac-os-x/feed/</wfw:commentRss>
		<slash:comments>43</slash:comments>
		</item>
		<item>
		<title>Annoying change in MacOS X 10.5+ Samba clients</title>
		<link>http://dossy.org/2010/07/annoying-change-in-macos-x-10-5-samba-clients/</link>
		<comments>http://dossy.org/2010/07/annoying-change-in-macos-x-10-5-samba-clients/#comments</comments>
		<pubDate>Fri, 16 Jul 2010 16:17:29 +0000</pubDate>
		<dc:creator>Dossy Shiobara</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://dossy.org/?p=1037</guid>
		<description><![CDATA[So, my friend Jason asked me: Why are my MacOS X 10.5+ Samba clients ignoring the &#8220;force create mode&#8221; and &#8220;force directory mode&#8221; settings for the share on my Samba server? He was trying to setgid the directory and force files and directories to be group writable (i.e., &#8220;force create mode = 02770&#8221; and &#8220;force [...]
Related posts:<ol>
<li><a href='http://dossy.org/2008/09/migrating-from-windows-pidgin-to-macos-x-adium/' rel='bookmark' title='Migrating from Windows Pidgin to MacOS X Adium'>Migrating from Windows Pidgin to MacOS X Adium</a></li>
<li><a href='http://dossy.org/2009/10/getting-activestates-teacup-working-on-macos-x/' rel='bookmark' title='Getting ActiveState&#8217;s &#8220;teacup&#8221; working on MacOS X'>Getting ActiveState&#8217;s &#8220;teacup&#8221; working on MacOS X</a></li>
<li><a href='http://dossy.org/2009/11/using-a-ciscolinksys-wusb600n-on-macos-x-10-6/' rel='bookmark' title='Using a Cisco/Linksys WUSB600N on MacOS X 10.6'>Using a Cisco/Linksys WUSB600N on MacOS X 10.6</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>So, my friend <a href="http://jasonnixon.net/">Jason</a> asked me:</p>
<p><em>Why are my MacOS X 10.5+ Samba clients ignoring the &#8220;<tt>force create mode</tt>&#8221; and &#8220;<tt>force directory mode</tt>&#8221; settings for the share on my Samba server?</em></p>
<p>He was trying to setgid the directory and force files and directories to be group writable (i.e., &#8220;<code>force create mode = 02770</code>&#8221; and &#8220;<code>force directory mode = 02770</code>&#8220;), so that different users creating files and directories on the same share volume that belong to the same group can all write to to them.  However, his MacOS X 10.5+ clients were able to ignore these settings somehow.</p>
<p>Turns out, this is a known issue:</p>
<ul>
<li><a href="http://www.macosxhints.com/article.php?story=20100405023255445">macosxhints.com</a>: 10.6: Fix Samba write access from OS X to Linux servers</li>
<li><a href="http://lists.samba.org/archive/samba/2010-February/153786.html">lists.samba.org</a>: [Samba] &#8220;unix extensions = on&#8221; is incompatible with Mac OS X Finder</li>
<li><a href="http://discussions.apple.com/thread.jspa?messageID=7349655">discussions.apple.com</a>: Leopard and Samba Shares</li>
</ul>
<p>The summary is that as of MacOS X 10.5 Leopard, its Samba client uses CIFS UNIX extensions to manipulate permissions, which Samba servers currently don&#8217;t enforce restrictions specified by the older &#8220;mode&#8221; settings.  The work-around is to disable these CIFS UNIX extensions on the Samba server by putting &#8220;<code>unix extensions = off</code>&#8221; in the <code>[global]</code> section of your <code>smb.conf</code> file.</p>
<p>Related posts:<ol>
<li><a href='http://dossy.org/2008/09/migrating-from-windows-pidgin-to-macos-x-adium/' rel='bookmark' title='Migrating from Windows Pidgin to MacOS X Adium'>Migrating from Windows Pidgin to MacOS X Adium</a></li>
<li><a href='http://dossy.org/2009/10/getting-activestates-teacup-working-on-macos-x/' rel='bookmark' title='Getting ActiveState&#8217;s &#8220;teacup&#8221; working on MacOS X'>Getting ActiveState&#8217;s &#8220;teacup&#8221; working on MacOS X</a></li>
<li><a href='http://dossy.org/2009/11/using-a-ciscolinksys-wusb600n-on-macos-x-10-6/' rel='bookmark' title='Using a Cisco/Linksys WUSB600N on MacOS X 10.6'>Using a Cisco/Linksys WUSB600N on MacOS X 10.6</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://dossy.org/2010/07/annoying-change-in-macos-x-10-5-samba-clients/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Using MySQL Meta Data Effectively at ODTUG Kaleidoscope 2010</title>
		<link>http://dossy.org/2010/07/using-mysql-meta-data-effectively-at-odtug-kaleidoscope-2010/</link>
		<comments>http://dossy.org/2010/07/using-mysql-meta-data-effectively-at-odtug-kaleidoscope-2010/#comments</comments>
		<pubDate>Mon, 05 Jul 2010 18:11:44 +0000</pubDate>
		<dc:creator>Dossy Shiobara</dc:creator>
				<category><![CDATA[Geeking out]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://dossy.org/?p=1010</guid>
		<description><![CDATA[Since Oracle owns MySQL through its acquisition of Sun, more Oracle conferences are providing MySQL content. This past Oracle Development Tools User Group (ODTUG) Kaleidoscope 2010 conference from June 27 through July 1 had a whole dedicated track for MySQL. I was fortunate enough to have the opportunity to speak on MySQL metadata, titled &#8220;Using [...]
Related posts:<ol>
<li><a href='http://dossy.org/2006/02/storing-binary-data-in-mysql-with-aolserver/' rel='bookmark' title='Storing binary data in MySQL with AOLserver'>Storing binary data in MySQL with AOLserver</a></li>
<li><a href='http://dossy.org/2007/12/northern-nj-mysql-meetup-for-december-2007/' rel='bookmark' title='Northern NJ MySQL Meetup for December 2007'>Northern NJ MySQL Meetup for December 2007</a></li>
<li><a href='http://dossy.org/2007/10/a-simple-mysql-client-in-tcltk-using-mysqltcl/' rel='bookmark' title='A simple MySQL client in Tcl/Tk using mysqltcl'>A simple MySQL client in Tcl/Tk using mysqltcl</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Since <a href="http://www.oracle.com/us/corporate/press/018363">Oracle owns MySQL through its acquisition of Sun</a>, more Oracle conferences are providing MySQL content.  This past Oracle Development Tools User Group (ODTUG)  <a href="http://www.odtugkaleidoscope.com/">Kaleidoscope 2010</a> conference from June 27 through July 1 had a whole <a href="http://www.odtugkaleidoscope.com/MySQL.html">dedicated track for MySQL</a>.</p>
<div style="margin-left:20px; margin-right:180px; width:410px; padding:5px; border:2px solid #999;"><a href="http://dossy.org/uploads/2010/07/Dossy%20Shiobara%20-%20Slides%20-%20Using%20MySQL%20Meta%20Data%20Effectively.pdf"><img src="http://dossy.org/uploads/2010/07/slides-410x290.png" alt="Using MySQL Meta Data Effectively - title slide thumbnail" border="0" width="410" height="290" /></a></div>
<p>I was fortunate enough to have the opportunity to speak on MySQL metadata, titled &#8220;<a href="http://www.technicalconferencesolutions.com/pls/caat/caat_abstract_reports.display_presenter_abstract?conference_id=68&#038;presenter_id=378&#038;abstract_id=794">Using MySQL Meta Data Effectively</a>&#8220;.  Here&#8217;s the abstract:</p>
<blockquote style="padding-left: 0.5em; margin-left: 1.5em; border-left: #666 3px solid;"><p>This presentation discusses what MySQL meta data is available including the &#8216;mysql&#8217; meta schema, the INFORMATION_SCHEMA (I_S) tables first introduced in MySQL 5.0 and extended in MySQL 5.1, storage engine specific INFORMATION_SCHEMA tables, as well as techniques for writing your own INFORMATION_SCHEMA plug-ins. MySQL also provides a number of SHOW commands that provide easily formatted presentation of MySQL meta data. Dossy Shiobara will also discuss some of the limitations and performance implications of the INFORMATION_SCHEMA.</p></blockquote>
<div style="margin-left:auto; margin-right:auto; width:500px; padding:5px; border:2px solid #999;"><a href="http://dossy.org/uploads/2010/07/Dossy%20Shiobara%20-%20Paper%20-%20Using%20MySQL%20Meta%20Data%20Effectively.pdf"><img src="http://dossy.org/uploads/2010/07/paper-500x350.png" alt="Paper first page thumbnail" border="0" width="500" height="350" /></a></div>
<p>You can download the materials from my session here:</p>
<ul>
<li>Paper: <a href="http://dossy.org/uploads/2010/07/Dossy%20Shiobara%20-%20Paper%20-%20Using%20MySQL%20Meta%20Data%20Effectively.pdf">PDF</a></li>
<li>Slides: <a href="http://dossy.org/uploads/2010/07/Dossy%20Shiobara%20-%20Slides%20-%20Using%20MySQL%20Meta%20Data%20Effectively.pdf">PDF</a></li>
</ul>
<p>Related posts:<ol>
<li><a href='http://dossy.org/2006/02/storing-binary-data-in-mysql-with-aolserver/' rel='bookmark' title='Storing binary data in MySQL with AOLserver'>Storing binary data in MySQL with AOLserver</a></li>
<li><a href='http://dossy.org/2007/12/northern-nj-mysql-meetup-for-december-2007/' rel='bookmark' title='Northern NJ MySQL Meetup for December 2007'>Northern NJ MySQL Meetup for December 2007</a></li>
<li><a href='http://dossy.org/2007/10/a-simple-mysql-client-in-tcltk-using-mysqltcl/' rel='bookmark' title='A simple MySQL client in Tcl/Tk using mysqltcl'>A simple MySQL client in Tcl/Tk using mysqltcl</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://dossy.org/2010/07/using-mysql-meta-data-effectively-at-odtug-kaleidoscope-2010/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Looking for WordPress, Drupal or Joomla help?</title>
		<link>http://dossy.org/2010/06/looking-for-wordpress-drupal-or-joomla-help/</link>
		<comments>http://dossy.org/2010/06/looking-for-wordpress-drupal-or-joomla-help/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 18:02:05 +0000</pubDate>
		<dc:creator>Dossy Shiobara</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://dossy.org/?p=998</guid>
		<description><![CDATA[Are you looking for help with your WordPress, Drupal or Joomla-based website? Having trouble customizing your theme? Need help installing or configuring a plugin? Would you like to have a custom plugin written to do something you need? I&#8217;m once again looking for work, and in the meantime, I&#8217;d be happy to lend a hand [...]
Related posts:<ol>
<li><a href='http://dossy.org/2011/08/cross-posting-from-wordpress-to-livejournal-woes/' rel='bookmark' title='Cross-posting from WordPress to LiveJournal woes'>Cross-posting from WordPress to LiveJournal woes</a></li>
<li><a href='http://dossy.org/2008/02/debian-package-of-character-counting-plugin-for-pidgin/' rel='bookmark' title='Debian package of character counting plugin for Pidgin'>Debian package of character counting plugin for Pidgin</a></li>
<li><a href='http://dossy.org/2007/10/character-counting-plugin-for-pidgin/' rel='bookmark' title='Character counting plugin for Pidgin'>Character counting plugin for Pidgin</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<div style="float: right;"><img src="http://dossy.org/uploads/2010/06/iStock_000009820603_200x180.jpg" alt="" border="0" width="200" height="180" /></div>
<p>Are you looking for help with your WordPress, Drupal or Joomla-based website?  Having trouble customizing your theme?  Need help installing or configuring a plugin?  Would you like to have a custom plugin written to do something you need?</p>
<p>I&#8217;m once again looking for work, and in the meantime, I&#8217;d be happy to lend a hand to folks who need it.  <a href="mailto:dossy@panoptic.com">Let me know</a> if you&#8217;ve got something you want me to take a look at for you, and we&#8217;ll work something out.</p>
<p>Related posts:<ol>
<li><a href='http://dossy.org/2011/08/cross-posting-from-wordpress-to-livejournal-woes/' rel='bookmark' title='Cross-posting from WordPress to LiveJournal woes'>Cross-posting from WordPress to LiveJournal woes</a></li>
<li><a href='http://dossy.org/2008/02/debian-package-of-character-counting-plugin-for-pidgin/' rel='bookmark' title='Debian package of character counting plugin for Pidgin'>Debian package of character counting plugin for Pidgin</a></li>
<li><a href='http://dossy.org/2007/10/character-counting-plugin-for-pidgin/' rel='bookmark' title='Character counting plugin for Pidgin'>Character counting plugin for Pidgin</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://dossy.org/2010/06/looking-for-wordpress-drupal-or-joomla-help/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ah, brain, you cruel mistress</title>
		<link>http://dossy.org/2010/05/ah-brain-you-cruel-mistress/</link>
		<comments>http://dossy.org/2010/05/ah-brain-you-cruel-mistress/#comments</comments>
		<pubDate>Sat, 15 May 2010 21:17:33 +0000</pubDate>
		<dc:creator>Dossy Shiobara</dc:creator>
				<category><![CDATA[Dossy, Dossy and more Dossy!]]></category>
		<category><![CDATA[Geeking out]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://dossy.org/?p=978</guid>
		<description><![CDATA[So, I had grandiose plans of trying to post updates to the blog at least three times a week, every week, for the month of May. Uh, the last update before this one was April 28th. Basically, I blogged more the last week of April than I have the whole month of May, so far. [...]
Related posts:<ol>
<li><a href='http://dossy.org/2006/07/breaking-the-brain-crack-habit/' rel='bookmark' title='Breaking the brain crack habit'>Breaking the brain crack habit</a></li>
<li><a href='http://dossy.org/2007/05/braindump-or-get-off-the-pot/' rel='bookmark' title='(Brain)dump or get off the pot'>(Brain)dump or get off the pot</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>So, I had grandiose plans of trying to post updates to the blog at least three times a week, every week, for the month of May.  Uh, the last update before this one was April 28th.  Basically, I blogged more the last week of April than I have the whole month of May, so far.  What the heck happened?</p>
<p>I just don&#8217;t get it.  It&#8217;s like my brain is sabotaging my plans!  Why is it so hard for me to write things down?  I have the same problem with writing documentation at work: I tend to think I write very well, but I just can&#8217;t commit words to paper, or in this case, an editing buffer.  Tons of words, sentences, ideas, etc., flow through my brain at an incredible pace, but nothing wants to come out.  I sit with my hands resting on the keyboard, but every time I move my fingers to type something, my brain stops me and I feel like what would have come out wasn&#8217;t the right thing to say.</p>
<div style="text-align: center;">***</div>
<p>Got a bit of the man-cave (the garage) cleaned up with the help of my Dad, and set up the <a href="http://en.wikipedia.org/wiki/Bench_grinder">bench grinder</a> that my wife got me for Father&#8217;s day last year.  Now I can sharpen all sorts of things, and buff and polish others, with ease &#8212; sure, the Dremel &#8220;does the job&#8221; but this just makes things so much easier and better.  The table saw and miter saw are also stored in a better place that makes them easier to take out and use, and my Dad ran a new outlet to the post between the two cave openings (garage doors).  All very useful things for DIY projects.</p>
<div style="text-align: center;">***</div>
<p>On May 7 and 8, I attended <a href="http://picconf.org/">PICC&#8217;10</a> in New Brunswick, NJ.  It was a really great, fun, two-day conference for IT professionals, primarily focused at system administrators.</p>
<p>The next conference I&#8217;m planning to attend is <a href="http://www.odtugkaleidoscope.com/">ODTUG Kaleidoscope 2010</a>, June 27 to July 1, down in Washington, DC.  I&#8217;ll probably only be there for two of the days.  If you&#8217;re going to be there and want to meet up, let me know!</p>
<div style="text-align: center;">***</div>
<p>I set up a VMware guest with <a href="http://wiki.centos.org/Manuals/ReleaseNotes/CentOS5.4">CentOS 5.4</a> x86_64 with <a href="https://fedoraproject.org/wiki/EPEL">EPEL</a> 5, as my development sandbox for work, since that&#8217;s what they deploy on.  It&#8217;s actually quite nice, not nearly as bad as I remember Redhat-based distributions being in the past.</p>
<div style="text-align: center;">***</div>
<p>I&#8217;ve set up a copy of <a href="http://www.crowdfusion.com/">CrowdFusion</a> on my laptop, and plan to start working on a few plugins.  I&#8217;m tired of dealing with crappy <a href="http://en.wikipedia.org/wiki/Content_management_system">CMS</a>&#8216;es like Drupal or Joomla! but CrowdFusion is still quite &#8220;beta&#8221; in some ways.  I figure if I can contribute here and there, the sooner I could propose it seriously in RFP responses and the happier I&#8217;d be.  I&#8217;ll say this: as &#8220;beta&#8221; as it might be, CrowdFusion 2.0 is <em>already</em> better than Drupal or Joomla! at its core.  Once a suitable collection of plugins are developed and tested, and a theme gallery is available and populated with attractive themes, there&#8217;ll be no reason to use anything else.</p>
<p>Related posts:<ol>
<li><a href='http://dossy.org/2006/07/breaking-the-brain-crack-habit/' rel='bookmark' title='Breaking the brain crack habit'>Breaking the brain crack habit</a></li>
<li><a href='http://dossy.org/2007/05/braindump-or-get-off-the-pot/' rel='bookmark' title='(Brain)dump or get off the pot'>(Brain)dump or get off the pot</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://dossy.org/2010/05/ah-brain-you-cruel-mistress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Getting ActiveState&#8217;s &#8220;teacup&#8221; working on MacOS X</title>
		<link>http://dossy.org/2009/10/getting-activestates-teacup-working-on-macos-x/</link>
		<comments>http://dossy.org/2009/10/getting-activestates-teacup-working-on-macos-x/#comments</comments>
		<pubDate>Wed, 21 Oct 2009 19:31:16 +0000</pubDate>
		<dc:creator>Dossy Shiobara</dc:creator>
				<category><![CDATA[Geeking out]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Tcl]]></category>

		<guid isPermaLink="false">http://dossy.org/?p=842</guid>
		<description><![CDATA[ActiveState has created a Tcl Extension Archive tool called teacup which simplifies the installation of binary extensions to Tcl. It&#8217;s included with ActiveTcl, but if you&#8217;re using Tcl from MacPorts and want to use teacup, it&#8217;s fairly easy: 1. Download teacup for MacOS X The teacup binary can be downloaded from this location: http://teapot.activestate.com/entity/name/teacup/index Here [...]
Related posts:<ol>
<li><a href='http://dossy.org/2005/08/activestate-adds-expect-for-windows-to-activetcl/' rel='bookmark' title='ActiveState Adds Expect for Windows to ActiveTcl'>ActiveState Adds Expect for Windows to ActiveTcl</a></li>
<li><a href='http://dossy.org/2008/10/tivo-hacking-getting-a-linksys-wusb54g-working/' rel='bookmark' title='TiVo Hacking: Getting a Linksys WUSB54G working'>TiVo Hacking: Getting a Linksys WUSB54G working</a></li>
<li><a href='http://dossy.org/2009/06/getting-adaptec-afacli-working-on-ubuntu/' rel='bookmark' title='Getting Adaptec afacli working on Ubuntu'>Getting Adaptec afacli working on Ubuntu</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>ActiveState has created a <a href="http://wiki.tcl.tk/17340">Tcl Extension Archive</a> tool called <a href="http://wiki.tcl.tk/17305">teacup</a> which simplifies the installation of binary extensions to Tcl.  It&#8217;s included with ActiveTcl, but if you&#8217;re using Tcl from <a href="http://www.macports.org/">MacPorts</a> and want to use teacup, it&#8217;s fairly easy:</p>
<h3>1. Download teacup for MacOS X</h3>
<p>The teacup binary can be downloaded from this location:</p>
<ul>
<li><a href="http://teapot.activestate.com/entity/name/teacup/index">http://teapot.activestate.com/entity/name/teacup/index</a></li>
</ul>
<p>Here is a <a href="http://teapot.activestate.com/application/name/teacup/ver/8.5.7.2.291420/arch/macosx-universal/file.exe">direct link to the latest teacup binary</a>.  The file is named <tt>file.exe</tt> &#8212; simply rename that to <tt>teacup</tt> and put it in <tt>/usr/local/bin</tt> or another convenient place in your <tt>$PATH</tt>.</p>
<h3>2. Create the installation repository</h3>
<p>You will need an installation repository where teacup can store its data locally.  The default location is <tt>/Library/Tcl/teapot</tt> and you can create it like this:</p>
<blockquote>
<pre><code>$ <b>sudo teacup create</b>
Repository @ /Library/Tcl/teapot
    Created</code></pre>
</blockquote>
<h3>3. Patch MacPorts tclsh to handle teapot repositories</h3>
<blockquote>
<pre><code>$ <b>sudo teacup setup /opt/local/bin/tclsh</b>
Looking at tcl shell /opt/local/bin/tclsh ...
  Already able to handle Tcl Modules.
  Already has the platform packages.
  Patching: Adding code to handle teapot repositories ...
Done</code></pre>
</blockquote>
<h3>4. Link teacup to MacPorts tclsh</h3>
<blockquote>
<pre><code>$ <b>sudo teacup link make /Library/Tcl/teapot /opt/local/bin/tclsh</b>
Ok</code></pre>
</blockquote>
<p>That&#8217;s it!  You&#8217;re done.  You should now be able to list available packages within TEA using <tt>teacup list</tt> and install them using <tt>sudo teacup install "packagename"</tt>.</p>
<p>I&#8217;ve tested this on MacOS X 10.6.1 Snow Leopard with Tcl 8.5.7 from MacPorts.</p>
<p>Tags: <a href="http://technorati.com/tag/HOWTO" rel="tag">HOWTO</a>, <a href="http://technorati.com/tag/Tcl" rel="tag">Tcl</a>, <a href="http://technorati.com/tag/ActiveState" rel="tag">ActiveState</a>, <a href="http://technorati.com/tag/TEA" rel="tag">TEA</a>, <a href="http://technorati.com/tag/teacup" rel="tag">teacup</a></p>
<p>Related posts:<ol>
<li><a href='http://dossy.org/2005/08/activestate-adds-expect-for-windows-to-activetcl/' rel='bookmark' title='ActiveState Adds Expect for Windows to ActiveTcl'>ActiveState Adds Expect for Windows to ActiveTcl</a></li>
<li><a href='http://dossy.org/2008/10/tivo-hacking-getting-a-linksys-wusb54g-working/' rel='bookmark' title='TiVo Hacking: Getting a Linksys WUSB54G working'>TiVo Hacking: Getting a Linksys WUSB54G working</a></li>
<li><a href='http://dossy.org/2009/06/getting-adaptec-afacli-working-on-ubuntu/' rel='bookmark' title='Getting Adaptec afacli working on Ubuntu'>Getting Adaptec afacli working on Ubuntu</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://dossy.org/2009/10/getting-activestates-teacup-working-on-macos-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>D. J. Bernstein is legendary</title>
		<link>http://dossy.org/2009/10/d-j-bernstein-is-legendary/</link>
		<comments>http://dossy.org/2009/10/d-j-bernstein-is-legendary/#comments</comments>
		<pubDate>Mon, 19 Oct 2009 14:53:40 +0000</pubDate>
		<dc:creator>Dossy Shiobara</dc:creator>
				<category><![CDATA[Geeking out]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://dossy.org/?p=833</guid>
		<description><![CDATA[I&#8217;ve been using djbdns and qmail for many years, specifically because after reviewing its code and comparing it to other possible alternatives, I objectively decided that these two pieces of software are superior in all aspects. Lots of people have cast aspersions on D. J. Bernstein and his software, usually with emotional and irrational claims. [...]
Related posts:<ol>
<li><a href='http://dossy.org/2007/10/deliciousdossy-links-since-october-8-2007-at-0900-am/' rel='bookmark' title='del.icio.us/dossy links since October  8, 2007 at 09:00 AM'>del.icio.us/dossy links since October  8, 2007 at 09:00 AM</a></li>
<li><a href='http://dossy.org/2007/12/deliciousdossy-links-since-november-26-2007-at-0900-am/' rel='bookmark' title='del.icio.us/dossy links since November 26, 2007 at 09:00 AM'>del.icio.us/dossy links since November 26, 2007 at 09:00 AM</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been using <a href="http://cr.yp.to/djbdns.html">djbdns</a> and <a href="http://www.qmail.org/">qmail</a> for many years, specifically because after reviewing its code and comparing it to other possible alternatives, I objectively decided that these two pieces of software are superior in all aspects.</p>
<p>Lots of people have cast aspersions on D. J. Bernstein and his software, usually with emotional and irrational claims.  Of course, most of these people can&#8217;t even read code well enough to understand what it does or how it does it.  However, when you encounter the opinions of actual programmers, we all tend to share a similar but different opinion.</p>
<p>Today, Aaron Swartz put this into words better than I could: <a href="http://www.aaronsw.com/weblog/djb">D. J. Bernstein is the greatest programmer in the history of the world</a>.  The money quote:</p>
<blockquote style="padding-left: 0.5em; margin-left: 1.5em; border-left: #666 3px solid;"><p>[...] djb’s programs do not work like most programs, for the simple reason that the way most programs work is wrong.</p>
</blockquote>
<p>Amen.</p>
<p>Tags: <a href="http://technorati.com/tag/D.%20J.%20Bernstein" rel="tag">D. J. Bernstein</a> (<a href="http://technorati.com/tag/djb" rel="tag">djb</a>), <a href="http://technorati.com/tag/djbdns" rel="tag">djbdns</a>, <a href="http://technorati.com/tag/qmail" rel="tag">qmail</a>, <a href="http://technorati.com/tag/Aaron%20Swartz" rel="tag">Aaron Swartz</a></p>
<p>Related posts:<ol>
<li><a href='http://dossy.org/2007/10/deliciousdossy-links-since-october-8-2007-at-0900-am/' rel='bookmark' title='del.icio.us/dossy links since October  8, 2007 at 09:00 AM'>del.icio.us/dossy links since October  8, 2007 at 09:00 AM</a></li>
<li><a href='http://dossy.org/2007/12/deliciousdossy-links-since-november-26-2007-at-0900-am/' rel='bookmark' title='del.icio.us/dossy links since November 26, 2007 at 09:00 AM'>del.icio.us/dossy links since November 26, 2007 at 09:00 AM</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://dossy.org/2009/10/d-j-bernstein-is-legendary/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disabling service updates on SA2 TiVo&#8217;s</title>
		<link>http://dossy.org/2009/06/disabling-service-updates-on-sa2-tivos/</link>
		<comments>http://dossy.org/2009/06/disabling-service-updates-on-sa2-tivos/#comments</comments>
		<pubDate>Thu, 25 Jun 2009 05:42:28 +0000</pubDate>
		<dc:creator>Dossy Shiobara</dc:creator>
				<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://dossy.org/?p=792</guid>
		<description><![CDATA[I needed to re-enable service updates on my SA2 TiVo tonight and I&#8217;d forgotten how to toggle it after having disabled them when I first hacked my TiVo, and had a tough time finding the information so I figure I&#8217;ll post it to my blog so I&#8217;ll be able to find it again. The key [...]
Related posts:<ol>
<li><a href='http://dossy.org/2011/08/blog-updates-now-via-mailchimp/' rel='bookmark' title='Blog updates, now via MailChimp'>Blog updates, now via MailChimp</a></li>
<li><a href='http://dossy.org/2006/11/pay-full-price-get-less-service-do-you-buy-high-and-sell-low-too/' rel='bookmark' title='Pay full price, get less service?  Do you buy high and sell low, too?'>Pay full price, get less service?  Do you buy high and sell low, too?</a></li>
<li><a href='http://dossy.org/2008/10/tivo-hacking-getting-a-linksys-wusb54g-working/' rel='bookmark' title='TiVo Hacking: Getting a Linksys WUSB54G working'>TiVo Hacking: Getting a Linksys WUSB54G working</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>I needed to re-enable service updates on my SA2 TiVo tonight and I&#8217;d forgotten how to toggle it after having disabled them when I first hacked my TiVo, and had a tough time finding the information so I figure I&#8217;ll post it to my blog so I&#8217;ll be able to find it again.</p>
<p>The key command is <tt>bootpage</tt> &#8211; use &#8220;<tt>bootpage -p /dev/hda</tt>&#8221; to see the current settings.  Then, use &#8220;<tt>bootpage -P "..." /dev/hda</tt>&#8221; to change them.  Specifically, change &#8220;upgradesoftware=false&#8221; to &#8220;upgradesoftware=true&#8221; or vice versa.</p>
<p>Tags: <a href="http://technorati.com/tag/TiVo" rel="tag">TiVo</a>, <a href="http://technorati.com/tag/hacks" rel="tag">hacks</a>, <a href="http://technorati.com/tag/reference" rel="tag">reference</a></p>
<p>Related posts:<ol>
<li><a href='http://dossy.org/2011/08/blog-updates-now-via-mailchimp/' rel='bookmark' title='Blog updates, now via MailChimp'>Blog updates, now via MailChimp</a></li>
<li><a href='http://dossy.org/2006/11/pay-full-price-get-less-service-do-you-buy-high-and-sell-low-too/' rel='bookmark' title='Pay full price, get less service?  Do you buy high and sell low, too?'>Pay full price, get less service?  Do you buy high and sell low, too?</a></li>
<li><a href='http://dossy.org/2008/10/tivo-hacking-getting-a-linksys-wusb54g-working/' rel='bookmark' title='TiVo Hacking: Getting a Linksys WUSB54G working'>TiVo Hacking: Getting a Linksys WUSB54G working</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://dossy.org/2009/06/disabling-service-updates-on-sa2-tivos/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Adaptec afacli working on Ubuntu</title>
		<link>http://dossy.org/2009/06/getting-adaptec-afacli-working-on-ubuntu/</link>
		<comments>http://dossy.org/2009/06/getting-adaptec-afacli-working-on-ubuntu/#comments</comments>
		<pubDate>Sat, 06 Jun 2009 19:26:25 +0000</pubDate>
		<dc:creator>Dossy Shiobara</dc:creator>
				<category><![CDATA[Geeking out]]></category>
		<category><![CDATA[Open Source]]></category>

		<guid isPermaLink="false">http://dossy.org/?p=788</guid>
		<description><![CDATA[In order to get afacli working on Ubuntu Hardy, I did these things: 1. Get afa-apps-snmp.2807420-A04.tar.gz from Dell. 2. Get libstdc++2.10-glibc2.2 from Debian afacli depends on libstdc++-libc6.2-2.so.3. Since I&#8217;m running Ubuntu x86_64, I put libstdc++-libc6.2-2.so.3 in /usr/lib32. Installing the rpm package under Ubuntu provides rpm2cpio which I used to extract afaapps-4.1-0.i386.rpm like this: $ rpm2cpio [...]
Related posts:<ol>
<li><a href='http://dossy.org/2008/05/marvell-syskonnect-yukon-2-drivers-not-usable-in-ubuntu-hardy/' rel='bookmark' title='Marvell SysKonnect Yukon 2 drivers not usable in Ubuntu Hardy'>Marvell SysKonnect Yukon 2 drivers not usable in Ubuntu Hardy</a></li>
<li><a href='http://dossy.org/2008/05/migrating-from-virtualbox-to-vmware/' rel='bookmark' title='Migrating from VirtualBox to VMware'>Migrating from VirtualBox to VMware</a></li>
<li><a href='http://dossy.org/2008/02/debian-package-of-character-counting-plugin-for-pidgin/' rel='bookmark' title='Debian package of character counting plugin for Pidgin'>Debian package of character counting plugin for Pidgin</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>In order to get <tt>afacli</tt> working on Ubuntu Hardy, I did these things:</p>
<p>1. Get <tt><a href="http://ftp.us.dell.com/scsi-raid/afa-apps-snmp.2807420-A04.tar.gz">afa-apps-snmp.2807420-A04.tar.gz</a></tt> from Dell.</p>
<p>2. Get <tt><a href="http://packages.debian.org/etch/libstdc++2.10-glibc2.2">libstdc++2.10-glibc2.2</a></tt> from Debian <tt>afacli</tt> depends on <tt>libstdc++-libc6.2-2.so.3</tt>.</p>
<p>Since I&#8217;m running Ubuntu x86_64, I put <tt>libstdc++-libc6.2-2.so.3</tt> in <tt>/usr/lib32</tt>.  Installing the <tt>rpm</tt> package under Ubuntu provides <tt>rpm2cpio</tt> which I used to extract <tt>afaapps-4.1-0.i386.rpm</tt> like this:</p>
<p><code>$ rpm2cpio afaapps-4.1-0.i386.rpm | (cd / &#038;&#038; cpio -iudvm)</code></p>
<p>That&#8217;s it.  You now have <tt>/usr/sbin/afacli</tt>.</p>
<p>Tags: <a href="http://technorati.com/tag/Linux" rel="tag">Linux</a>, <a href="http://technorati.com/tag/Ubuntu" rel="tag">Ubuntu</a>, <a href="http://technorati.com/tag/Adaptec" rel="tag">Adaptec</a>, <a href="http://technorati.com/tag/afacli" rel="tag">afacli</a></p>
<p>Related posts:<ol>
<li><a href='http://dossy.org/2008/05/marvell-syskonnect-yukon-2-drivers-not-usable-in-ubuntu-hardy/' rel='bookmark' title='Marvell SysKonnect Yukon 2 drivers not usable in Ubuntu Hardy'>Marvell SysKonnect Yukon 2 drivers not usable in Ubuntu Hardy</a></li>
<li><a href='http://dossy.org/2008/05/migrating-from-virtualbox-to-vmware/' rel='bookmark' title='Migrating from VirtualBox to VMware'>Migrating from VirtualBox to VMware</a></li>
<li><a href='http://dossy.org/2008/02/debian-package-of-character-counting-plugin-for-pidgin/' rel='bookmark' title='Debian package of character counting plugin for Pidgin'>Debian package of character counting plugin for Pidgin</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://dossy.org/2009/06/getting-adaptec-afacli-working-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using apc
Database Caching 4/77 queries in 0.457 seconds using apc
Object Caching 2685/2703 objects using apc

Served from: dossy.org @ 2012-05-24 05:43:14 -->
