From 29a7a67295781b1e3ca0ae5e29b72050f988a413 Mon Sep 17 00:00:00 2001
From: Mart Lubbers
Date: Fri, 17 Oct 2014 11:03:50 +0200
Subject: [PATCH] cleaned up some data
---
archive/nsa-dropbox.html | 46 ++++++
archive/wlan-debian.html | 78 ++++++++++
archive/youtube-term.html | 31 ++++
hashes.txt | 7 +-
index.html | 31 ++--
style.css | 303 --------------------------------------
6 files changed, 173 insertions(+), 323 deletions(-)
create mode 100644 archive/nsa-dropbox.html
create mode 100644 archive/wlan-debian.html
create mode 100644 archive/youtube-term.html
diff --git a/archive/nsa-dropbox.html b/archive/nsa-dropbox.html
new file mode 100644
index 0000000..921e78e
--- /dev/null
+++ b/archive/nsa-dropbox.html
@@ -0,0 +1,46 @@
+
+
+ Use any untrusted cloud storage with encryption
+
+
+
+
PREREQUISITES
+ Install encfs and fuse
+
# apt-get install fuse encfs
+ Install a cloud service(copy.com used here)(assuming ~/bin is in your path and running on a 64bits machine)
+ When using a different architecture just change x86_64 to x86 or armv6h in the client install script
+ If ~/bin is not in your path add to your bashrc(example using user: test):
+
PATH=$PATH:/home/test/bin
+ Download and install the copy client for linux
+
+ This creates a setup that does this automatically in the future
+ Let the daemon and the encfs autostart when you and only you are logged in by adding this to ~/.bashrc
+
+ Congratulations your setup is working.
+ When you want to stop the daemon you can kill the pid given by ~/.copy.pid.
+ From now on your computer or server will ask one time for you password when the first bash starts in your account.
+
+
NOTES
+
This could work with any cloud service, just mount the folder it wil sync first with encfs
+
+
diff --git a/archive/wlan-debian.html b/archive/wlan-debian.html
new file mode 100644
index 0000000..8f35522
--- /dev/null
+++ b/archive/wlan-debian.html
@@ -0,0 +1,78 @@
+
+
+ Automatic wifi without heavy network manager on debian
+
+
+
+
PREREQUISITES
+
Install wpa_supplicant and wireless-tools(standard in most distros).
+
# apt-get install wireless-tools wpa_supplicant
+
+ Identify your wifi controller. This can usually be found by typing
+
$ iwconfig
+
+ Locate all the config files for your desired networks. Mine are placed in /etc/network/wifi/.conf. More info on creating configs in the end of the file.
+
+
INSTALLATION
+
Create the SSID selection script.
+ I've put mine in /etc/network/wifi/select
+
+ If you don't want your password in a config you can also use a hash generated by this command. (Don't forget to remove it from ~/.bash_history afterwards)
+
+ You should replace the plaintext string with: "hash:[HASHOUTPUT]"
+ note: don't use quotes.
+
+
+
diff --git a/archive/youtube-term.html b/archive/youtube-term.html
new file mode 100644
index 0000000..6f69543
--- /dev/null
+++ b/archive/youtube-term.html
@@ -0,0 +1,31 @@
+
+
+ Play youtube videos on a headless server
+
+
+
+ Download the get_flash_videos latest version:
+
+ Create a small script that combines these with vlc by adding this to bashrc or a shellscript in PATH the flag -A alsa could be different(when usig pulseaudio it can be omitted):
+
+function ytview {
+ if [ "$#" -ne "1" ]; then
+ echo "usage $0 yturl"
+ else
+ get_flash_videos -q -f - $1 | cvlc -A alsa -V aa -
+ fi
+}
+