06 Oct 2014

Electric Firearms (bullets/guns)

25 Jun 2014

'DIY: Hanging Tree Swing Using Slip Knots'

I used the running bowline knot (slip knot) and a buntline hitch knot:

13 Apr 2014

Power Button Ignores KDE’s Setting And Shutdowns (Slackware)

If your energy saving’s power button action setting for “When power button is pressed” in AC Power and Battery Power is being ignored, you can comment two lines in /etc/acpi/acpi_handler.sh to fix this issue:

Comment:

#      power) /sbin/init 0
#         ;;

Commented out /etc/acpi/acpi_handler.sh:

#!/bin/sh
# Default acpi script that takes an entry for all actions

IFS=${IFS}/
set $@

case "$1" in
  button)
    case "$2" in
#      power) /sbin/init 0
#         ;;
      *) logger "ACPI action $2 is not defined"
         ;;
    esac
    ;;
  *)
    logger "ACPI group $1 / action $2 is not defined"
    ;;
esac

No reboot necessary, it should be fixed instantly.

28 Mar 2014

Krita: Sketching and Painting Software

Krita is a KDE program for sketching and painting, offering an end–to–end solution for creating digital painting files from scratch by masters. Fields of painting that Krita explicitly supports are concept art, creation of comics and textures for rendering. Modelled on existing real-world painting materials and workflows, Krita supports creative working by getting out of the way and with a snappy response.

via Frequently Asked Questions

29 Jan 2014

Tunnel VNC of Real X Display Through SSH

Assuming the server is using the LightDM display manager and no users are logged in:

Run from server:

sudo /usr/bin/x11vnc -auth /var/run/lightdm/root/:0 -display :0

Run from client:

ssh -f -L 5900:localhost:5900 SERVERHOSTNAME -N -p 22
vinagre 127.0.0.1:5900

10 Jan 2014

Perl: Randomize-Shuffle Lines of a Text File

Perl script:

#!/usr/bin/env perl  
use strict;  
use warnings;  
use File::Slurp;  
use Try::Tiny;  

# Set the random seed  
srand (time ^ $$ ^ unpack "%L*", 'ps axww | gzip');  

unless ( @ARGV == 1 ) {  
  print "\nUsage: $0 filename > newfilename\n\n";  
  exit;  
}  

try {  
  my @lines = read_file( $ARGV[0] );  
  # Get random lines, write 'em out, mark 'em done.  
  while ( @lines ) {  
    my $line = splice(@lines, rand @lines, 1);  
    print $line;  
  }  
} catch { warn "*** $_"; };

05 Jan 2014

XBMC: Get List of Watched Files/Videos From Command Line
  1. Copy ‘/home/xbian/.xbmc/userdata/Database/MyVideos75.db’ from the XBMC machine to your local computer.

  2. Open with SQLite3:

     :~$ sqlite3 MyVideos75.db
    
  3. Select rows that have have a play count of more then 1 time:

     SELECT strFilename FROM files WHERE playCount > 0;
    

01 Jan 2014

XBMC: How to Remotely Start Playing a Media File From the Command Line Using the JSON API

Use the following script:

#!/bin/bash

## XBMC: Remotely Start Playing a Media File From the Command Line Using the JSON API

## Configure your XBMC RPC details here
XBMC_HOST=192.168.1.10
XBMC_PORT=8080
XBMC_USER=xbmc
XBMC_PASS=xbmc

# You should not have to touch anything below
ID=$1
if [ "$ID" == " ];
then
  echo "Syntax $0 </full/path/file.[mp4|mp3|etc]>"
  exit
fi

function xbmc_req {
  curl -s -i -X POST --header "Content-Type: application/json" -d "$1" http://$XBMC_USER:$XBMC_PASS@$XBMC_HOST:$XBMC_PORT/jsonrpc >/dev/null
}

echo -n "Opening video id $ID on $XBMC_HOST ..."
xbmc_req '{"jsonrpc": "2.0", "method": "Playlist.Clear", "params":{"playlistid":1}, "id": 1}';
xbmc_req '{"jsonrpc": "2.0", "method": "Playlist.Add", "params":{"playlistid":1, "item" :{ "file" : "'$ID'"}}, "id" : 1}';
xbmc_req '{"jsonrpc": "2.0", "method": "Player.Open", "params":{"item":{"playlistid":1, "position" : 0}}, "id": 1}';
echo " done."

thanks to this post, which it was based on.

30 Dec 2013

SQLite3 – Add or Remove NOT NULL Constraint on Existing Table Column
ALTER TABLE YourTable RENAME TO OldTable;
CREATE TABLE YourTable (/* old cols with new requirements */);
INSERT INTO YourTable SELECT * FROM OldTable;
DROP TABLE OldTable;
VACUUM;
.q

Source

29 Dec 2013

Debian/Ubuntu Howto Change the Default File Manager

From the command line:

sudo apt-get install exo-utils  
exo-preferred-applications

In the window that opens, click on Utilities and change it in the File Manager section.

source

16 Dec 2013

Betteridge’s law of news headlines - Wikipedia, the free encyclopedia

Betteridge’s law of headlines is an adage that states: “Any headline which ends in a question mark can be answered by the word no.” It is named after Ian Betteridge, a British technology journalist, although the general concept is much older. The observation has also been called “Davis’ law” or just the “journalistic principle”.

via Betteridge’s law of headlines - Wikipedia, the free encyclopedia

15 Dec 2013

List Of Waste-Water Treatment Technologies
<td style="width:1.25em;">
</td>

<td style="width:15em;">
  <ul>
    <li>
      <a href="https://en.wikipedia.org/wiki/Dissolved_air_flotation" title="Dissolved air flotation">Dissolved air flotation</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Distillation" title="Distillation">Distillation</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Desalination" title="Desalination">Desalination</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/EcocyclET_systems" title="EcocyclET systems">EcocyclET systems</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Electrocoagulation" title="Electrocoagulation">Electrocoagulation</a>
    </li>
    <li style="font-weight: bold; ">
      <a href="https://en.wikipedia.org/wiki/Electrodeionization" title="Electrodeionization">Electrodeionization</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Electrolysis" title="Electrolysis">Electrolysis</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Expanded_granular_sludge_bed_digestion" title="Expanded granular sludge bed digestion">Expanded granular sludge bed digestion</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Facultative_lagoon" title="Facultative lagoon">Facultative lagoon</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Fenton%27s_reagent" title="Fenton's reagent">Fenton&#8217;s reagent</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Fine_bubble_diffusers" title="Fine bubble diffusers">Fine bubble diffusers</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Flocculation" title="Flocculation">Flocculation</a> & <a href="https://en.wikipedia.org/wiki/Sedimentation" title="Sedimentation">sedimentation</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Flotation_process" title="Flotation process">Flotation process</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Froth_flotation" title="Froth flotation">Froth flotation</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Humanure" title="Humanure" class="mw-redirect">Humanure (composting)</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Imhoff_tank" title="Imhoff tank">Imhoff tank</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Iodine" title="Iodine">Iodine</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Ion_exchange" title="Ion exchange">Ion exchange</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Lamella_clarifier" title="Lamella clarifier">Lamella clarifier</a> (Inclined Plate Clarifier)<sup id="cite_ref-2" class="reference"><a href="#cite_note-2"><span>[</span>2<span>]</span></a></sup>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Living_machines" title="Living machines">Living machines</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Maceration_(sewage)" title="Maceration (sewage)">Maceration (sewage)</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Microbial_fuel_cell" title="Microbial fuel cell">Microbial fuel cell</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Media_filter" title="Media filter">Media filter</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Membrane_bioreactor" title="Membrane bioreactor">Membrane bioreactor</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Nanotechnology" title="Nanotechnology">Nanotechnology</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/NERV_(Reactor)" title="NERV (Reactor)" class="mw-redirect">NERV</a> (Natural Endogenous Respiration Vessel)
    </li>
  </ul>
</td>

<td style="width:1.25em;">
</td>

<td style="width:15em;">
  <ul>
    <li>
      <a href="https://en.wikipedia.org/wiki/API_oil-water_separator" title="API oil-water separator">Parallel plate oil-water separator</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Reed_bed" title="Reed bed">Reed bed</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Retention_basin" title="Retention basin">Retention basin</a>
    </li>
    <li style="font-weight: bold; ">
      <a href="https://en.wikipedia.org/wiki/Reverse_osmosis" title="Reverse osmosis">Reverse osmosis</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Rotating_biological_contactor" title="Rotating biological contactor">Rotating biological contactor</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Sand_filter" title="Sand filter">Sand filter</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Sedimentation" title="Sedimentation">Sedimentation</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Sedimentation_(water_treatment)" title="Sedimentation (water treatment)">Sedimentation (water treatment)</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Septic_tank" title="Septic tank">Septic tank</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Sequencing_batch_reactor" title="Sequencing batch reactor">Sequencing batch reactor</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Sewage_treatment" title="Sewage treatment">Sewage treatment</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Stabilization_pond" title="Stabilization pond">Stabilization pond</a>
    </li>
    <li>
      <a href="/w/index.php?title=Submerged_aerated_filter&action=edit&redlink=1" class="new" title="Submerged aerated filter (page does not exist)">Submerged aerated filter</a><sup id="cite_ref-3" class="reference"><a href="#cite_note-3"><span>[</span>3<span>]</span></a></sup>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Treatment_pond" title="Treatment pond">Treatment pond</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Thermal_hydrolysis" title="Thermal hydrolysis">Thermal hydrolysis</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Trickling_filter" title="Trickling filter">Trickling filter</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Sewage_treatment" title="Sewage treatment">soil bio-technology</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Ultrafiltration" title="Ultrafiltration">Ultrafiltration</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Ultraviolet_disinfection" title="Ultraviolet disinfection" class="mw-redirect">Ultraviolet disinfection</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Upflow_anaerobic_sludge_blanket_digestion" title="Upflow anaerobic sludge blanket digestion">Upflow anaerobic sludge blanket digestion</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Vacuum_evaporation" title="Vacuum evaporation">Vacuum evaporation</a>
    </li>
    <li>
      <a href="https://en.wikipedia.org/wiki/Wet_oxidation" title="Wet oxidation">Wet oxidation</a>
    </li>
  </ul>
</td>

19 Nov 2013

Francois Gissy hits 285 km/h on his rocket-powered bicycle

Francois Gissy hits 285 km/h on his rocket-powered bicycle

via Francois Gissy hits 285 km/h on his rocket-powered bicycle

10 Oct 2013

Bike+ light hybrid system unplugs the e-bicycle for a Prius-like ride

“In effect, the cyclist’s pedaling is a bit harder during easy stretches and easier during intense stretches, such as sustained ascents, making for a smoother, more uniform effort. A regenerative brake replaces the bike’s standard rear brake, adding another form of energy generation.”

Bike+ light hybrid system unplugs the e-bike for a Prius-like ride

via Bike+ light hybrid system unplugs the e-bike for a Prius-like ride

10 Sep 2013

‘3-Sweep’ Software Can Create 3D Models From a Single Photo

create 3D models from a single photo [Abstract]

via 3ders.org – ‘3-Sweep’ software can create 3D models from a single photo (video) | 3D Printer News & 3D Printing News.

10 Sep 2013

Key Patent Used for Selective Laser Sintering (3D Printing) Expiring in 2014

Key 3D printing patent:

Apparatus and method for producing parts with multi-directional powder delivery: Google or USPTO

Method and apparatus for producing parts by selective sintering patent: Google or USPTO

Discussion

Article

10 Sep 2013

Secret Warrants, NSA, PATRIOT Act, etc…

rsync.net Warrant Canary

via http://www.rsync.net/resources/notices/canary.txt

06 Sep 2013

Linux: Convert M4B Audio Books to MP3 or OGG on Debian or Ubuntu

MP3

$ sudo apt-get install faad lame
$ faad --stdio INPUT.m4b | lame --preset standard - OUTPUT.mp3

OGG

$ sudo apt-get install faad vorbis-tools
$ faad --stdio INPUT.m4b | oggenc -Q -q6 - -o OUTPUT.ogg

Thanks to https://www.linuxquestions.org/questions/linux-software-2/convert-m4b-to-mp3-batch-682854/ and http://robert.penz.name/94/convert-m4b-to-ogg-on-linux/

20 Jul 2013

Encrypted/Anonymous/Decentralized Internet Software List

Alternative Internet (Source, which is probably more up-to-date)

ABCDEFGHIJKLMNOPQRSTUVWXYZ

A

AnoNet

AnoNet is a decentralized friend-to-friend network built using VPNs and software BGP routers. anoNet works by making it difficult to learn the identities of others on the network allowing them to anonymously host IPv4 and IPv6 services)

B

BitPhone

BitPhone is a mobile communications device with the features of a modern smartphone built on top of decentralized BitCoin-style proof-of-work networking.

BitMessage

BitMessage is a P2P communications protocol used to send encrypted messages to another person or to many subscribers. It is decentralized and trustless, meaning that you need-not inherently trust any entities like root certificate authorities. See whitepaper

Books

Books are a stable, production tested communication protocol suitable for a wide range of information services.

buddycloud

buddycloud is a set of tools, open source software and protocols to help you build a distributed social network. All the code is on GitHub.

C

Camlistore

Camlistore is your personal storage system for life. It is an acronym for “Content-Addressable Multi-Layer Indexed Storage” and could be described as “Like git for all content in your life”

Commotion Wireless

Commotion Wireless is an open-source communication tool that uses mobile phones, computers, and other wireless devices to create decentralized mesh networks.

Cryptosphere

The Cryptosphere is a global peer-to-peer cryptosystem for publishing and securely distributing both data and HTML5/JS applications pseudonymously with no central point of failure. It’s built on top of the next-generation Networking and Cryptography (NaCl) library and the Git data model.

CryptAByte

CryptAByte CryptAByte.com is a free online drop box that enables secure (encrypted) message and file sharing over the web using a public-key infrastructure. Messages and files are encrypted using a public key and can only be decrypted using the passphrase entered when your key is created. Your data is never stored in plaintext, and is impossible to decrypt without your passphrase.

D

Diaspora*

Diaspora* is a free social network consisting of personal web server that implements a distributed social networking service. Diaspora* is a fun and creative community that puts you in control.

DeadC

DeadC Create a one-click expiring link

Drogulus

The Drogulus (WIP) is a programmable peer-to-peer data store. It’s an open, federated and decentralised system where the identity of users and provenance of data is ensured by cryptographically signing digital assets. Redecentralise Video interview

E

eDonkey network (eD2k)

eDonkey network is a decentralized, mostly server-based, peer-to-peer file sharing network best suited to share big files among users, and to provide long term availability of files

F

Firecloud

Firecloud is a P2P web publishing platform in your using Persona and WebRTC to work its magic.

Freenet

Freenet is free software which lets you anonymously share files, browse and publish “freesites” (web sites accessible only through Freenet) and chat on forums, without fear of censorship. Freenet is decentralised to make it less vulnerable to attack, and if used in “darknet” mode, where users only connect to their friends, is very difficult to detect.

Freifunk

Freifunk is a non-commercial initiative for free decentraliced wireless mesh networks. Technically Freifunk firmwares are based on OpenWRT and OLSR or B.A.T.M.A.N.

G

GNUnet

GNUnet is GNU’s framework for secure peer-to-peer networking that does not use any centralized or otherwise trusted services.

Grimwire

Grimwire is a browser OS which uses Web Workers for process isolation, and WebRTC for peer-to-peer communication.

Guifi

Guifi is a european (especially spanish) large network with over 22000 active nodes. Uses wifi in both infrastructure and mesh mode. Over 25km of fiber as well so far.

H

I

I2P

I2P is an anonymizing network, offering a simple layer that identity-sensitive applications can use to securely communicate. All data is wrapped with several layers of encryption, and the network is both distributed and dynamic, with no trusted parties.

J

K

Kademlia

Kademlia is a distributed hash table for decentralized peer-to-peer computer networks

Kune

Kune is based on Apache Wave and is a free/open source distributed social network focused on collaboration rather than just on communication.2 That is, it focuses on online real-time collaborative editing, decentralized social networking and web publishing, while focusing on workgroups rather than just on individuals.

L

LibreVPN

LibreVPN is a virtual mesh network using tinc plus configuration scripts that even let you build your own mesh VPN. It’s also IPv6 enabled.

M

Mixmaster

Mixmaster is a remailer network. It represents the second generation of remailers. Mixmaster can be used via a web sites like Anonymouse or as a stand-alone client.

Mixminion

Mixminion is a new remailer approach. The so-called type III remailer allows it to receive and send anonymous messages. However the development has stalled and the current software needs improvement.

Movim

Movim is a decentralized open source social network based on XMPP.

N

NameCoin

NameCoin is a decentralized naming system based on Bitcoin technology.

Nightweb

Nightweb connects your Android device or PC to an anonymous, peer-to-peer social network. You can write posts and share photos, and your followers will retrieve them using BitTorrent running over the I2P anonymous network. It is still experimental.

O

OneTime (1ty)

1TY is “One Time Self Destructing Links For Sharing Sensitive Information”

OpenNIC

OpenNIC Project is an alternative DNS provider that is open and democratic.

Osiris

Osiris is software for decentralized portal, managed and shared via P2P between members.

P

P

P is a small JavaScript library for creating peer-to-peer applications in browsers. It allows for transitive connections across peers which makes certain network topologies, such mesh networks, easy to establish.

PeerCDN

PeerCDN automatically serves a site’s static resources (images, videos, and file downloads) over a peer-to-peer network made up of the visitors currently on the site.

PeerServer

PeerServer is a peer-to-peer client server using WebRTC, where your browser acts as a server for other browsers across WebRTC peer-to-peer data channels.

Phantom

Phantom is (was?) a system for generic, decentralized, unstoppable internet anonymity

Project Byzantium

Project Byzantium – Ad-hoc wireless mesh networking for the zombie apocalypse. The goal of Project Byzantium is to develop a communication system by which users can connect to each other and share information in the absence of convenient access to the Internet. This is done by setting up an ad-hoc wireless mesh network that offers services which replace popular websites often used for this purpose, such as Twitter and IRC.

Project Meshnet

Project Meshnet aims to build a sustainable decentralized alternative internet. Used by Hyperboria and built on CJDNS.

pubsubhubbub

pubsubhubbub is a simple, open, server-to-server webhook-based pubsub (publish/subscribe) protocol for any web accessible resources.

pump.io

pump;io Described as “a stream server that does most of what people really want from a social network”. It’s a social stream with support for federated comunication.

Q

qaul.net

qaul.net implements a redundant, open communication principle, in which wireless-enabled computers and mobile devices can directly form a spontaneous network. Chat functions, file sharing and voice chat is possible independent of internet and cellular networks.

Quick mesh project

Quick mesh project is an openwrt based mesh networking firmware. Can be installed on any openwrt supported system. Auto configures any needed connections, auto detects internet connections and aunounces them. Native IPv6 support with IPv4 tunnels for current networking support.

R

Retroshare

RetroShare is an open source, decentralised communication platform. It lets you chat and share with friends and family, with a web-of-trust to authenticate peers.

S

Serval Project

The Serval Project lets mobile phones make phone calls to each other peer-to-peer without a base station.

Sneer

Sneer is a free and open source sovereign computing platform. It runs on your Windows, Mac or Linux machine (like Skype or Firefox) using the Java VM. It enables you to create your personal cluster by sharing hardware resources (CPU, disk space, network bandwidth) with your friends, host your own social network, information and media, create sovereign applications and share them with others, download and run sovereign applications created by others. You can do all these things directly with your peers, in an autonomous, sovereign way, without depending on online service providers such as email providers, Google, Facebook, etc.

Syndie

Syndie is an open source system for operating distributed forums offering a secure and consistent interface to various anonymous and non-anonymous content networks.

StatusNet

StatusNet is an open source microblogging platform that supports federation.

T

Tahoe-LAFS

Tahoe-LAFS is a Free and Open cloud storage system. It distributes your data across multiple servers. Even if some of the servers fail or are taken over by an attacker, the entire filesystem continues to function correctly, preserving your privacy and security.

Tavern

Tavern is a distributed, anonymous, unblockable network designed to ensure that no one is silenced, censored, or cut off from the rest of the world

Telehash

Telehash a new encrypted P2P JSON-based protocol enabling developers to quickly build apps that are distributed and private (see v2 of the spec)

Tent protocol

Tent is a protocol that puts users back in control. Users should control the data they create, choose who can access it, and change service providers without losing their social graph. Tent is a protocol, not a platform. Like email, anyone can build Tent apps or host Tent servers, all Tent servers can talk to each other, and there is no central authority to restrict users or developers.

The FNF

The FNF is the free network foundation: teaching how to build wireless community networks.

Tidepools

Tidepools is being developed within the Red Hook Mesh Network, for addressing local, social incentives for mesh use. An Open Source, Collaborative, Mobile Mapping & Social Hub, Reflecting Community Needs & Culture through Custom Apps, Time-based Maps, & Data Feeds.

Tonika

Tonika is a (digital) social network, which (by design) restricts direct communication to pairs of users who are friends, possesses many of the security properties (privacy, anonymity, deniability, resilience to denial-of-service attacks, etc.) that human sociaties implement organically in daily life.

Tor

Tor protects you by bouncing your communications around a distributed network of relays run by volunteers all around the world: it prevents somebody watching your Internet connection from learning what sites you visit, and it prevents the sites you visit from learning your physical location.

Tox

Tox The goal of this project is to create a configuration free p2p skype replacement.

Tribler

Tribler Aims to create a censorship-free Internet. Already deployed, used and incrementally improved for 8-years. Tribler uses an upcoming IETF Internet Standard for video streaming and is backward compatible with Bittorrent. Future aim is using smartphones to even bypass Internet kill switches. An early proof-of-principle Tribler-mobile is available on the Android Market. Key principle: ‘the only way to take it down is to take The Internet down’. Overview paper.

Truecrypt

TrueCrypt Free open source disk encryption software for Windows 7/Vista/XP/Mac OSX/ & Linux. Creates a virtual encrypted disk within a file and mounts it as a real disk. Encrypts an entire partition or storage device such as USB flash drive or hard drive. Encrypts a partition or drive where Windows is installed (pre-boot authentication). Encryption is automatic, real-time (on-the-fly) and transparent. Parallelization and pipelining allow data to be read and written as fast as if the drive was not encrypted. Encryption can be hardware-accelerated on modern processors. Provides plausible deniability, in case an adversary forces you to reveal the password: Hidden volume (steganography) and hidden operating system. More information on documentation page

U

Unhosted

Unhosted – also known as “serverless”, “client-side”, or “static” web apps, unhosted web apps do not send your user data to their server. Either you connect your own server at runtime, or your data stays within the browser.

V

Vole

Vole is a web-based social network that you use in your browser, without a central server. It’s built on the power of Bittorrent, Go and Ember.js. Uses bittorrent sync.

W

Webfist

Webfist is a fallback for when providers don’t support WebFinger natively. It lets you do WebFinger lookups for email addresses even if the owner of the domain name isn’t playing along. WebFist works because of a judo move on an existing infrastructure: DKIM.

Wave / Apache Wave

Wave is a distributed, near-real-time, rich collaboration platform that allows users to work together in new and exciting ways. Wave allows for flexible modes of communication, blending chat, email and collaborative document editing in to one seamless environment.

X

Y

YaCy

YACY is a peer-to-peer search that anyone can use to build a search portal for their intranet or to help search the public internet. When contributing to the world-wide peer network, the scale of YaCy is limited only by the number of users in the world and can index billions of web pages. It is fully decentralized, all users of the search engine network are equal, the network does not store user search requests and it is not possible for anyone to censor the content of the shared index.

Z

ZeroTier One

ZeroTier One is an open source application that creates huge distributed Ethernet networks. It makes use of supernodes, but these run the same code as ordinary nodes and end-to-end encryption protects all unicast traffic. Semi-commercial with a freemium model.

Currencies

Bitcoin

BitCoin is a digital currency, a protocol, and a software that enables it. Decentralized crypto-currency

Litecoin

LiteCoin is a peer-to-peer Internet currency that enables instant payments to anyone in the world (was based on Bitcoin)

See Namecoin above

PeerCoin/PPCoin

PeerCoin/PPCoin is the first known cryptocurrency based on an implementation of a combined proof-of-stake/proof-of-work system

Others

See bitcointalk for a list of others.

18 Jul 2013

How the Tesla Model S is Made — Behind The Scenes

How the Tesla Model S is Made

via How the Tesla Model S is Made — Behind The Scenes — The Window – Wired – YouTube.