Hacking

Note to self: Backup bottlenecks

March 23, 2014
network speed, Note to Self, Hacking

Note to self: Backup bottlenecks # I learnt the following relations the hard way 10 years ago when trying to backup a rather tiny amount of data, went through the computation again three years ago. Still I had to re-do the computation this morning when trying to pull a final full backup from my old MacBook. Posting here for future reference: Note 1: Some numbers like 10BASE-T included only for historic reference. ...

Children tinkering

January 5, 2014
children, tinker, Hacking, hacks

Children tinkering # Years ago I decided that in case I got the same question for at least three times I would write down the answer and put it somewhere online in a more or less public location that I can link to. The latest question I got once too often came from daddies (mostly, sorry - not even a handful of moms around me, let alone moms who are into tech) looking for ways to get there children in touch with technology. ...

Linux vs. Hadoop - some inspiration?

January 16, 2013
Hadoop, brainstorming, standardisation, Linux, desgin, Hacking

Linux vs. Hadoop - some inspiration? # This (even for my blog’s standards) long-ish blog post was inspired by a talk given late last year at Apache Con EU as well as from discussions around what constitutes “Apache Hadoop compatibility” and how to make extending Hadoop easier. The post is based on conversations with at least one guy close to the Linux kernel community and another developer working on Hadoop. ...

Note to self - link to 3D maps

September 24, 2012
3dmaps, webgl, nokia, Hacking, Note to Self, 3d

Note to self - link to 3D maps # After searching for the link the third time today - just in case I happen to be again looking for Nokia’s 3d maps: http://maps3d.svc.nokia.com/webgl/index.html is the non-plugin link that works in Firefox.

FrOSCon - Git Goodies

September 5, 2012
Hacking, git, FrOSCon

FrOSCon - Git Goodies # In his talk on Git Goodies Sebastian Harl introduced not only some of the lesser known git tooling but also gave a brief introduction as to how git organises its database. Starting with an explanation of how patches essentially are treated as blobs identified by SHA1 hashes (thus avoiding duplication not only in the local database but allover the git universe), pointed to by trees that are in turn generated and extended by commits that are in turn referenced by branches (updates on new commits) and tags (don’t update on new commits). ...

FrOSCon 2012 - REST

August 29, 2012
Hacking, FrOSCon, rest

FrOSCon 2012 - REST # Together with Thilo I went to FrOSCon last weekend. Despite a few minor glitches and the “traditional” long BBQ line the conference was very well organised and again brought together a very diverse crowd of people including but not limited to Debian developers, OpenOffice people, FSFE representatives, KDE and Gnome developers, people with background in Lisp, Clojure, PHP, Java, C and HTML5. The first talk we went to was given by JThijssen on REST in practice. ...

Spotted this morning...

August 16, 2012
maps, Hacking, nokia, Navteq

Spotted this morning… # in front of my office: Ever wondered how accurate navigable map data for your Garmin, your in-car navigation system (most likely), or maps.nokia.com are created? One piece of the puzzle is the car above collecting data for Navteq, a subsidary of Nokia.

On Reading Code

August 2, 2012
geecon, Hacking, Video, coding

On Reading Code # “If you don’t have time to read, you don’t have the time or the tools to write.” –Stephen King Quite a while ago GeeCon published the video taped talk of Kevlin Henney on "Cool Code". This keynote is great to watch for everyone who loves to read code - not the one you encounter in real world enterprise systems - but the one that truely teaches you lessons: ...

Need your input: Failing big data projects - experiences from the wild

July 18, 2012
big data, Science, Hadoop, Strata, fail, Hacking, Event

Need your input: Failing big data projects - experiences from the wild # A few weeks ago my talk on “How to fail your big data project quick and rapidly” was accepted at O’Reily Strata conference in London. The basic intention of this talk is to share some anti-patterns, embarrassing failure modes and “please don’t do this at home” kind of advice with those entering the buzzwordy space of big data. ...

Note to self: Clojure with Vim and Maven

July 17, 2012
Hacking, clojure, Cascalog, Note to Self, vim

Note to self: Clojure with Vim and Maven # Steps to get a somewhat working Clojure environment with vim: Install the current vimclojure plugin. Get and install a nailgun client. Add vimclojure to your clojure project pom.xml. Start the nailgun server from within your maven project with mvn clojure:nailgun with the maven clojure plugin. Finally start vim, open your favourite clojure file - you can open a REPL with \sr, when in a function definition you can evaluate that with \et - see also tamining vim clojure ...