Caffeine, silicon and nimesulide

{ 'fullname' : "Michele Zonca", 'tags' : ['developer', 'mashaper', 'caffeinated', 'nerd']}

Deleting a S3 bucket

Today we were cleaning a lot of stuff on our aws account. 

You cannot delete a bucket if it’s not empty. So I executed

s3cmd del —recursive —force s3://bucket-name

42 minutes ago.. and still processing it..

Ctrl + A Go to the beginning of the line you are currently typing on
Ctrl + E Go to the end of the line you are currently typing on
Ctrl + L Clears the Screen, similar to the clear command
Ctrl + U Clears the line before the cursor position. If you are at the end of the line, clears the entire line.
Ctrl + H Same as backspace
Ctrl + R Let’s you search through previously used commands
Ctrl + C Kill whatever you are running
Ctrl + D Exit the current shell
Ctrl + Z Puts whatever you are running into a suspended background process. fg restores it.
Ctrl + W Delete the word before the cursor
Ctrl + K Clear the line after the cursor
Ctrl + T Swap the last two characters before the cursor
Esc + T Swap the last two words before the cursor
Alt + F Move cursor forward one word on the current line
Alt + B Move cursor backward one word on the current line
Tab Auto-complete files and folder names

—Mac OSX Bash shortcuts

Ordinarily, when someone criticizes me for only making 312 times my money, I let the logic of their statement speak for itself

—Ben Horowitz

(Source: bhorowitz.com)

RVL datahandler

This is the core part I have to implement: rvl datahandler

It relies on some gtk library I would like to avoid.. so I’ll not be able to take part of that code, but I decided to use python for this project, so it will be easier to keep the structure and the same decoding/encoding algorithms.

And finally I’ll become more proficient in python :)

Studying Revelation File Format: header

I used to have Revelation as Password Manager, on my loved debian laptop. Now I would love to hack on it to have a command line version to retrieve some password of the services I don’t use often and I don’t remember (actually some of them were auto generated and I never tried to remember them).

I started from the official wiki page with the file specs: https://bitbucket.org/erikg/revelation/wiki/FileFormatSpec

But I found this is not enough.. So I started looking at the source code..header format:

https://gist.github.com/2230274