<?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>Black Bag Operations Network &#187; web</title>
	<atom:link href="http://www.blackbagops.net/category/web/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.blackbagops.net</link>
	<description>Weapons and Intelligence in the War Against "Them"</description>
	<lastBuildDate>Sun, 03 Jan 2010 11:44:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>I&#8217;d forgotten what a lame pile J2EE is</title>
		<link>http://www.blackbagops.net/2008/10/05/id-forgotten-what-a-lame-pile-j2ee-is/</link>
		<comments>http://www.blackbagops.net/2008/10/05/id-forgotten-what-a-lame-pile-j2ee-is/#comments</comments>
		<pubDate>Mon, 06 Oct 2008 03:45:29 +0000</pubDate>
		<dc:creator>todd</dc:creator>
				<category><![CDATA[java]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web services]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.blackbagops.net/?p=139</guid>
		<description><![CDATA[I&#8217;d kind of sworn off doing Java a few years ago but a little contract fell into my lap that seemed like it would be some quick cash for not too much work.  I already had a lot of code in the can that would help me do it quickly.  Also, I still [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;d kind of sworn off doing Java a few years ago but a little contract fell into my lap that seemed like it would be some quick cash for not too much work.  I already had a lot of code in the can that would help me do it quickly.  Also, I still have IntelliJ 6, which can make Java almost tolerable.</p>
<p>Unfortunately, part of the system required a servlet to handle http requests (using http as an RPC mechanism).  I&#8217;ve used Jetty in the past with good results so I downloaded it.  Despite the existence of a &#8220;plugin&#8221; for IDEA to work with it, the debugger never worked.  </p>
<p>So I moved on to Tomcat.  I finally got IDEA configured to use Tomcat, the debugger worked, but the servlet was ignored every time without any kind of error message being logged.  Did it fail to link or something (it used a lot of external libs I had to bring in).  No clue.  I simplified the servlet to just printing &#8220;Hi there&#8221; and still it refused to load.</p>
<p>This resulted in a refamiliarization with web.xml files and all the rest of it.  In disgust I switched back to Jetty.  Jetty at least logged the errors to the console and I  fixed all the link issues, but still no debug.  Back to Tomcat but it still wouldn&#8217;t load my servlet at the url I wanted.  Eventually, I found the invoker servlet settings, turned that on, and the servlet began to work.  </p>
<p>The bottom line is that the entire J2EE architecture, the servlet containers, the zillion xml files specifying garbage I never want to change anyhow, all of it is MUCH TOO FRIGGIN COMPLICATED FOR WHAT IT DOES.  Too many descriptors.  Too much config.  Too much cargo cult xml. </p>
<p>Compare to PHP where I just drop a file in a folder under document root and I&#8217;m good to go.  Or rails, which is pretty much the same deal &#8211; just putting the file in the folder ought to be all that&#8217;s required to make the thing work.</p>
<p>I think this will be my last foray into Java hell.  At least for a few years until I forget how stupid it all is again.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blackbagops.net/2008/10/05/id-forgotten-what-a-lame-pile-j2ee-is/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Summer of Rails</title>
		<link>http://www.blackbagops.net/2008/09/21/summer-of-rails/</link>
		<comments>http://www.blackbagops.net/2008/09/21/summer-of-rails/#comments</comments>
		<pubDate>Sun, 21 Sep 2008 10:10:00 +0000</pubDate>
		<dc:creator>todd</dc:creator>
				<category><![CDATA[Objective C]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[seaside]]></category>
		<category><![CDATA[smalltalk]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[squeak]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.blackbagops.net/?p=137</guid>
		<description><![CDATA[I&#8217;ve now worked on three different Rails applications.  One of them was from scratch, the other two I took over from someone else.  The thing I like most about Rails is Active Record &#8211; it just works and it is easy to use &#8211; even for existing databases (although it takes a bit [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve now worked on three different Rails applications.  One of them was from scratch, the other two I took over from someone else.  The thing I like most about Rails is Active Record &#8211; it just works and it is easy to use &#8211; even for existing databases (although it takes a bit more work to specify the mappings).</p>
<p>I have a project coming up that would probably be a great Seaside candidate.  The database has to be postgresql (according to the client).  There is a native cocoa component &#8211; I&#8217;ll probably give <a href-"http://basetenframework.org/">BaseTen</a> a try.  For the web component, the obvious candidates are Rails (although I don&#8217;t know the state of Rails with PG &#8211; only mysql), and Seaside/Glorp &#8211; but I need to use Glorp to work like Active Record since the DB will be the master source of record for the schema.</p>
<p>Sadly, it doesn&#8217;t look like Glorp&#8217;s ActiveRecord on Squeak is ready for prime time, I might have to kind of finish that implementation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blackbagops.net/2008/09/21/summer-of-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rails is Magic</title>
		<link>http://www.blackbagops.net/2008/05/22/rails-is-magic/</link>
		<comments>http://www.blackbagops.net/2008/05/22/rails-is-magic/#comments</comments>
		<pubDate>Thu, 22 May 2008 10:27:41 +0000</pubDate>
		<dc:creator>todd</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.blackbagops.net/?p=134</guid>
		<description><![CDATA[And I hate magic.  First, I confess that I probably still don&#8217;t have a full command of all ruby&#8217;s features &#8211; I&#8217;m just getting the hang of mixins and some of the wacky compositional capabilities.  
I&#8217;ve just deployed my first soup to nuts rails application.  Well, nearly.  It certainly starts fast. [...]]]></description>
			<content:encoded><![CDATA[<p>And I hate magic.  First, I confess that I probably still don&#8217;t have a full command of all ruby&#8217;s features &#8211; I&#8217;m just getting the hang of mixins and some of the wacky compositional capabilities.  </p>
<p>I&#8217;ve just deployed my first soup to nuts rails application.  Well, nearly.  It certainly starts fast.  Generate ActiveRecord classes for your tables using scripts and you&#8217;re off and doing basic CRUD.</p>
<p>However, its the little things that made the experience less than satisfactory.  First &#8211; the changes in behavior moving from development to deployment were nerve wracking.  I have rails running under apache on my laptop, no problem.  On my production server, I cannot get byte one to come out of rails.  Webrick works fine.  Mongrel works.  Rails cgi produces no errors, and no output.  Even apache logs are totally silent.  I don&#8217;t get it.  For now it is running under mongrel &#8211; but I&#8217;ll have to put that behind apache and front it using modproxy.  Irritating as hell.</p>
<p>Second, I set up <a href="http://www.danga.com/memcached/">memcached</a><font style="position: absolute;overflow: hidden;height: 0;width: 0"><a href="http://kvantservice.com/">ÐºÐ¾Ð¼Ð¿ÑŽÑ‚Ñ€Ð¸ Ð²Ñ‚Ð¾Ñ€Ð° ÑƒÐ¿Ð¾Ñ‚Ñ€ÐµÐ±Ð°</a></font> on the advice of friends and was going to use it for my session cache.  But it turns out that objects don&#8217;t get saved in the memcached &#8211; apparently you can only store plist kinds of structures.  Objects get dropped.  I spent several hours beating my head against this using the usual hammer for this nail &#8211; require_dependency.  However, after listing every blessed model class as a dependency, it was still dropping a collection of objects.  Back to the file based session cache.</p>
<p>Another thing that drove me nuts is all the magic values you can&#8217;t use for attribute names.  I inherited this database and admittedly a bunch of columns and tables are stupidly named &#8211; however I kept running into problems with collisions with ActiveRecord extensions.</p>
<p>Another thing &#8211; camel vs underbar lowercase.  You generally specify relationships as lower case names, that ActiveRecord uses to infer a class name.  For instance, you specify the relationship as purchase_order and it figures you have a class PurchaseOrder that keeps its data in a table called purchase_orders with a foreign key purchase_order_id.  This can all be overridden, but understanding which form to use where got pretty trying.</p>
<p>Reciprocal relationships &#8211; at some level of circularity, ActiveRecord falls over with stack level too deep on save.  It isn&#8217;t even a very complex graph that does it in.  It became necessary to remove a bunch of back references to get a save to work properly.</p>
<p>Overall, I&#8217;d say towards the end I spent more time debugging magic gone awry than I did building application functionality.  So I have to chalk it up as a real learning experience, but not one I&#8217;m looking to repeat anytime soon.  The lack of decent debugging facilities was really crippling &#8211; especially coming from seaside.  ActiveRecord is cool, but it isn&#8217;t trouble free.  Doing basic inheritance was a huge exercise in wackiness I&#8217;m not eager to repeat.  If I hadn&#8217;t had a big old mysql database to build on top of, I probably would have used seaside instead.</p>
<p>So enough slamming &#8211; its not all bad.  One thing that helped a LOT was the discovery of <a href="http://activescaffold.com">ActiveScaffold</a> AS is AMAZING!  I was able to throw together a coherent admin interface with it very quickly &#8211; its customization options are very powerful, and in the end I think the back office app will be about 80% AS and 20% task oriented workflow.  That&#8217;s brilliant.  A data driven sensible ajax interface almost instantly.  Very cool.  </p>
<p>I may do more ruby apps, there are some seriously powerful go-fast kinds of technologies, but much of the time savings this go-round was lost to flukey behavior that changed from environment to environment, and really lame debugging tools.  </p>
<p>Rails is definitely a very mixed bag.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blackbagops.net/2008/05/22/rails-is-magic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quick Ruby Thoughts</title>
		<link>http://www.blackbagops.net/2008/04/29/quick-ruby-thoughts/</link>
		<comments>http://www.blackbagops.net/2008/04/29/quick-ruby-thoughts/#comments</comments>
		<pubDate>Tue, 29 Apr 2008 18:00:47 +0000</pubDate>
		<dc:creator>todd</dc:creator>
				<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.blackbagops.net/?p=133</guid>
		<description><![CDATA[I have to say I&#8217;m liking a lot about Rails.  Ruby, not so much.  Probably the most annoying thing about Ruby is the syntax.  It is MUCH too complicated and after working with it for awhile, I still don&#8217;t quite understand all the rules.  Things that puzzle me:
dot notation vs non-dot [...]]]></description>
			<content:encoded><![CDATA[<p>I have to say I&#8217;m liking a lot about Rails.  Ruby, not so much.  Probably the most annoying thing about Ruby is the syntax.  It is MUCH too complicated and after working with it for awhile, I still don&#8217;t quite understand all the rules.  Things that puzzle me:</p>
<p>dot notation vs non-dot notation.  When to use which?  </p>
<p>collection.select {| x | x > 5 }</p>
<p>vs</p>
<p>collection select {|x | x > 5}</p>
<p>they both seem to work.  Also, use of parens around argument lists &#8211; also seems to be optional.  Two different block definition syntaxes is also annoying.  </p>
<p>Less syntax would be most welcome.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blackbagops.net/2008/04/29/quick-ruby-thoughts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hoppin&#8217; on the Rails</title>
		<link>http://www.blackbagops.net/2008/04/04/hoppin-on-the-rails/</link>
		<comments>http://www.blackbagops.net/2008/04/04/hoppin-on-the-rails/#comments</comments>
		<pubDate>Fri, 04 Apr 2008 19:31:14 +0000</pubDate>
		<dc:creator>todd</dc:creator>
				<category><![CDATA[programming]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.blackbagops.net/?p=131</guid>
		<description><![CDATA[I&#8217;ve got two new clients &#8211; on is taking over expansion of an existing Ruby on Rails application.  The other is the replacement of the application I wrote in the previous article.  I want to stick a new codebase on the existing database.  Since rails excels at CRUD and I&#8217;m short on [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve got two new clients &#8211; on is taking over expansion of an existing Ruby on Rails application.  The other is the replacement of the application I wrote in the previous article.  I want to stick a new codebase on the existing database.  Since rails excels at CRUD and I&#8217;m short on bandwidth and hand-off-ability is a concern with the new development, I&#8217;m going to use rails for that one too.  </p>
<p>I mean, I can only learn so many frameworks at once.  So here we go &#8211; working through Agile Web Development with Ruby on Rails.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blackbagops.net/2008/04/04/hoppin-on-the-rails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Software Design Tip: Minimize Number of Languages</title>
		<link>http://www.blackbagops.net/2008/04/01/software-design-tip-minimize-number-of-languages/</link>
		<comments>http://www.blackbagops.net/2008/04/01/software-design-tip-minimize-number-of-languages/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 00:58:31 +0000</pubDate>
		<dc:creator>todd</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.blackbagops.net/?p=130</guid>
		<description><![CDATA[I was recently asked about taking over support for an existing application.  I&#8217;ll leave out what it does &#8211; suffice it to say it is web based, has a simple 3-5 page UI for the public to buy something, and about a 15-20 page set of back end interfaces for trained customer service and [...]]]></description>
			<content:encoded><![CDATA[<p>I was recently asked about taking over support for an existing application.  I&#8217;ll leave out what it does &#8211; suffice it to say it is web based, has a simple 3-5 page UI for the public to buy something, and about a 15-20 page set of back end interfaces for trained customer service and admin people to use.  So less than 30 screens overall mKay?</p>
<p>The application was said to be written in Java.  I know Java &#8211; I don&#8217;t like it, but I know it.  If its small, I could be persuaded to pick up the maintenance.</p>
<p>However, I got a source drop and I was totally appalled.  First, it suffers from the usual Java framework-itus.</p>
<p>Its J2EE &#8211; so we got Jetty container.  They used Hibernate &#8211; so we have generated Java code based on some XML schema files.  There&#8217;s also a mysql database &#8211; which duplicates the information in the Hibernate XML schema files.  It uses cocoon &#8211; cocoon make use of xml and xsl to define navigation and transformations. There is also reporting that uses xsl.  Workflows use flow &#8211; more xml only they used the Javascript extension so the workflows are actually defined using server side javascript.  </p>
<p>Got all that?  We have Spring, Coccon, Flow for Javascript (flowscript), Hibernate, Jetty, Javascript, Html, CSS, SQL, XSL and god knows how many dozens of distinct flavors of XML.  For a 25 page web app.  Wait, did you notice I didn&#8217;t mention Java?  There is Java &#8211; the Hibernate generated classes are used &#8211; but indirectly &#8211; they may as well not exist at all since all the application code is some fractured XML or Javascript fragment stashed who knows where.</p>
<p>It seems we&#8217;ve lost track of something here.  &#8220;Locality of Reference&#8221;  In general, all the stuff that deals with the product selection page ought to be visible by looking into the file representing that page, then maybe drilling into components.  The problem here is that, everytime I have to drill down, I have to switch languages.  And context switches are bad for programmer productivity &#8211; mKay?</p>
<p>I&#8217;ve turned down the job.  I don&#8217;t have time to learn all that junk for this little app.  The client needs a new installation &#8211; for 25 pages that do mostly CRUD to mysql. If I do it, I&#8217;m thinking plain old PHP with an ORM.  If I can find an ORM for PHP.</p>
<p>So far I&#8217;ve looked at Doctrine (not yet ready for production but it looks cool), Propel &#8211; and some others.  The really off-putting bit is their slavish insistence on creating the xml mapping file &#8211; just like Hibernate.  Of course, I have an existing database.  The XML file they want is in the db.  It just isn&#8217;t XML.  Still, all the information is available for query &#8211; so why are they bothering me with this junk?  Read the damn schema and make me some classes.  I&#8217;ll eliminate the many to many mappings by hand.  Sheesh.  No wonder there&#8217;s a software crisis.  </p>
<p>Hey framework people, stop making me write monkey code &#8211; figure out how to eliminate extra work &#8211; not make it.  One meta model is enough.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blackbagops.net/2008/04/01/software-design-tip-minimize-number-of-languages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Who do ya gotta do at Google</title>
		<link>http://www.blackbagops.net/2008/03/25/who-do-ya-gotta-do-at-google/</link>
		<comments>http://www.blackbagops.net/2008/03/25/who-do-ya-gotta-do-at-google/#comments</comments>
		<pubDate>Tue, 25 Mar 2008 21:49:54 +0000</pubDate>
		<dc:creator>todd</dc:creator>
				<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.blackbagops.net/?p=129</guid>
		<description><![CDATA[Google wouldn&#8217;t know harmful content if it sucked them off for $50.
Google! Fix this stopbadware flagging nonsense!
They are totally unresponsive despite repeated requests for review.  They don&#8217;t even mention what they object to &#8211; I&#8217;ve read their guidelines &#8211; I see no problems.  As far as I can see &#8211; Google IS the [...]]]></description>
			<content:encoded><![CDATA[<p>Google wouldn&#8217;t know harmful content if it sucked them off for $50.</p>
<p>Google! Fix this <a href="http://stopbadware.org">stopbadware</a> <a href="http://www.google.com/search?q=blackbagops.net">flagging</a> nonsense!</p>
<p>They are totally unresponsive despite repeated requests for review.  They don&#8217;t even mention what they object to &#8211; I&#8217;ve read their guidelines &#8211; I see no problems.  As far as I can see &#8211; Google IS the badware.</p>
<p>Google boycott starts now.  Because this is evil.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blackbagops.net/2008/03/25/who-do-ya-gotta-do-at-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mike Arrington, Software Pirate</title>
		<link>http://www.blackbagops.net/2008/03/24/mike-arrington-software-pirate/</link>
		<comments>http://www.blackbagops.net/2008/03/24/mike-arrington-software-pirate/#comments</comments>
		<pubDate>Tue, 25 Mar 2008 02:32:36 +0000</pubDate>
		<dc:creator>todd</dc:creator>
				<category><![CDATA[music]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.blackbagops.net/?p=127</guid>
		<description><![CDATA[The ever clueless and abrasive Mike Arrington says something even more ridiculous than usual. I can see both sides of the Bebo thing and frankly, social networking makes me yawn.  I have no patience or interest in it.  Seems like a phenomenal waste of bits to me.  Musicians uploaded their music without [...]]]></description>
			<content:encoded><![CDATA[<p>The ever clueless and abrasive Mike Arrington <a href="http://www.techcrunch.com/2008/03/22/these-crazy-musicians-still-think-they-should-get-paid-for-recorded-music/">says something</a> even more ridiculous than usual. I can see both sides of the Bebo thing and frankly, social networking makes me yawn.  I have no patience or interest in it.  Seems like a phenomenal waste of bits to me.  Musicians uploaded their music without expectation of compensation.  So sure, they&#8217;re probably not &#8216;entitled&#8217; to a payout.  OTOH, Bragg&#8217;s point is well taken &#8211; the musicians made them successful and it would be a nice gesture to give back.  But I wouldn&#8217;t hold my breath on that.  They&#8217;re internet entrepreneurs.  Thus greedy bastards by definition.</p>
<p>OTOH, the thing that really ticks me off is this little <a href="http://www.techcrunch.com/2008/03/22/these-crazy-musicians-still-think-they-should-get-paid-for-recorded-music/#comment-2048531">comment</a> by Arrington. </p>
<blockquote><p>&#8230;it costs exactly the same to produce one copy of the song (the first one) as 10 million copies. Simple economics takes over. Free.</p></blockquote>
<p>Which, if true, implies that Microsoft ought to be giving away Vista, Office, and everything else.  Because <a href="http://www.blackbagops.net/?p=128">Music is Software</a>.  It costs as much to develop as software, it takes every bit as much time, talent, and skill.  </p>
<p>Just because you can make a second copy for a buck, doesn&#8217;t mean that&#8217;s all it is worth.  If it costs $30k to record a song (which is kind of typical these days), and we are expecting to sell 100 copies, then this song needs to make $300 per copy to break even.  If its 10 copies, then its $3000 a copy.  The same economics apply as software.  Just like there is free software, shareware, and commercial software, there are many business models around music.  No single model is right all of the time.</p>
<p>Arrington should stick to his little blog about the shiny things &#8211; he obviously knows fuck all about the economics of creation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blackbagops.net/2008/03/24/mike-arrington-software-pirate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Curse You Google!</title>
		<link>http://www.blackbagops.net/2008/03/20/curse-you-google/</link>
		<comments>http://www.blackbagops.net/2008/03/20/curse-you-google/#comments</comments>
		<pubDate>Fri, 21 Mar 2008 00:57:25 +0000</pubDate>
		<dc:creator>todd</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[technology]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[web services]]></category>

		<guid isPermaLink="false">http://www.blackbagops.net/?p=125</guid>
		<description><![CDATA[A friend sent me an email telling me my site has been blacklisted by Google &#8211; largely because some spammer (die, spammers, die) hacked a message and put a bunch of link spam in.  I really have to question the security of wordpress.  If they can&#8217;t keep it clean, I&#8217;ll have to migrate [...]]]></description>
			<content:encoded><![CDATA[<p>A friend sent me an email telling me my site has been blacklisted by Google &#8211; largely because some spammer (die, spammers, die) hacked a message and put a bunch of link spam in.  I really have to question the security of wordpress.  If they can&#8217;t keep it clean, I&#8217;ll have to migrate to something else.  </p>
<p>There is an interface to request removal from the blacklist, but while you can be blacklisted in seconds, it apparently takes several days to get off of the blacklist.  Nice.  </p>
]]></content:encoded>
			<wfw:commentRss>http://www.blackbagops.net/2008/03/20/curse-you-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I hate IE6</title>
		<link>http://www.blackbagops.net/2008/01/26/i-hate-ie6/</link>
		<comments>http://www.blackbagops.net/2008/01/26/i-hate-ie6/#comments</comments>
		<pubDate>Sun, 27 Jan 2008 02:24:17 +0000</pubDate>
		<dc:creator>todd</dc:creator>
				<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.blackbagops.net/?p=115</guid>
		<description><![CDATA[Microsoft should be fined half their earnings for every year that IE6 is on the web in non-negligible numbers (over 5%).  After all, we developers have to do everything twice &#8211; once according to standards, and then again with lots of weird hacks to make it work on IE6.  Latest nightmare is a [...]]]></description>
			<content:encoded><![CDATA[<p>Microsoft should be fined half their earnings for every year that IE6 is on the web in non-negligible numbers (over 5%).  After all, we developers have to do everything twice &#8211; once according to standards, and then again with lots of weird hacks to make it work on IE6.  Latest nightmare is a javascript popover progress indicator for long running form posts.  The well known issues with absolute positioning and z-index conspired to make the strategy that works on every other browser fail on IE6.  So a feature I built in about 4 hours required an additional 8 hours to get mostly working on IE6 (there are small issues remaining &#8211; but nothing worth fixing).</p>
<p>Death to Microsoft and the IE team.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.blackbagops.net/2008/01/26/i-hate-ie6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
