- https://github.com/wbl/cpgb CPGB is the Curve Privacy Guard B, a secure replacement for GPG using ECC. (Status: Dead? last-update:2011)
- https://github.com/carlos8f/salty Alternative public key encryption using NaCl. (Status: Dead? last-update: 2016)
- https://github.com/TotalTechGeek/DiscreteCrypt This tool is an alternative to software like PGP, with a focus on Discrete Log Cryptography. The algorithm is currently in v2.2.5. (Status: Active)
- https://saltpack.org/ a modern crypto messaging format (Status: Active)
- https://github.com/stealth/opmsg opmsg is a replacement for gpg which can encrypt/sign/verify your mails or create/verify detached signatures of local files. (Status: Active)
Thanks to /u/zpoo32 for reporting several issues in this list!
- deemix: just the cli and the library
- deemix-pyweb: the app with a GUI
- deemix-server: just the server part of deemix-pyweb
Common steps :
- Install MSYS2-x86_64
- At the end of the installation, run it (either automatically or manually)
#!/bin/bash | |
##################################################################### | |
# Work-around for godeb issue | |
# assumes godeb is available using $GOPATH | |
# You can specify version on the command line, | |
# or else it will try and grab the latest | |
##################################################################### | |
set -e |
Warnung an alle, die dieses Gist finden: Ich habe hier nur dokumentiert, was ich im Rahmen einer Umstellung herausgefunden habe. Es gibt Garantie auf Richtigkeit der Informationen, Zusammenhänge oder ob das unter allen Umständen wie hier beschrieben funktioniert.
Debian stellt auf ein anderes System von Namen für Netzwerkinterfaces um. In Debian 9 gehen noch die alten, manuell festgelegten - was der Standard ist, wenn man von Debian 8 aktualisiert.
Ab Debian 10 wird dieses System, welches mit udev
und systemd
zusammen hängt, zum Standard.
Mit zless /usr/share/doc/udev/README.Debian.gz
kann man Debian-spezifische Informationen zu dem Thema finden.
Unter anderem auch, dass (und wie) man diesen Mechanismus in Debian 9 Stretch umgehen kann.
To correctly work with Anaconda on Powershell :
- Run the anaconda command :
C:\Users\elias\Anaconda3> cmd C:\Users\elias\Anaconda3\envs\py35\Scripts\activate.bat C:\Users\elias\Anaconda3\envs\py35\Scripts\activate.bat
Microsoft Windows [Version 10.0.14393]
(c) 2016 Microsoft Corporation. All rights reserved.
- Activate your env :
/* Space out content a bit */ | |
body { | |
padding-top: 20px; | |
padding-bottom: 20px; | |
} | |
/* Everything but the jumbotron gets side spacing for mobile first views */ | |
.header, | |
.marketing, | |
.footer { |
Matrix is:
an open standard for decentralised communication, providing simple HTTP APIs and open source reference implementations for securely distributing and persisting JSON over an open federation of servers.
It's pretty fantastic, if you think on the massive problem of fragmentation all across the web. They've created an easy to use API, and you can do a kludgy test using curl from the terminal (*nix
, mac, win). See: http://matrix.org/docs/howtos/client-server.html
It's pretty straightforward to do a quick test. I have an account at https://matrix.org / https://vector.im, so I used that to get a token.
# This file describes the network interfaces available on your system | |
# and how to activate them. For more information, see interfaces(5). | |
source /etc/network/interfaces.d/* | |
# The loopback network interface | |
auto lo | |
iface lo inet loopback | |
# The primary network interface |
package main | |
import ( | |
"bufio" | |
"io/ioutil" | |
"os/signal" | |
//"syscall" | |
"fmt" | |
"log" | |
"os" |