iPaddie iPad is the new iPad

2010 January 29
by Eddie

iPad ipad. Ipad ipad ipaddie pad pad. Ipad? ipad ipad. Ipading ipad is ipad for the ipad of ipadia. Ipadia’s prime-minister says

[...] iPady? absurd, ipad ipad ipad ipad”

Update- This just ipad

ipadind ipad is the new ipad for everyone who never needed an ipad.  Plus the new ipad doubles as an ipad, Ipad right? Ipad the ipad striclty for ipadding, and it can ipad at 3 frequencies! ipad!

Migrate from Apache to nginx (and keep rewrites intact)

2010 January 28
by Eddie

nginx is a very fast and very lightweight web server that can handle static HTML blazingly fast, and does very well with dynamic (PHP) content as well.   In fact the very site your viewing is running atop of nginx.  nginx isn’t ideal for every server, and can’t handle SVN or WebDAV among other protocols.  But for your average site running PHP, Ruby or Django, nginx is choice.

The trouble was that I have lots of site (like this one!) that rely on a myriad of rewrite rules and logic to direct users properly.  Because we lose the mod_rewrite provided by apache, we need to tell nginx about our rewrite rules.

Luckily the logic is very similar, and all expression based as before…

read more…

Google Nexus One for only forty nine dollars ($49)

2010 January 17
by Eddie

Everyone is talking about Google’s Nexus One. Most people are saying that an unlocked phone for $529 just won’t fly here in America.  We like our phones with a ridiculous amortization attached through 2 year contracts so we feel like we’re getting a deal.  Sure we end up paying far more than the phone is worth – but we don’t pay it all at once. That’s the American way – defer.

Now if you tell a company like Verizon that you don’t want their discount phones for new contracts they will say fine.. but you won’t save any cash.  In fact you’ll pay more for unlocked phones plus an overpriced contract.

However for those fortunate few who have escaped the new-every-2-until-your-dead plan there are other options – like a Google Nexus One for $49.  If you’ve not had enough of my Verizon bashing, please read on.

read more…

Netflix on Android – from G1 to Droid

2010 January 5
by Eddie

I wrote a month or two ago about my Android application for Netflix subscribers. The application allows users to fully manage their instant and disc queues, browse recommendations and search all titles.

The reason then for this post is to share an update and gloat a bit. QueueMan has a whole bunch of new features, has been downloaded nearly 5,000 times (Update: Over 10,000 times!), is tested and proven on Motorola’s Droid platform, and is getting quite positive reviews compared to other Netflix apps on the market.   Oh yeah – and it’s all open source – Booyah!

read more…

Google to Offer New Phone Direct to Consumers in 2010

2009 December 14
by Eddie

Android was a nice start, but…

For sometime now Google has been offering its custom built mobile OS – Android – to various carriers and manufacturers.  News has been released however that the company plans to offer its very own phone direct to consumers by Quarter 1 – 2010.

read more…

Running Android SDK on 64bit Fedora 11

2009 October 24
by Eddie

I just got up and running with Fedora 11 after Ubuntu finally pushed me over the edge.  Every update seemed to break something else for me.

But anyway Fedora is great, save one small caveat – I couldn’t run any 3rd party 32bit applications. Ok, make that one huge caveat.  Consider some critical apps like Flash, or Android SDK that just wouldn’t fly.  Rather than downgrade my distribution to the 32bit flavor (which too would solve this dilemma) I opted to keep my 64bit distribution and just add the needed 32 bit binaries.

SO you want to install Android SDK, or another 32bit app on Fedora 64bit? Read on!
read more…

Netflix Queue Manager for Android phones

2009 October 23
by Eddie

QueueMan the Open Source Netflix queue management tool for Android Devices

QueueMan aims to be the Open Source Android application for Netflix subscribers. And it has already gotten some great reviews.

Netflix application for Android devices (G1, Droid, Eris, others)

Netflix application for Android devices (Nexus One, G1, Droid, Eris, others)

Isn’t it adorable!

Features

  • View current Disc and Instant queues
  • Search Netflix catalog and Add new movies to Instant and DVD Queues
  • Re-order or delete existing movies
  • View movie details (Year, rating, Synopsis, etc)

read more…

Performance Tip: Boost Your SAX Life

2009 October 16
tags: java, parser, SAX, xml
by Eddie

SAX, or Simple API for XML has grown to be the standard in Java XML parsing.  Numerous studies show how its performance, in the majority of circumstances, beats others such as PULL.

Does that mean you should just bang out a custom handler and expect solid performance, hardly.
This article has only two  tips, but it can have a huge impact. read more…

Multiple SSL Domains on Apache without Unique IPs

2009 September 1
by Eddie

So you host 13 domains on one server and want SSL certs for each domain. The cost of unique IPs is an obstacle indeed, but what if you didn’t need any unique IP addresses?

IMpossible you say? Not with the release of Apache 2.2.13!

I stumbled on this nice little feature called SNI (or Server Name Indication) that allows multiple domains to share an IP and implement SSL without showing warnings to users or confusing Apache.  I found this beauty after reading another great article on Linux Magazine, Ten Things You Didn’t KNow Apache (2.2) Could Do

So those of you running your own servers can take advantage by upgrading today!

For those of you relying on a Host you should start bombarding them with requests immediately. DreamHost members can vote up the already created suggestion  to implement this.

Automatically subscribe users to DreamHost announce lists

2009 August 19
tags: api, dreamhost
by Eddie

This is a response to a question on the DreamHost wiki posted by anonymous.

“I have a Contact page using form mail, and want to include a checkbox that enable visitors, to also subscribe to our Announce List when posting their form mail.

Is there a facility for adding users to the Announce List without using form POST”

Without using POST? I am not sure about that.. but using a checkbox to subscribe users is a snap.

read more…