I use Ubuntu’s Uncomplicated firewall because it is available on Ubuntu and it's very simple.
if ufw is not installed by default be sure to install it first.
PREFIX=$HOME | |
VERSION=1.2.3 | |
# Install Protocol Buffers | |
wget http://protobuf.googlecode.com/files/protobuf-2.4.1.tar.bz2 | |
tar -xf protobuf-2.4.1.tar.bz2 | |
cd protobuf-2.4.1 | |
./configure --prefix=$PREFIX | |
make | |
make install |
-- modified on 21 Feb 2013 by Daryl Manning | |
set thePath to (path to desktop as Unicode text) & "Things2Taskpaper.taskpaper" | |
set thingsToDoFile to (open for access file thePath with write permission) | |
set eof of thingsToDoFile to 0 | |
set cr to ASCII character 10 | |
tell application "Things" | |
-- Export to-dos from Inbox | |
write "Inbox:" & return to thingsToDoFile as «class utf8» |
Short version: I strongly do not recommend using any of these providers. You are, of course, free to use whatever you like. My TL;DR advice: Roll your own and use Algo or Streisand. For messaging & voice, use Signal. For increased anonymity, use Tor for desktop (though recognize that doing so may actually put you at greater risk), and Onion Browser for mobile.
This mini-rant came on the heels of an interesting twitter discussion: https://twitter.com/kennwhite/status/591074055018582016
### | |
### | |
### UPDATE: For Win 11, I recommend using this tool in place of this script: | |
### https://christitus.com/windows-tool/ | |
### https://github.com/ChrisTitusTech/winutil | |
### https://www.youtube.com/watch?v=6UQZ5oQg8XA | |
### iwr -useb https://christitus.com/win | iex | |
### | |
### |
#!/bin/bash | |
# | |
# When you are working on your macbook sitting in cafe and you have to go pee, | |
# you need some way to guard you machine. | |
# | |
# Start this script, remove any earphones, and go do the job. | |
# The assumption is the thief will close the lid of the laptop before taking it away. | |
# This script detects the closing of the lid and plays some loud audio that will | |
# likely distract the thief and/or grab attention of nearby people, making the |
#!/bin/bash | |
cd /home/dylan/radio/fireoc | |
while [ -f run.me ] | |
do | |
#/usr/bin/sox -t alsa default audio/recording.wav silence 1 0.1 5% 1 1.0 5% | |
/usr/bin/sox -t alsa default audio/recording.wav silence 1 0.2 1% 1 3.0 1% | |
#/usr/bin/sox -t alsa default audio/recording.wav silence 1 00:00:00.5 -45d -1 00:00:00.5 -45d | |
if [ -s audio/recording.wav ] | |
then | |
DATE=$(date +%s) |
Cloud-Init is the defacto multi-distribution package that handles early initialization of a virtual machine instance. Using Cloud-Init, one can configure network
--- wsjtx-2.1.0-rc5/src/wsjtx/widgets/logqso.cpp 2019-04-29 11:25:43.000000000 -0400 | |
+++ wsjtx/widgets/logqso.cpp 2019-02-26 09:41:31.736728126 -0500 | |
@@ -1,12 +1,9 @@ | |
#include "logqso.h" | |
-#include <random> | |
-#include <limits> | |
#include <QString> | |
#include <QSettings> | |
#include <QStandardPaths> |