Yesterday evening in my free time I’ve made the beautiful paper Tux represented below, thanks to great guide posted on DigitalKamera.
Nerd is the way.
Another penguin is live.
Yesterday evening in my free time I’ve made the beautiful paper Tux represented below, thanks to great guide posted on DigitalKamera.
Nerd is the way.
Another penguin is live.
Another great initiative from the Linux Foundation: free training webinars.
Just signup here and wait until first start date.
The first webinar will be dedicated to community collaboration: “How to Work with the Linux community“.
How suggested by this news it will be available on 1st of March, 2010.
Quite amazing…
35.000-core ubuntu server farm renders Avatar.
A little shell script that I’ve used to generate the list of page composing a given site
#!/bin/bash
if [ "$#" -eq 2 ]
then
wget -erobots=off --mirror --delete-after --reject .jpg,.png,.gif,.swf,.css,.js,.txt,.pdf,.rtf,.odt,.doc $1 2>&1 |grep $1 |cut -d " " -f 4 |cut -d "?" -f 1 | sort | uniq > $2
rm -rf ${1#http://}
else
echo "Usage: ./scriptname http://testsite outputfile"
fi
Save with a desired file name and give it a chmod +x and then just launch from shell:
./scriptname http://testsite outputfile