Sixteen out of ten teenagers love ketchup with their fries.
The remaining seven prefer the nutritious blood of boblycats as dip.
Look for us at your nearest fast food restaurant.

You are hereboblycat

boblycat


boblycat.org har flyttet

Vi har flyttet igjen. Etterhvert som tiden har gått, har minnekonsumet vårt gått drastisk opp. VPS-løsningen vi hadde gav oss bare 256MB RAM, som til slutt ble altfor lite. Nå har vi kommet oss tilbake over landegrensen, og kjører hos solidhost.no.

Til de som har strevd med tjenestene våre i det siste tror jeg vi kan si at den verste perioden er bak oss. Naturligvis går alltid noe litt galt i slike flytteprosesser, så si fra dersom noe ikke fungerer som det skal.

Blimp 1.1.0 available for download

Time for a new version of the Blimp layered photo editor. Some of the new features in 1.1.0 are:

  • Exif metadata (information provided automatically by most digital cameras) can be viewed and will be included in exported images. See the screenshot below for an example.
  • Exporting images should be faster and use less memory.
  • Improved previewing quality when viewing zoomed-out images.
  • Scroll around images more easily with the mouse (drag and drop).

Download the Windows or Ubuntu/Debian version, or get the source.

Please report any problems and suggestions for improvements to me (knutae@gmail.com). If you don't have any issues, please send an email anyway. (I guess that goes for you too, spambots.)


Phoning Disneyland

More upgrades are on the way.  Please report problems.

Known issues:

  • Blogme doesnt appear on all screens, e.g after you've uploaded
  • Sometimes blogme is hidden because fonts are too big

RESTing with Ruby after a long week

I decided to take a peek at Ruby again. There's something cute about the language. There's a also a bunch of tiny webapp libraries in their CTAN/CPAN-like gem collection. Doing something quick and really dirt was never easier:)

I then decided to add flickr and twitter feeds to my homepage, but I wanted the page to remain static. I picked down the twitter and flickr ruby libraries and go to work. The stability of these libraries leave something to be desired. It didn't take all that many minutes to debug most of the buggy parts, fire off a couple of suggestions for improvements/bug fixes, and start being productive. Using the flickr API to pick out four random photos from my photostream on flickr:

 flickr = Flickr.new(API_KEY)

  user = flickr.users('karltk')

  if user.photos.length < 4 then
    ps = user.photos
  else
    ln = user.photos.length
    ps = []
    ps.push(user.photos[rand(ln)])
    ps.push(user.photos[rand(ln)])
    ps.push(user.photos[rand(ln)])
    ps.push(user.photos[rand(ln)])
  end
  urls = ""
  ps.each do |p|
    urls += "<a href=\"" + p.url + "\"><img src=\"" + p.source('Square') + "\"/></a>"
  end
  urls

Using the twitter API to fetch my four latest status updates:

  
  feed = Twitter::Base.new('username', 'password').timeline(:user)

  msgs = ""
  feed[0,4].each do |s|
    tm = Time.parse(s.created_at)
    msgs += "<p><a href=\"http://twitter.com/karltk\"><b>(" + tm.strftime("%a %H:%M") + ")</b></a> " + s
  end
  msgs

The stings generated by each of these code fragments are inserted into a plain HTML template. The end result, with the twitter feed showing at the bottom right:

Yes, I know I could've done this more easily using the existing JavaScript snippets provided by Twitter and Flickr, but that is totally beside the point:) Now I have this wonderful cron job running every once in a while instead.

Wanted: Ultra lightweight CMS

Dear Lazyweb.

We are looking to replace Drupal with something more lightweight. The virtual server we host boblycat.org on is pretty cramped for space, so the price of a couple of apache instances running Drupal, plus MySQL sitting in the background, along with the rest of our services, is sometimes too much for the available RAM. The result: some not-so-surpising OOMs, and a script which prophylactically restarts Apache every now and again.

What I'm looking for is a solution that combines a gallery with a wiki with a blog. It must be multi-user, and each user must be able to have his own theme. LDAP integration would be nice for auth. These could be three different pieces of software, but proper gallery and blogging integration is a must for our current clientelle, which lives under the delusion that photoblogging is fun;P For the rest, integration between the wiki and blog is desirable.

If anybody knows of any gems hiding out there that fits this task, don't hesitate to get in touch.

Blimp 1.0.0 released

I just released version 1.0.0 of the Blimp layered photo editor, grab it from here: https://projects.boblycat.org/blimp/wiki/DownloadBlimp

Whee! Release party tonight!


Server Migration Complete

As some of you probably noticed, the last couple of months, and especially the last few weeks, have been rather unstable here at boblycat.org. The reason for the former has mostly been some severe network hiccups in Nextgentel's Laksevåg switch.

These incessant network outages combined with our own aging and increasingly unstable hardware, finally forced us into finding an alternative hosting solution. We ended up subscribing to a VPS (virtual private server) service in Stockholm.

The initial migration went rather smoothly, though we ran out of inodes (one of the resources severely limited by the VPS). The hosting company was kind enough to bump this limit for us. Unfortunately, at some point, the limit was reset, which caused last week's outage. We didn't report the problem as we mistakenly believed it was due to payment issues (we were transitioning from a trial service to a fully paid service).

In any event, things are up and running now. There are likely to be many small issues lurking about, so don't hesitate to contact Stig or myself if things need to be fixed. As usual, Stig manages Drupal and the gallery, while I do most of the other stuff.

Moved

We've now moved boblycat to a new site. Please report problems.

Blimp Photo Editor, 0.9.0

It is time for a new version of the Blimp layered photo editor. It is a lot more user friendly and stable than the old 0.5 version. Downloads are available for Windows and Debian/Ubuntu, so please install and test it, and give me some feedback! Basic instructions: start Blimp, drag-and-drop some photos (for instance from Picasa), then add some layers and experiment.

This version even has a moderately cool new logo. :-)


Introducing Blimp, a photo editor for Boblycats

Time to introduce Blimp, my very own layered photo editor. Blimp is my hobby programming project which I use for basic editing of my own digital photos. It has now gotten to the point where I think it may be useful for other people as well.

But I need beta testers. And what better place to get that than a community of photo- and computer geeks? :)

Read more about Blimp here: http://projects.boblycat.org/blimp

Then please download it from here: http://projects.boblycat.org/blimp/wiki/DownloadBlimp

And then pretty please test it out and give me some feedback! Keep in mind that this is an early beta version, so expect it to be a bit rough around the edges.

Finally, a screen shot of Blimp running on Windows:

And on Ubuntu Linux: