Geek Stuff

Grids and Paper Textures for Procreate iPad App

Isometric, dots and regular grids with couple of paper textures

09 December 2017

Handy Grids and Paper Textures for The Magnificent Procreate App.

I tried to find some grids for Procreate recently, since there's only perspective grid built in, but couldn't find anything I could use, at least not easily.

Automatically resize screenshots to 50% on retina Macs with Automator

02 March 2015

Caterpillar Train

If you're like me and you often need to send some screenshots by e-mail but you don't want to send @2x retina images to them you can use this Automator Folder Action to automatically resize them.

Web developers dream

I wish all websites had statistics like this

18 May 2011

Bananica.com google analytics stats for the last year and a half. Spoiler: Internet Explorer 7%

Bidirectional synchronisation of two folders on a Mac with Automator and Rsync

Keep two folders in sync

28 March 2011

This is modification of my previous automator workflow for synchronising target folder with source folder (leaving source folder intact). This one, however, is bidirectional sync (mirror), the result of which is two folders with identical contents.

iPhone 4 photo samples

15 August 2010

Mirko

I finally received my iPhone 4 couple of days ago. And one of the best things about it is definitely its camera. I'm amazed by the quality of the photos it produces.

HTML5 Memory Game

My 10k Apart Contest Entry

03 August 2010

Check out this little Memory Game I developed for 10k Apart Contest and while you're there please vote for me :) When you're finished voting feel free to play around with this version with leaderboard.Oh, and it works on iPhone and Android phones as well.

First look at Navicat 9 for MySQL, Mac OS X version

Mac OS X native look and feel is here

11 May 2010

I take a first look at Navicat version 9 for MySQL on Mac OS X. It finally looks like a native Mac OS X app.

Find files larger than X and delete them in Mac OS/Unix terminal

21 January 2010

Another terminal oneliner I've just used to delete files larger than 10mb.

MySQL Find and Replace with helper tool that generates SQL for you

14 December 2009

How to find and replace text in MySql with an online tool that generates SQL for you.

Synchronize two folders on a Mac with Automator and Rsync

Power of Automator and Unix combined

14 December 2009

I really miss some good Automator tutorials online. It's such a great and I guess underrated and underused tool. Here I'll show you how to combine it with rsync to easily synchronise two folders.

Synchronize two folders on a Mac and other Unix Systems with Rsync

From terminal

14 December 2009

One of the great things with Mac OS X is that you have many of the cool tools from UNIX world. One of them is definitely Rsync. I'll show you how to use it to synchronise files from of two different folders from terminal and using mighty automator.

Add all new files and folders to subversion with one line in terminal

13 December 2009

Mario & Luigi

This is basicly simple oneliner:
svn status | grep "^?" | awk '{print $2}' | xargs svn add
I'll try to explain it...