archives

  1. in articles

    Turn a RaspberryPi into a simple NAS

    This is based on a fresh install of Rasbian downloaded from the official site and using a NTFS formated external USB drive.

    The setup

    Install all the packages we need to save the day:

    $ sudo apt-get update
    $ sudo apt-get upgrade
    $ sudo apt-get install samba samba-common-bin ntfs-3g hdparm
    

    Get the drive …

    Read more...

  2. in articles

    Make a python object property behave like a classmethod

    Using @property is nice and peachy when you use the instance of the class, but what if you need to get that property without instantiating the class.

    You can do that with @classmethod (you'd say), but I want to use it as an attribute not as a method.

    Without further …

    Read more...

  3. in articles

    Install Gnome3 on Ubuntu 11.04 Natty (impressions)

    I decided to take a leap of faith and install Gnome3 and gnome-shell on my Ubuntu box.

    First the installation:

    $ sudo add-apt-repository ppa:gnome3-team/gnome3
    $ sudo apt-get update
    $ sudo apt-get dist-upgrade
    $ sudo apt-get install gnome-shell
    

    Some fixes after restart:

    $ sudo apt-get purge unity scrollbar* gnome-accessibility-themes
    $ sudo apt-get install gnome-themes-standard
    

    Extra …

    Read more...

  4. in articles

    Youtube not working in Firefox 3.6

    For the past couple of days YouTube did not work properly when accessed via Firefox 3.6 (at least on my personal PC).

    Here's how the front page looked:

    youtube

    I wasn't able to access any videos, nor my account. Also Firebug showed about 10 JavaScript errors. But it worked OK …

    Read more...

  5. in articles

    Hello world!

    I thought about starting this blog for a while now, just didn’t have the time and/or inspiration to actually do it.

    Anyway, this is going to be my place to post news about projects I’m working on, tech rants and other stuff. I just hope it will …

    Read more...