<?xml version="1.0" encoding="iso-8859-1"?>

<rdf:RDF
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
  xmlns:dc="http://purl.org/dc/elements/1.1/"
  xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
  xmlns:admin="http://webns.net/mvcb/"
  xmlns:cc="http://web.resource.org/cc/"
  xmlns="http://purl.org/rss/1.0/">

<channel rdf:about="http://blog.erdener.org/">
<title>blah, and other stuff</title>
<link>http://blog.erdener.org/</link>
<description></description>
<dc:language>en-us</dc:language>
<dc:creator></dc:creator>
<dc:date>2009-03-18T11:17:08-06:00</dc:date>
<admin:generatorAgent rdf:resource="http://www.movabletype.org/?v=3.121" />


<items>
<rdf:Seq><rdf:li rdf:resource="http://blog.erdener.org/archives/001356.php" />
<rdf:li rdf:resource="http://blog.erdener.org/archives/001353.php" />
<rdf:li rdf:resource="http://blog.erdener.org/archives/001351.php" />
<rdf:li rdf:resource="http://blog.erdener.org/archives/001319.php" />
<rdf:li rdf:resource="http://blog.erdener.org/archives/001309.php" />
<rdf:li rdf:resource="http://blog.erdener.org/archives/001289.php" />
<rdf:li rdf:resource="http://blog.erdener.org/archives/001285.php" />
<rdf:li rdf:resource="http://blog.erdener.org/archives/001280.php" />
<rdf:li rdf:resource="http://blog.erdener.org/archives/001270.php" />
<rdf:li rdf:resource="http://blog.erdener.org/archives/001250.php" />
<rdf:li rdf:resource="http://blog.erdener.org/archives/001249.php" />
<rdf:li rdf:resource="http://blog.erdener.org/archives/001222.php" />
<rdf:li rdf:resource="http://blog.erdener.org/archives/001196.php" />
<rdf:li rdf:resource="http://blog.erdener.org/archives/001054.php" />
<rdf:li rdf:resource="http://blog.erdener.org/archives/001051.php" />
</rdf:Seq>
</items>

</channel>

<item rdf:about="http://blog.erdener.org/archives/001356.php">
<title>How to do bulk file rename</title>
<link>http://blog.erdener.org/archives/001356.php</link>
<description>How can you do bulk file rename using shell tools? The wrong answer is: mv *.OLD *.NEW The easy answer is a shell loop, should be pretty straightforward. Or maybe even a simple Perl/Ruby/etc. script. But it&apos;s also do-able using...</description>
<dc:subject>dev</dc:subject>
<dc:creator>kaan</dc:creator>
<dc:date>2009-03-18T11:17:08-06:00</dc:date>
</item>
<item rdf:about="http://blog.erdener.org/archives/001353.php">
<title>Sun JVM, Windows, system clock drift</title>
<link>http://blog.erdener.org/archives/001353.php</link>
<description>I&apos;ve been digging into some odd behavior that ultimately traced back to periodic changes to Windows system clock. After doing some research, I&apos;ve found that: Sun&apos;s JVM (through 1.6) has a bug that pushes the system clock into the future...</description>
<dc:subject>dev</dc:subject>
<dc:creator>kaan</dc:creator>
<dc:date>2009-03-03T21:54:12-06:00</dc:date>
</item>
<item rdf:about="http://blog.erdener.org/archives/001351.php">
<title>Tomcat + Gzip</title>
<link>http://blog.erdener.org/archives/001351.php</link>
<description>While doing some performance testing for a Tomcat-served webapp, I discovered you can enable automatic gzip compression based on content-type. In basic testing, this resulted in ~65% decrease in data transmitted from server to client. Considering a page with 400k...</description>
<dc:subject>dev</dc:subject>
<dc:creator>kaan</dc:creator>
<dc:date>2009-02-05T16:45:42-06:00</dc:date>
</item>
<item rdf:about="http://blog.erdener.org/archives/001319.php">
<title>MySQL string comparison</title>
<link>http://blog.erdener.org/archives/001319.php</link>
<description>I just discovered that string comparisons in MySQL ignore trailing whitespace in strings, CHAR, and VARCHAR fields (but not TEXT) - in short, use &quot;like&quot; instead of &quot;=&quot; for literal string comparison. The strings &apos;a&apos; and &apos;a &apos; (same thing...</description>
<dc:subject>dev</dc:subject>
<dc:creator>kaan</dc:creator>
<dc:date>2008-08-12T00:54:08-06:00</dc:date>
</item>
<item rdf:about="http://blog.erdener.org/archives/001309.php">
<title>Vim: lazy match on wildcard</title>
<link>http://blog.erdener.org/archives/001309.php</link>
<description>Got a question about vim pattern matching that I had to look up, probably worth sharing. Say you have the following text, and you want to modify the quoted things, so you start with this: blah blah blah &quot;BLAH&quot; blah...</description>
<dc:subject>dev</dc:subject>
<dc:creator>kaan</dc:creator>
<dc:date>2008-05-08T21:13:35-06:00</dc:date>
</item>
<item rdf:about="http://blog.erdener.org/archives/001289.php">
<title>Automatic suggestions</title>
<link>http://blog.erdener.org/archives/001289.php</link>
<description>Wtf is up with so many dev tools using auto-complete, suggestions, tooltips, etc.? Seeing all of these &quot;helper&quot; add-ons really makes me depressed that developers are asking for (and using!) these &quot;features&quot;. If you&apos;re working with SQL, shouldn&apos;t you know...</description>
<dc:subject>dev</dc:subject>
<dc:creator>kaan</dc:creator>
<dc:date>2008-01-16T23:13:48-06:00</dc:date>
</item>
<item rdf:about="http://blog.erdener.org/archives/001285.php">
<title>Eclipse + Vim</title>
<link>http://blog.erdener.org/archives/001285.php</link>
<description>I tried vi integration in Eclipse a long time ago, gave up because the integration was crappy. I don&apos;t remember what I used. Anyway, I just checked again and found Eclim which has great features. It doesn&apos;t hurt that it&apos;s...</description>
<dc:subject>dev</dc:subject>
<dc:creator>kaan</dc:creator>
<dc:date>2008-01-02T17:43:31-06:00</dc:date>
</item>
<item rdf:about="http://blog.erdener.org/archives/001280.php">
<title>Project logo</title>
<link>http://blog.erdener.org/archives/001280.php</link>
<description> Click to enlarge I made this logo for a project I worked on at a previous job. It was a play on an existing logo submission but I included the communist tone as a fun jab (it was funny...</description>
<dc:subject>dev</dc:subject>
<dc:creator>kaan</dc:creator>
<dc:date>2007-12-19T23:20:13-06:00</dc:date>
</item>
<item rdf:about="http://blog.erdener.org/archives/001270.php">
<title>Multiple statics</title>
<link>http://blog.erdener.org/archives/001270.php</link>
<description>I just read Java statics by Ted Neward. He&apos;s been migrating old articles he wrote, and he&apos;s posting updated links. Anyway, it&apos;s an interesting look at how static data is managed across multiple class loaders....</description>
<dc:subject>dev</dc:subject>
<dc:creator>kaan</dc:creator>
<dc:date>2007-12-03T23:03:14-06:00</dc:date>
</item>
<item rdf:about="http://blog.erdener.org/archives/001250.php">
<title>No field-level security permissions in JIRA.. ever?!</title>
<link>http://blog.erdener.org/archives/001250.php</link>
<description>I&apos;m writing in stunned disbelief after discovering that, mere hours ago, the Atlassian team dealt an awful blow to JIRA users around the world; they&apos;ve decided once and for all to mark Field level security permissions as &quot;Won&apos;t Fix&quot;. 4+...</description>
<dc:subject>dev</dc:subject>
<dc:creator>kaan</dc:creator>
<dc:date>2007-10-31T00:13:42-06:00</dc:date>
</item>
<item rdf:about="http://blog.erdener.org/archives/001249.php">
<title>Google Gears</title>
<link>http://blog.erdener.org/archives/001249.php</link>
<description> I just came across Google Gears (gearsblog.blogspot.com). It basically queues and persists outbound network traffic and automatically sends it when network connectivity is restored. There are several error / exception scenarios I can think of, but overall this is...</description>
<dc:subject>dev</dc:subject>
<dc:creator>kaan</dc:creator>
<dc:date>2007-10-30T12:17:18-06:00</dc:date>
</item>
<item rdf:about="http://blog.erdener.org/archives/001222.php">
<title>JSTL quick reference</title>
<link>http://blog.erdener.org/archives/001222.php</link>
<description>If you ever need a nice reference for JSTL, check this one out. It was made by Bill Siggelkow....</description>
<dc:subject>dev</dc:subject>
<dc:creator>kaan</dc:creator>
<dc:date>2007-08-01T22:16:41-06:00</dc:date>
</item>
<item rdf:about="http://blog.erdener.org/archives/001196.php">
<title>Disjunctive type bounds on catch clauses</title>
<link>http://blog.erdener.org/archives/001196.php</link>
<description>Brian Goetz recently posted about exception handling in Java (Remove checked exceptions?), and offered an excellent suggestion for eliminating duplicate code when catching multiple exception types. His idea is to allow disjunctive type bounds on catch clauses, so you could...</description>
<dc:subject>dev</dc:subject>
<dc:creator>kaan</dc:creator>
<dc:date>2007-06-19T13:21:49-06:00</dc:date>
</item>
<item rdf:about="http://blog.erdener.org/archives/001054.php">
<title>Nice rants about software</title>
<link>http://blog.erdener.org/archives/001054.php</link>
<description>I just read Good Agile, Bad Agile from Stevey&apos;s Blog Rants. Don&apos;t know much about him, but he was a developer at Amazon way back, and now works at Google. It&apos;s a long post, and really hit home on a...</description>
<dc:subject>dev</dc:subject>
<dc:creator>kaan</dc:creator>
<dc:date>2006-09-28T14:00:27-06:00</dc:date>
</item>
<item rdf:about="http://blog.erdener.org/archives/001051.php">
<title>Ruby vs. Java</title>
<link>http://blog.erdener.org/archives/001051.php</link>
<description>I&apos;ve been playing around with Ruby, and I like it. Ruby is powerful and simple. I haven&apos;t spent much time figuring out how to get the language to do what I want like I would with Java. Instead, I just...</description>
<dc:subject>dev</dc:subject>
<dc:creator>kaan</dc:creator>
<dc:date>2006-09-01T18:08:23-06:00</dc:date>
</item>


</rdf:RDF>