Aug 08
WikiLeaks
… could become as important a journalistic tool
as the Freedom of Information Act.
Time MagazineWikiLeaks is a multi-jurisdictional public service designed to protect whistleblowers, journalists and activists who have sensitive materials to communicate to the public. Since July 2007, we have worked across the globe to obtain, publish and defend such materials, and, also, to fight in the legal and political spheres for the broader principles on which our work is based: the integrity of our common historical record and the rights of all peoples to create new history.
We believe that transparency in government activities leads to reduced corruption, better government and stronger democracies. All governments can benefit from increased scrutiny by the world community, as well as their own people. We believe this scrutiny requires information. Historically that information has been costly – in terms of human life and human rights. But with technological advances – the internet, and cryptography – the risks of conveying important information can be lowered.
Aug 08
EmuWiki.com – The Encyclopedia of Emulation
You should have a look to this great emulation database.
There are a lot of links for hard to find emulators on GNU/Linux.
May 19
Setting up awstats in ubuntu
# Install awstats package
sudo apt-get install awstats
# Edit a file called /etc/awstats/awstats.hostname.conf where hostname is the hostname. Put something like this in it:
LogFile=”/var/log/apache2/access.log”
LogFormat=1
DNSLookup=1
DirData=”/var/cache/awstats/”
DirCgi=”/cgi-bin”
DirIcons=”/icon”
SiteDomain=”hostname”
AllowToUpdateStatsFromBrowser=1
AllowFullYearView=3
# Make a directory called /var/cache/awstats and chmod it 777 so it can be used from the web server
# Copy icons to web directory:
cp -r /usr/share/awstats/icon /var/www/icon
# Run this to update databases:
/usr/lib/cgi-bin/awstats.pl -config=hostname -update
# In your web browser, go to the url:
http://hostname/cgi-bin/awstats.pl?config=hostname
# Study the stats in quiet awe
# Edit crontab to update stats automatically every night:
crontab -e
0 1 * * * /usr/lib/cgi-bin/awstats.pl -config=hostname -update
Thanks to http://www.petersblog.org/node/697
