Here's a quick tip to highlight trailing whitespace - put this on your .vimrc:
match Todo /\s\+$/
This will flag them the same way as TODO or FIXME, with a ugly yellowish mark:

To remove them, run this on normal mode:
:%s/\s\+$//e
Finally I got rid of enki's default theme!
What do you think? All critiques/comments will be more than welcome!!!
It doesn't ends with world's famine, but at least allows you to mark some methods of your ruby objects as deprecated and they will spit a warning every time you access them.
I think it has room for more - have you any idea to share?
install with gem install canivete or grab source code here
edit: I needed to change the name from ruutils as a gem with a very similar name exists (rutils) - thanks for pointing out jastix.
How can we ignite somewhat sleepy/lazy brains?
I just had an insane idea - no guarantees - you'll need:
Instructions:
Would it work? Any neat ideas to share?
Inspiration shamelessly taken from softwarebyrob.com
Recently I moved to the cloud!
The experience is amazing - Rackspace has really beefed up their servers, all my services feel snappier. No turning back.
Yeah, finally I've moved from jekyll - jekyll is awesome, but there are times that you don't have ssh access, and want to blog. This is my main motivation to go to enki, a very smart blog engine written in ruby/rails. Stay tuned!
I know that the visual is horrible, I will fix it this ASAP
This is the first post of the git series - small useful tips for the everyday git.
This tutorial is about [Gitosis] setup. From the project's readme:
Gitosis aims to make hosting
gitrepos easier and safer. It manages multiple repositories under one user account, using SSH keys to identify users. End users do not need shell accounts on the server, they will talk to one shared account that will not let them run arbitrary commands.
For this recipe, we will use some conventions:
We will need a linux server; my setup will be based on a ubuntu system, but you can use almost any *nix flavor.
You will need to have an ssh server installed as pre-requisite - run sudo apt-get install ssh to install it. (thanks DJC)
Install Compilation Tools & required libs for git
user@srv:~$ sudo apt-get install build-essential libssl-dev \
zlib1g-dev libcurl4-openssl-dev libexpat-dev
Download & uncompress Git sources
user@srv:~$ wget http://kernel.org/pub/software/scm/git/git-1.6.4.4.tar.bz2
user@srv:~$ tar -jxvf git-1.6.4.4.tar.bz2
Build & install git
user@srv:~$ cd git-1.6.4.4
user@srv:~/git-1.6.4.4$ make prefix=/usr/local NO_TCLTK=1 all
user@srv:~/git-1.6.4.4$ sudo make prefix=/usr/local NO_TCLTK=1 install
user@srv:~/git-1.6.4.4$ cd
Install required python libs
user@srv:~$ sudo apt-get install python-setuptools
Download & install gitosis
user@srv:~$ git clone git://eagain.net/gitosis.git
user@srv:~$ cd gitosis
user@srv:~/gitosis$ sudo python setup.py install
Create our git user
user@srv:~$ sudo useradd -s /bin/bash -U -d /var/lib/git -m -r git
Generate the gitosis-admin ssh key (if you don't have one already)
user@local:~$ ssh-keygen -t rsa -C user
press enter for the default location, then provide it with a passphrase
copy the generated public key to server
user@local:~$ scp ~/.ssh/id_rsa.pub user@srv:/tmp/user.pub
Log in as the newly created git user
user@srv:~$ sudo su - git
git@srv:~$
Initialize gitosis
git@srv:~$ gitosis-init < /tmp/user.pub
Initialized empty Git repository in /var/lib/git/repositories/gitosis-admin.git/
Reinitialized existing Git repository in /var/lib/git/repositories/gitosis-admin.git/
Adjust some permissions on admin repository
git@srv:~$ chmod +x ~/repositories/gitosis-admin.git/hooks/post-update
Clone the gitosis-admin repository
user@local:~$ git clone git@srv:gitosis-admin.git
Initialized empty Git repository in /home/user/gitosis-admin/.git/
remote: Counting objects: 5, done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 5 (delta 0), reused 5 (delta 0)
Receiving objects: 100% (5/5), done.
Voilà! Your gitosis setup is working! Let's take a look at gitosis's structure:
gitosis.conf
keydir/
keydir/user.pub
To finish our recipe, lets add a new user & a new repository
Let's call our new user john
Get john's ssh public key and put it inside keydir/john.pub
Add to gitosis.conf:
[group new-repo]
writable = new-repo
members = user john
As gitosis is managed by git itself, let's commit our changes:
user@local:~/gitosis-admin$ git status
# On branch master
# Changed but not updated:
# (use "git add <file>..." to update what will be committed)
# (use "git checkout -- <file>..." to discard changes in working directory)
#
# modified: gitosis.conf
#
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# keydir/john.pub
no changes added to commit (use "git add" and/or "git commit -a")
user@local:~/gitosis-admin$ git add keydir/john.pub gitosis.conf
user@local:~/gitosis-admin$ git commit -m "added new-repo + john keys"
[master ad62139] added new-repo + john keys
2 files changed, 4 insertions(+), 0 deletions(-)
create mode 100644 keydir/john.pub
user@local:~/gitosis-admin$ git push origin master
Counting objects: 8, done.
Compressing objects: 100% (5/5), done.
Writing objects: 100% (5/5), 1.02 KiB, done.
Total 5 (delta 0), reused 0 (delta 0)
To git@srv:gitosis-admin.git
bdc4dbc..ad62139 master -> master
Finally, let's john push his work to the shiny new repository:
john@local2:~/new-repo$ git remote add origin git@srv:new-repo.git
john@local2:~/new-repo$ git push origin master
Counting objects: 3, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (2/2), done.
Writing objects: 100% (3/3), 241 bytes, done.
Total 3 (delta 0), reused 0 (delta 0)
To git@srv:new-repo.git
* [new branch] master -> master
C'est fini! A complete setup running. Enjoy!
If you have any doubts / corrections, please comment!