iPhone 6S Arrived

My new phone arrived and I couldn’t be more excited! The trusty 4S cannot handle the new iOS versions anymore (at least not in a performant way) and the battery life has become abysmal, especially on cold days.

Also, since two weeks I’m an iOS developer at my company. A lot of fundamental stuff to learn, but also a massive existing codebase to dive into.

Developing a Game with Ruby and Gosu

One of my goals for 2021 was to complete every Apple Watch challenge and to fill the move ring every day.

Continue reading →

Canon's Ink Sink

My Canon Pixma recently stopped working with an error that seems unrecoverable, basically meaning that the device reached its end of life. I opened the device to salvage some electronic parts like motors. What I found was horrifying.

Continue reading →

Making Things With Maths (Steven Wittens at Full Frontal 2012)

Steven Wittens talks about having an enjoyable experience with math and what he does with it.

Continue reading →

Ich bin MMT

After 6 years at my job working as a web developer I decided to take a break and go back to university. To the University of Applied Science in Salzburg to be precise. I’ll get a master’s degree in Multimedia Technology and solidify what I learned in practice while working in that field and go way outside my comfort zone by getting deeper into computer science, machine learning, project management, etc.

I guess that's it

After six years of service my Macbook Pro (2006) is broken. It was in a shoddy state for a while, but now it’s time for retirement.

Hello iPhone 4S

This new iPhone 4S will relieve my iPhone 3G of its duty. When helping a friend move into his new place it started raining and somehow water got between the actual screen and the covering glass resulting in a lot of pixel errors. The new iOS versions make it slower and more frustrating to use.

Chase Jarvis and Jasmine Star on Wedding Photography

Chase Jarvis interviewing Jasmine Star about her life as a wedding photographer. They talk about how she got started, the meat of the business and the challenges she faces.

Continue reading →

iPad light painting

BERG did a brief image video for Dentsu London. It involves using iPads, long term expsure and stop motion.

Continue reading →

Backup Redundancy Redundancy

Chase Jarvis and his crew share some insights about their workflow from camera to final product - always with data redundancy in mind.

Continue reading →

Eyjafjallajökull Erruption Timelapse by Sean Stiegmeier

An amazing timelapse of what went down in Iceland.

Continue reading →

How to split and join large files

Sometimes it might be necessary to chop up a large file into several parts (e.g. to place it on drives that are to small for the whole file). Keep in mind that corruption to any of the parts will result in a corrupt file once it is stiched back together.

To split a large file:

split -b 1m /path/to/large/file /path/to/output/file/prefix

-b defines the size of the chunks (1m stands for 1 megabyte). Please refer to man split for all the options the tool offers.

This will give you a bunch of files whose names start with the defined prefix and a incremental suffix (starting with aa depending how many parts need to be created).

To join the parts back into one file:

cat prefix* > new_filename