One line CSS grid framework
.dp50 {width:50%; float:left; display: inline; *margin-right:-1px; }
(Source: vcarrer.com)
.dp50 {width:50%; float:left; display: inline; *margin-right:-1px; }
(Source: vcarrer.com)
Malo is ultra small css library for building web sites.
Un-cloud your files in cement! ‘Dead Drops’ is an anonymous, offline, peer to peer file-sharing network in public space.
Today I updated Whatcolor to make it more user friendly for mobile users.
I only have an Android device so I hope it works also on iPhone/iPod/iPad.
The saved colors list is now on the top of the page, because if you save a color I think that you know how to use whatcolor and usage information are less important.


It works also on landscape mode.

Links are now clickable blocks. Block elements tend to be easier to tap than inline text :)

Color page has a bigger “save/delete” button too.

Last but not least: application icon. If you add a bookmark of whatcolor on your desktop you get a really original icon ;)

When I need to sync the data on my VPS I use rsync over ssh but sometimes I need to work with cheap web hosting services that provide FTP-only access.
# create local mirror
lftp -c 'open -e "set ftp:list-options -a; mirror --delete --only-newer . /local/dir/" <bookmark>'
# restore
lftp -c 'open -e "set ftp:list-options -a; mirror --delete --only-newer -R /local/dir/ ." <bookmark>'
It’s very slow because FTP was not created to work like rsync does but it seems to work.
Ease is a modern desktop presentation application for GNOME, with Clutter-based visuals.
Thanks to Dustin Kirkland Ubuntu 10.10 has a new alias called alert inside your .bashrc.
You only need to install libnotify-bin and then you can use it:
sleep 5; alert
When the process ends you will be notified with a bubble.
It’s really useful for time consuming tasks like: wget, cp, make, du, etc.
Here is the code for integration in other distributions:
alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo error)" "$(history|tail -n1|sed -e '\''s/^\s*[0-9]\+\s*//;s/[;&|]\s*alert$//'\'')"'