-
Strom ist sehr dünn. Deshalb braucht man für Strom auch keinen Schlauch.
Er geht durch einfachen Draht, so dünn ist er.
-
Mit Holz kann man keinen Strom übertragen. Wahrscheinlich saugt Holz ihn auf. Mit Kunststoff ist es genauso.
-
Wenn Strom nicht gebraucht wird, ist er nicht dünn. Im Gegenteil: er scheint
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
[CmdletBinding()] | |
Param ( | |
[Parameter(Position=1,Mandatory=$true)] | |
[string] | |
$Word, | |
[Parameter(Position=2)] | |
[byte[]] | |
$FixedSalt | |
) |
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
#!/usr/bin/env python3 | |
import base64 | |
from fnmatch import fnmatch | |
import io | |
import os | |
import sys | |
import subprocess | |
import tempfile | |
import time | |
import urllib.parse |
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
(module USB_Mini-B_KLS1-229-5FA (layer F.Cu) (tedit 60B3C276) | |
(descr https://img80002547.weyesimg.com/uploads/www.klselectronic.com/addon/15705980428308.pdf) | |
(tags "usb mini receptacle") | |
(fp_text reference REF** (at 0 -5.35) (layer F.SilkS) | |
(effects (font (size 1 1) (thickness 0.15))) | |
) | |
(fp_text value %R (at 0 1.05) (layer F.Fab) | |
(effects (font (size 1 1) (thickness 0.15))) | |
) | |
(fp_line (start -4.65 6.775) (end -4.65 -3.875) (layer F.CrtYd) (width 0.05)) |
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
# released under CC0: https://creativecommons.org/publicdomain/zero/1.0/ | |
from decimal import Decimal | |
DEFAULT_TOLERANCE = "20" | |
COLOR_ALIASES = { | |
# alternative names/spellings | |
"grey": "gray", | |
"purple": "violet", |
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
/^[^ ]/{printage = 0;} /PATTERN/{printage = 1;} { if (printage) { print $0; } } | |
Example: | |
awk '/^[^ ]/{printage = 0;} /^interface Vlan/{printage = 1;} { if (printage) { print $0; } }' configfile |
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
// unit: 1mm | |
key_thickness = 2.25; | |
bow_width = 25.5; | |
bow_corner_radius = 6.0; | |
bow_corner_advance = 12.25; | |
bow_curve_advance = 10.0; | |
bow_curve_radius = 3.0; | |
bow_curve_outer_offset = 3.25; | |
stop_width = 13.0; | |
stop_advance = 5.517; |
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
// unit: 1mm | |
key_thickness = 2.26; | |
bow_width = 25.5; | |
bow_corner_radius = 6.0; | |
bow_corner_advance = 12.25; | |
bow_curve_advance = 10.0; | |
bow_curve_radius = 3.0; | |
bow_curve_outer_offset = 3.25; | |
stop_width = 13.0; |
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
#!/usr/bin/env python3 | |
# | |
# MDS to standard MIDI file converter | |
# | |
# see also http://www.vgmpf.com/Wiki/index.php?title=MDS | |
# | |
import argparse | |
import io | |
import struct | |
from typing import BinaryIO, List, Optional |
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
// paste this into the JavaScript console while Hetzner's noVNC is open | |
RFB.messages.keyEvent(rfb._sock, XK_Alt_L, 1); | |
RFB.messages.keyEvent(rfb._sock, XK_Sys_Req, 1); | |
// raise elephants here as required | |
RFB.messages.keyEvent(rfb._sock, XK_9, 1); | |
RFB.messages.keyEvent(rfb._sock, XK_9, 0); | |
RFB.messages.keyEvent(rfb._sock, XK_H, 1); | |
RFB.messages.keyEvent(rfb._sock, XK_H, 0); |