4 minutes ago
OSX - GCC without XCode

Yes, there is a way. Right here: osx-gcc-installer.

You can download a prebuilt binary or (unfortunately requiring XCode) roll out your own based on the most recent OSX update.

Have fun :)

about 1 month ago
Introducing DSeries - A torrent tvshow episode fetcher

Good morning,

I would like to introduce DSeries, a simple TV show episode torrent file downloader, similar but simpler than TED and TVShows.

2 months ago
Found - a Quicksilver alternative for Mac OSX

If you are looking for an alternative for Quicksilver, the popular OSX launcher, you might find Found (no pun intended) a suitable replacement.

To be honest it does not seem to be quite as powerful but, if - like me - you only use Quicksilver to launch apps, then Found is a great lightweight (and beautiful) alternative.

2 months ago
Nginx rewrite/redirect for blog URL

When i moved my blog to a middleman system, i found that i needed to provide redirects from /2012/01/25/some-post to /blog/2012/01/25/some-post. It's a relatively simple task, though i lost some time because i missed a detail that no one usually explains.

3 months ago
Smart materials

Pretty cool TED talk about how smart materials can one day make our buildings behave more like biological systems in terms of dealing with the cold/hot/wind.

3 months ago
On using MySQL and working remotely

A couple of interesting articles this morning, one about why you should not use MySQL (i particularly love the expression “Mysql development and administration causes brain damage, folks…”) and a rant about remote work and why companies still can't see the value in it.

3 months ago
Automator service to resize image to several sizes

Here's an Automator service to resize an image into several sizes. Unzip and copy the package “Multiple Sizes.workflow” to your ~/Library/Services folder and you will get a new entry on the finder services context menu. Just right click any image and choose “Multiple Sizes” from the services menu.

3 months ago
Nokia releases 3D printer blueprint for creating cases for the Lumia 820 smartphone

Nokia has released the files that allow anyone with a 3D printer to create protection cases for its Lumia 820 phone.

In my opinion, that's a really smart move: It shows the will to be on top of the wave, when it comes to new technologies. It will also make a lot of phone owners happy :)

3 months ago
Sets - Link collections made simple

Meet Sets, a website that allows you to create and maintain lists (or sets) of links. Much like with sex, you can do it solo or with other people. I think it has the potential to replace Delicious and other bookmarking sites even if, for now, it does not support tags or groups… although that's not necessarily a bad thing :)

4 months ago
On limbering up
Being someone who has always practiced one sport or another (most times a few at the same time) i've witnessed the discussion about "limbering up" pop up endless times. And since 2009 it always reminds me of a Zombieland movie quote:
4 months ago
JAVA vertical gradient background panel

Recently i had to create a gradient background for one of the panels in our POS application, so i though i'd share the code.

You need to pass the top and bottom colors of the gradient and also make sure that any panels inside this one are transparent (i.e. setOpaque(false)), otherwise they will paint above it.

4 months ago
JAVA JScrollPane change scroll amount/increment

Easy:

yourScrollPane.getVerticalScrollBar().setUnitIncrement(85);
4 months ago
JAVA JScrollPane change scrollbar width or height

It's actually pretty simple. Just do something like this, adjusting to the horizontal scrollbar and/or the height that you want:

yourScrollPcane.getVerticalScrollBar().setPreferredSize(new Dimension(85, Integer.MAX_VALUE));
4 months ago
Money money money

I wonder why it feels harder to spend 500 Euro in this

Bookshelf

than this

iPhone

Any thoughts? :)

4 months ago
Miner Wars 2081 saved games directory/folder

The files live in this folder (at least on Windows 7 and possibly 8):

C:\Users\void\AppData\Roaming\MinerWars\Saves

If you use the standalone client, the files will be inside PUBLIC. If you are using STEAM, then they will be under STEAM. This way if, like me, you move from the standalone version to steam you can copy your save games and start the game from where you left it :)

5 months ago
Date and time in ruby

Time.now will give you the current date (and time), like so:

Time.now
2012-11-22 22:35:01 +0000

You can also request all the date parts individually:

Time.now.hour

5 months ago
A collection of useful Ruby/Rails gems

Since lately i've been working a lot with Ruby (Android and Java as well, but that's a different story), i figured i posted a couple of interesting gems that will make your life easier, especially but not only for rails.

5 months ago
Change file modified and creation date/hour

Here's how to change a file's modified date:

touch -mt 201102260000 <file>

Where “201102260000” is year, month, day, hours, minutes all glued together (so 2011-02-26 at 00:00).

Also, if you want to change both the modified and creation date, then:

5 months ago
Shortcat - Get rid of your mouse, now!

This is a game changing app, if you own a mac. It allows you to navigate your OSX without using the mouse. Give it a try, you won't regret it :)

5 months ago
Introducing Simple Rails Blog

Yes, a new blog. I know what you are thinking: “Who the hell cares?”. But read me out.

A while back i looked at wordpress and thought “i don't really need all this stuff, do i?”. Turns out i didn't. And if you are at least a little bit like me you will agree that sometimes less is more. After searching for some alternatives i ended up with two solutions: A company hosted blog (tumblr, blogger, and others) or hand made. I chose the latter.