Archive for the 'Technology' Category



29
Jul
08

The Next Episode

Back in March, I reached a decision to leave WeTheCitizens and spend some time in a contract role with Premiere. At the time, I expected that a contract gig would let me spend less after-hours time thinking about the day job, and more time on side projects and other interests. It turns out that even as a contractor, I cared about what I was working on. I consider that a good thing, we built up a good team, cranked out some pretty cool software, met some awesome people – I truly enjoyed my time at Premiere. The challenge for me on contract, was balancing life with billing more hours. In some ways, having a dollar amount directly attached to each hour of your time helps you better value your time. In other ways, it’s easy to imagine how working just a few more hours that week can earn you a shiny new gadget.

In spite of that, I was able to hatch FeatureFrame during my off-hours. It did occupy much of my creativity, and the process of building a product prototype, a pitch for Startup Riot, filing a provisional patent, designing a logo and business cards, and creating an actual business entity has been exciting, challenging, and in a twisted sense, fun. Many thanks to my Twitter posse, who often functioned as my co-founder, providing feedback and helping with decisions where I needed more than just my opinion. No I do not have stock options for any of you. Some interesting FeatureFrame news may yet be around the corner. It is still an interest and a passion of mine, and it will live on, but it’s not quite ready to be my main job.

The other thing I suspected when I left WeTheCitizens was that there were some interesting opportunities out there that weren’t crossing my inbox either because they were being filled by recruiters we’d used at WeTheCitizens, or because people generally seem to have the (often correct) impression that an executive in a startup isn’t really looking for another opportunity, at least until the startup’s been bought/folded and the earn-out is done. Being on contract actually did seem to send a clear signal, “Hey, I won’t be doing this new gig for too long, and I’ll need something interesting to do after that.”

A few moderately interesting things came and went, but one opportunity stood out, and I’m now a few weeks into my new role with Good Egg Studios. For all the times we jabbed at one of my Premiere colleagues for his work on Barbie.com, I never thought I would be working to build a virtual world for kids.  But here I am working on Elf Island.  A glance at the site and the blog should begin to make it obvious why.  This is an amazingly talented team, with the right marketing, the right funding, and the right product at the right time. The creativity and talent of the creative team is off the charts, and has combined with some talented technical resources to build a virtual world that a generation ahead of what kids are currently using.  The $2 billion valuation of Webkinz and Disney’s $700 million acquisition of Club Penguin are both examples of companies who have made this space extremely profitable.  The “secret” of Elf Island and our “play games, do good” mantra (which allows users to directly help non-profit causes) are going to be very sticky features that I think kids and adults will enjoy (even before launch, we’ve already had eager & hopeful users build us a fan site).  Our office space in west Atlanta is a win both for commute and for awesomeness – I need to take some photos, or come by and visit some time.

So that’s the news.  We are hiring a Java developer, a Flex developer, and a technical project manager (dev mgr?), so if you are somebody or know somebody who would enjoy such a role, do let me know.

23
Jun
08

Create TinyURL like URLs in Ruby

Some Ruby on Rails side-project hacking I’ve been doing led me to need to generate shortened URLs.  The ShortURL gem is fine if you want to use TinyURL, Snurl, or some other external service to generate and manage your URLs, but in my case, I need to host the URLs so I can track usage statistics and redirect to a URL determined at request-time.

I wanted to avoid generating curse words, or any words for that matter, so I opted not to use vowels rather than try and figure out something more clever.  I also had no requirement to obfuscate the sequential nature of the generated value.  The result essentially converts a number to a base 54 string suitable for use as a URL parameter.

URL_CHARS = ('0'..'9').to_a + %w(b c d f g h j k l m n p q r s t v w x y z) + %w(B C D F G H J K L M N P Q R S T V W X Y Z - _)
URL_BASE = URL_CHARS.size

def generateUrl idNumber
localCount = idNumber
result = ”;
while localCount != 0
rem = localCount % URL_BASE
localCount = (localCount – rem) / URL_BASE
result = URL_CHARS[rem] + result
end
return result
end

My usage will be to convert the numeric primary key of my model objects to this hash, so that Person #1174229 could be referenced as the short url http://app.com/p?i=7sH_

Obviously, the straightforward business of inserting this value into your table, performing lookups on it, etc is omitted and should be fairly straightforward to a seasoned developer.  The function can fit almost a half-billion values into 5 characters, and doesn’t experience the stack overflow issues of some recursive implementations I found, so I think it’s pretty useful.  (7 characters give you 1.3 trillion possibilities… nice!)

I can see a pretty cool plugin being built to solve this problem… maybe I’ll get around to writing short_url_fu one of these days.

19
May
08

Startups & the Superhero Origin Story

Josh and I went to see “Iron Man” after Startup Riot this evening, and Josh commented how the first superhero movie is always the best.  I tend to agree, and for me, I think it has a lot to do with my love of startups (and why Superman is lame).

The superhero origin story typically follows some flawed individual who sees something wrong in the world that gives them a reason to become something great.  Startups are based on flawed individuals who see a problem and think they have a solution.  Both startups and superheros make mistakes along the way, go through awkward phases where they come to grips with their “powers”, need to reevaluate their solutions, and can emerge powerful and revolutionary.

To me, the story of a successful startup closely follows the superhero origin story.  The sequel can be done well – watching Google mess with the wireless spectrum auction was interesting, but not nearly as cool as watching them rise from nothing to trounce Yahoo, Microsoft, Altavista, and the rest in search.  The mistakes made along the way are part of the charm, and nothing will ever be as epic as their rise to fame.  Superman is lame because he’s a golden boy – he basically shows up with super powers and no real flaws.  Cheering for Superman is like getting excited about the epic rise of ESPN 2.

08
May
08

Running Eclipse on MacBooks with Java 6

The title of this post is a bit misleading in that you apparently cannot run Eclipse on a MacBook Pro with Java 6 set as the default JDK.  Never mind that it took Apple a year and a half after the release of Java 6 for Apple to support Java 6 on OS X in the first place.  I thought Apple was “developer friendly”?  My experience on a Mac has usually been slightly better than working on a PC, except that the failings of a PC can usually be dismissed as Microsoft’s incompetence.  Apple seems to act more like a highly-opinionated jerk.

After I upgraded to Java 6 (and then had to manually change my JDK symlink even after the upgrade), Eclipse refused to start.  The system log showed:

[0x0-0xa90a9].org.eclipse.eclipse[4265]: _NSJVMLoadLibrary: NSAddLibrary failed for /System/Library/Frameworks/JavaVM.framework/Versions/CurrentJDK/Libraries/libjvm.dylib
[0x0-0xa90a9].org.eclipse.eclipse[4265]: JavaVM FATAL: Failed to load the jvm library.

To resolve the issue, I edited /Applications/eclipse/Eclipse.app/Contents/Info.plist, and uncommented this line:

/System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Commands/java

Problem solved.  Apparently Eclipse uses 32-bit SWT-Cocoa bindings, and Apple just decided that they weren’t going to support 32-bit SWT any more in Java 6, breaking any app that uses them in the process.  So the fix is to just run Eclipse under Java 5 (Java 6 projects still work in this setup).  I’m starting to lose track of the consumer-unfriendly attitudes I’ve experienced from Apple.  Their version of Java 6 is late, incomplete, and lazy.

I will declare this now – Apple is every bit as evil as Microsoft.  If Apple EVER gets the market share that Microsoft once held, Microsoft’s anti-trust violations will seem like trivial misdemeanors compared to what Apple would do with such power.  I need to gather my thoughts on this soon and elaborate on this point.

25
Apr
08

Startup Riot is HUGE for Atlanta

Startup Riot will rock Atlanta on May 19th, 2008.  ~70 startups will have 3 minutes each to pitch themselves before an audience of other startups and prospective investors, employees and customers.  Bilgistic creator Sanjay Parekh has been a force in organizing this event, recruiting his high-school colleague Drew Curtis of Fark.com as the keynote speaker, and getting more than 70 regional startups signed up to pitch.

Atlanta has had several cool startup community events.  TAG‘s annual business launch competition is underway again, Atlanta Startup Weekend launched Skribit, and we have had awesome unconferences such as 2 years of SoCon and last year’s BarCamp Atlanta.

What sets Startup Riot apart is that it is ORIGINAL and UNIQUE.  I haven’t heard of ANY other cities hosting events where an early stage company can pitch their company to investors and customers for FREE.  Sanjay has certainly been working hard to make the event happen, and the costs seem to already be covered by sponsors.  It is an event I can see other cities copying, and it’s starting here in Atlanta.

Of course I have a vested interest in Startup Riot.  My previous startup, WeTheCitizens. will be pitching.  I’ll be pitching (for a whopping 3 minutes)  FeatureFrame, a video platform for independent film-makers and commercial content-producers, but I’m also interested in the community aspects.  Many, many startups that I know of will be using this event as a major catalyst for them to build their pitch and move their business forward.  I can’t wait to hear about what dozens of other Atlanta startups are working on, and for Atlanta to pioneer an event that other cities will undoubtedly look to reproduce.

20
Apr
08

RubyOnRails.org hacked?

In trying to update my Ruby gems today, I got some strange errors.  Upon navigating to the Ruby on Rails site, I saw the following:

So what’s the word?  Did the main Ruby site get hijacked or expired?  If so, this could be yet another obstacle to enterprise adoption of Ruby/Rails.

Update: This post has been posted to Digg, and comments there indicate that the RoR IRC channel has acknowledged an issue with the domain, and they are “looking into it” (i.e. – 37 Signals is calling their lawyers).

26
Mar
08

Syncing my online life – New Blog Domain and Blog Bling

http://blog.kischuk.com/ is the new web address, http://feeds.feedburner.com/rkischuk is the new Feed URL. Existing links and feed subscriptions should work fine for the foreseeable future.

I’ve been on a mission lately to sync my online presences, initiated when I started using Twitter. I didn’t like maintaining different statuses on Facebook and Twitter, so I started using TwitterSync to push my Twitter status into Facebook – works like a champ. I wanted to bring my blog and flickr activity in too, so I fired up FriendFeed, and that worked and let me bring in my GTalk status, Google Reader, last.fm, and LinkedIn activity as well. Added the FriendFeed app and now all of that activity is pulled into Facebook. They need better controls so I can tell FF not to push my twitter activity into my feed (TwitterSync already updates my status directly), but I suspect this feature is coming.

Rhapsody listening history proved to be an interesting challenge, since Rhapsody’s plugin support is pretty sparse – Last.fm doesn’t have a Rhapsody scrobbler. I had to make my Rhapsody listening history feed public on Rhapsody.com, and am using RhapsodyScrobbler to push my listening activity to Last.fm. It’s a bit of a hack, but works nicely.
Giving this blog a facelift proved challenging. I’ve been happy using a wordpress.com hosted blog, except for the theme selection, domain name, and poor widget support. But there are no hosting, scaling, or software upgrade headaches. I paid $10 each for the Custom CSS and custom domain upgrades, and was able to tweak a new theme to something I’m pretty happy with (still some room for improvement). I’ve had kischuk.com registered for a while, free DNS with ZoneEdit, and finally added a CNAME for blog.kischuk.com to point to wordpress. The most unfortunate thing about hosted WordPress blogs is that they don’t support widgets of any variety (iFrame or embed). The best tool available for this is the RSS widget – I was able to point this to my twitter and Last.fm RSS feed to provide the pseudo-widgets you see in the right column. I also see this as the best hope for adding some semblance of Skribit support.

I am looking to add a good Flickr app to Facebook – any suggestions?

24
Mar
08

The Seas of Job Change – Wrapping up at WeTheCitizens

18 Months ago, I left a transitional role with Proficient/LivePerson to head up the development team at WeTheCitizens. In that time, we scaled the Wildfire platform from running a single gubernatorial campaign to a true SaaS platform that successfully ran for Rudy Giuliani and scales well to holding many national customers concurrently. It’s been quite a ride, filled with all of the highs and lows you could imagine. One of my fondest yet most stressful memories is working until 2 AM on a customer launch, waking up at 5 AM to catch a plane, and spending the morning calling back and forth to Atlanta as our production servers bounced up and down as the team in Atlanta discovered critical issues and bounced the server to apply fixes. Probably 5 minutes before we started training individual users, the system was stable enough to stay up, and the training and launch went great, thanks to an awesome technical team. I’ve worked with some of the best folks a startup could ask for, and I think we’ve accomplished a lot to be proud of. I’ve had great opportunities to expand my involvement in the Atlanta startup community, and met many more incredible people.

With these expanding horizons, came a conflict. There are a number of things I’d like to pursue, but trying to do to much “on the side” while serving in a startup VP role AND pursuing an MBA only comes at the expense of the MBA or the startup.  Testing the waters of any new venture while already in such a role is difficult at best. It’s been a great chapter at WeTheCitizens, and I it’s an opportune time to move on to new things – the team there is poised to thrive without even missing a beat. I’d like to explore some opportunities to co-found a new company.  I have a few ideas of my own I’d like to explore, build, and see if they get traction.  I’d love to take more of the load of Skribit development of of Calvin.  I’d love to explore leadership roles in some other local, fast-growing, young companies.  In leaving WeTheCitizens, I was trying to walk a fine line of finding a role that provided interesting work and long-term potential without conflicting with these other interests.

I found all of that and more in a contract position with Premiere Global (fondly locally known as Ptek), where I’ll be starting on Monday.  The project is important and interesting (I’ll share as much as I can, when I can – strategic projects at public companies can be a bit more sensitive than startup progress), we’ll be building a high-quality development team (solid Java resumes/referrals welcome), and we’ll be building a massively scalable system.  There’s potential for a longer-term position, but the contract nature of the position also affords a more natural boundary between day-job and other interests.  I’ve decided not to take any MBA classes this summer, freeing up some more time.  I’ll have time to pursue a number of different projects that have eluded me recently.  Six months from now, I’ll be in a far better position to decide what my next big step is.  Expect this blog to get a bit schizophrenic.  The role with Premiere is a good bit of hands-on development, so I’ll be sharing some nuggets that will help Java people.  I’ll be a bit more public and promotional with some of my other projects, which will be fun.  I think I’ll be just as busy, but with a much more diverse array of tasks on my plate.

—————-
Now playing: The Doors – The End
via FoxyTunes

03
Mar
08

Skribit Reloaded

Andrew Hyde notes that Skribit is now publicly available.  We had been in private beta as we stabilized the product and environment, and are now open to anyone with a blog who’s interested in collecting reader feedback on what they should blog about.  We also added some nice features along the way, and cleaned up some gaps on the Skribit site.

One key focus for this release was closing the feedback loop.  We notify bloggers when they get new suggestions, give them weekly activity summaries, and notify suggestors when a blogger writes about their suggestion.  Simple, but critical in keeping the conversation going.

Startup South is showcasing the Skribit widget as it now renders correctly when the width is narrowed.  Narrow-sidebar-bloggers rejoice!

Lastly, my contribution (with gratitude to acts_as_commentable) – you can now comment on a suggestion.  Because the meaning of a suggestion isn’t always clear.

Major cred goes out to Calvin (the feature machine), Paul, Jason, Lance, Alan, Josh, and anyone else I’m missing who made this latest release possible.  These guys make burning free time on a second startup a pleasure.

P.S. – You may note that I don’t have Skribit on this blog.  It’s not that I don’t want to use it (I REALLY do), it’s that hosted WordPress blogs such as this can’t handle iFrame widgets.  Boo.

23
Feb
08

Hunting for a new MP3 Player

I have long been a customer of Yahoo Music Unlimited, a subscription music service competing with the likes of the new Napster and Rhapsody.  When I first signed up, the service was compatible with the RCA Lyra 1070, a small, flash-based MP3 player with an SD slot to expand the capacity.  You could copy any song from their library of millions of songs to the Lyra, so long as you periodically connected the Lyra to a computer to re-authorize the music library.  At some point, I begin going to the gym less, and Yahoo & Microsoft made some DRM “enhancements” that rendered this device incompatible with that feature (and they made support of this feature an add-on cost).  Now that Yahoo is quitting the music subscription business and handing my account over to Rhapsody, I’m looking at Rhapsody’s higher base monthly rate ($13/month) and thinking the meager $2/month add-on to copy any tracks to a portable MP3 player looks pretty nice.  To do this, I’m going to need a new MP3 player.

My main criteria for this new MP3 player are a) supports subscription music services, b) accepts flash memory cards to upgrade capacity, and c) costs less than $100.  Presumably a device meeting these criteria will be small enough that size isn’t an explicit criterion.  The subscription issue is non-negotiable for me.  The whole idea of paying $1/song has never sat well with me.  I like listening to the entire discography of an artist I’ve never heard of – I recently became a huge fan of Explosions in the Sky doing this.  I enjoy listening to entire albums, even the less popular songs, to discover hidden gems.  It’s awesome to be able to queue up a few hours of obscure Australian or Greek music to set the ambiance for a themed dinner party (and not have to buy the music).  With some nagging exceptions (Metallica, movie soundtracks), almost all the music I could ever want to listen to is immediately available at no additional cost.  Upgradeable capacity is another hot-button issue for me.  Upgradeable capacity takes away that temptation to pay $50 more for a $20-30 memory-upgraded-model now, and $200 more when the capacity of the shiny new players on the market are an order of magnitude larger than yours.  Buy a 2 GB player right now, and by this time next year, a $30 SD card will probably take you to 10 or 18 GB.

So far, my search is pointing to the Sandisk Sansa e250, which can be had refurbished for $40.  It has a color screen and video playback – I honestly don’t care about this since I don’t care to load TV and movies onto it – if I could find an audio only device like my old Lyra, I’d take it, though I’ll probably find a reason to like the video.  It comes with 2 GB of internal memory and is upgradeable with a microSD card (I would prefer a full-size SD card for cost/capacity reasons).  It has an FM tuner and can record FM radio – not a big draw, but interesting.  It has an internal, rechargeable, user-replaceable battery – another nice plus.  Anyone have good/bad experiences with this player?  Good experiences with another player that seems to hit the criteria?  Just want to tell me to suck it up and buy an iPod nano instead?  Comment away.





Follow

Get every new post delivered to your Inbox.