# With wget
sh -c "$(wget -O- https://raw.githubusercontent.com/romkatv/zsh-bin/master/install)"
# With curl
sh -c "$(curl -fsSL https://raw.githubusercontent.com/romkatv/zsh-bin/master/install)"
This file contains 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
# Set up Huion tablet | |
xsetwacom --set "Tablet Monitor Pad pad" Button 1 "key +ctrl +z -z -ctrl" | |
xsetwacom --set "Tablet Monitor Pad pad" Button 2 "key +ctrl +tab -tab -ctrl" | |
xsetwacom --set "Tablet Monitor Pad pad" Button 8 "key shift" | |
xsetwacom --set "Tablet Monitor Pad pad" Button 9 "key ctrl" | |
xsetwacom --set "Tablet Monitor Pad pad" Button 10 "key 1" | |
xsetwacom --set "Tablet Monitor Pad pad" Button 11 "key 3" | |
xsetwacom --set "Tablet Monitor Pad pad" Button 12 "key 0" |
This file contains 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
# THIS FILE WAS AUTOMATICALLY GENERATED | |
# | |
# This is the full reverse DNS hosts table for SHERNET (AS5664) | |
# The data contained in this file was obtained from various public sources | |
# | |
# Please use with care :) | |
142.55.0.1 mi-a303-border-be99.internal | |
142.55.0.2 mi-a303-fw-outside.internal | |
142.55.0.5 oa-pim-rp.internal |
This file contains 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/bash | |
set -e | |
KEY=$(wg genkey); echo "priv: $KEY"; echo "pub: $(echo $KEY | wg pubkey)" |
This file contains 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
# Byte-compiled / optimized / DLL files | |
__pycache__/ | |
*.py[cod] | |
*$py.class | |
# C extensions | |
*.so | |
# Distribution / packaging | |
.Python |
This file contains 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
const float maxOpacity = 0.25; | |
const float zoom = 0.75; | |
const int spacing = 1; | |
void mainImage( out vec4 fragColor, in vec2 fragCoord ) | |
{ | |
vec3 col = vec3(1) - (vec3(max(cos(fragCoord.x * zoom) + cos(fragCoord.y * zoom) - 1.0, 0.0)) * maxOpacity); | |
fragColor = vec4(col,1.0); | |
} |
This file contains 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 | |
# KB9MWR 07/2019 amprnet routing including rules. | |
# Uses ampr-ripd 1.16.3 by Marius, YO2LOJ | |
# Further explained at: | |
# http://www.qsl.net/kb9mwr/wapr/tcpip/ampr-ripd.html | |
################################################################## | |
### ENABLE IP FORWARDING ### | |
sysctl -w net.ipv4.ip_forward=1 | |
######################################## | |
### ENABLE IPIP TUNNEL INTERFACE tunl0 ### |
This file contains 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
// Viewport dimensions | |
const vec2 viewport = vec2(1080.0, 720.0); | |
// Pixel scaling | |
const vec2 pixelScale = vec2(2.0, 2.0); | |
void mainImage( out vec4 fragColor, in vec2 fragCoord ) | |
{ | |
// Calculate the distance to merge pixels |
This file contains 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
{ | |
"basics": { | |
"name": "John Doe", | |
"label": "Programmer", | |
"picture": "", | |
"email": "[email protected]", | |
"phone": "(912) 555-4321", | |
"website": "http://johndoe.com", | |
"summary": "A summary of John Doe...", |
NewerOlder