Dawn of the Dead

Tuesday, 31. January 2012 9:47 | Author:

Un freakin believable. Opening morning on an electronics store sales-off.

Category:Earth changes, Humor | Comment (0)

Strange noise phenomenon – world wide

Sunday, 29. January 2012 0:43 | Author:

A handfull of video clips reporting the latest weird phenomenon – eerie sounds in the atmosphere. Very interesting, might have something to do with the Sun, HAARP or anything else.
Although audio is even more easy to fake than video – there is something to it, and it is a NEW phenomenon.

Try this: http://www.youtube.com/results?search_query=strange+noise+weird+sounds

Or Jeff Rense’s collection: http://www.rense.com/Datapages/strangesoundsdata.html

Category:Earth changes, Nature | Comment (0)

TheTinyDot

Thursday, 1. December 2011 16:33 | Author:

Category:New World Order | Comments Off

Carrier IQ – the ultimate keylogger on YOUR smartphone

Wednesday, 30. November 2011 23:22 | Author:

This baby logs your every keystroke, reads your tex messages before you’ve even read them, has access to bluetooth, your microphone and camera.
Best of all, the only way to remove it is by “rooting” your phone, and that will void your warrantee.

CarrierIQ has been seen on Android phones, iOS/Apple/IPhones, HTC, Samsung, Nokia, BlackBerry and many more.

For the Dutch folks: http://tweakers.net/nieuws/76517/htc-voegt-spionage-tool-toe-aan.html and http://www.iphoneclub.nl/154467/ook-sporen-van-carrier-iq-gevonden-in-ios/

For the Apple folks: http://www.geek.com/articles/mobile/how-much-of-your-phone-is-yours-20111115/

And the discoverer’s site: http://androidsecuritytest.com/

Category:Linux, New World Order, Research, Software | Comments Off

How to install uTorrent Server with WebUI on Ubuntu without Wine

Sunday, 20. November 2011 13:17 | Author:

Over the years I’ve tried several torrent clients on my Ubuntu server.
Since it’s an old 1Ghz P4 work horse, I prefer to run things “headless”.

The username used here is “yourname”, replace that with your own user name.
You also might want to check on the utorrent website for an updated version first.

Step 1 – get the uTorrent archive and unpack


$ cd /home/yourname/
$ wget http://download.utorrent.com/linux/utorrent-server-3.0-25053.tar.gz
$ tar xzf utorrent-server-3.0-25053.tar.gz

Check the unpacked directory with the “ls” command, there should be a folder called “utorrent-server-v3_0″.

Step 2 – create a startup script

The script below is the startup script you need to run utserver automatically on startup.
Credit for the script goes to simonbcn.

Get the script here, and save it as /etc/init.d/utserver

Don’t forget to modify the CHDIR and NAME values in the script!

In our case, the CHDIR would be “/home/yourname/utorrent-server-v3_0″ and the USER would be “yourname”

Step 3 – run the script on startup

Make it executable:


$ sudo chmod +x /etc/init.d/utserver

Tell your system to run this script on startup:


$ sudo update-rc.d utserver defaults

Now reboot your system to check if this works.
If all went well, you can access the WebGUI on http://yourserverip:8080/gui from inside your LAN.

Step 4 – configure uTorrent

Now next thing to do, is setup the uTorrent Sever in the Preferences window:

You will probably want to set a name, password and your own listening port for the WebGUI.
When you’re done, visit the new page and log in (in my case http://yourserverip:12090/gui).
Then configure the uTorrent Server to your liking!

Make sure your download directories are writable, most common errors have to do with file permissions!

Category:Linux | Comments (2)