ALT-Insert
in Fensterverwaltung -> Tastatur.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Checkout: WithExample.inverse_with | |
# | |
defmodule WithExample do | |
# Helper functions | |
def ok(result), do: {:ok, result} | |
def error(error), do: {:error, error} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Ubuntu 17.04 (Zesty Zapus) | |
# | |
# Basic packages i usually install. | |
# | |
# Author: Julius Beckmann <[email protected]> | |
# | |
# Upgraded Script from 16.04: https://gist.github.com/h4cc/fe48ed9d85bfff3008704919062f5c9b | |
# Upgraded Script from 14.04: https://gist.github.com/h4cc/7be7f940325614dc59fb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Wissensfragen | |
Alexa, warum ist der Himmel blau? | |
Alexa, wie hoch ist der Mount Everest? | |
Alexa, was ist die Hauptstadt von ? | |
Alexa, was war das erste Album von ? | |
Alexa, was ist die Quadratwurzel von 64? | |
Alexa, wer ist der Sänger von ? | |
Alexa, wie weit ist es von hier bis ? GEHT NICHT | |
Alexa, was ist die Definition von paradox? |
wget -O "KMbeuUXv1_11-EFIGS.tgz" "https://o.cses.konicaminolta.com/file/Default.aspx?FilePath=DL/201605/30111732/KMbeuUXv1_11%20EFIGS.tgz"
tar xfvz KMbeuUXv1_11-EFIGS.tgz
cd KMbeuUXv1_11\ EFIGS/
sudo ./install.pl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Return values | |
# What is the difference here? | |
Logger.warn("Something went wrong!") | |
# and | |
:ok = Logger.warn("Something went wrong!") | |
# What will happen when that logger is added? | |
def do_somtething(), do: {:ok, 42} |
Source: https://ma.ttias.be/googles-quic-protocol-moving-web-tcp-udp/
- TCP has Handshakes and slow TLS negotiation.
- TCP has a "synchronous nature".
- QUIC builds on UDP and tries to be faster than TCP.
- It may easier to deploy a new protocol, than improving existing TCP.
- QUIC adopts well to HTTP2.
- QUIC provides:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
git shortlog -sn | cut -f2 | sort --ignore-case > CONTRIBUTORS |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Ubuntu 16.06 LTS (Xenial Xerus) | |
# | |
# Basic packages i usually install. | |
# | |
# Author: Julius Beckmann <[email protected]> | |
# | |
# Upgraded Script from 14.04: https://gist.github.com/h4cc/7be7f940325614dc59fb | |
# |