Small utility for pretty-printing numbers in binary, useful to manually decoding register without counting digits by hand.
; regbits 768
Original report
Hier mal ein einfacher Aufschlag einer OpenAPI Spezifikation für die von Lilith Wittmann entdeckte API der neuen BMVI Autobahn-Info App
Die Definition basiert auf den Beispieldaten einiger Testaufrufe und wird sicher unvollständig und evtl teilweise inkorrekt sein...
Das BMVI hat eine völlig nutzlose App gebaut. Eine Autobahn-Info App.
Nein, es gibt jetzt nämlich eine offene API für aktuelle Verwaltungsdaten in Bezug auf Baustellen-Informationen, Webcams, Parkplätze, … - bestimmt für jemand nützlich.
Hier gibt es eine OpenAPI Spec von @creckord: https://gist.github.com/creckord/a2e09267f5fdfadc2cd75eedb3182b8a
---------------------- | |
-- #example ytdl_preload.conf | |
-- # make sure lines do not have trailing whitespace | |
-- # ytdl_opt has no sanity check and should be formatted exactly how it would appear in yt-dlp CLI, they are split into a key/value pair on whitespace | |
-- # at least on Windows, do not escape '\' in temp, just us a single one for each divider | |
-- #temp=R:\ytdltest | |
-- #ytdl_opt1=-r 50k | |
-- #ytdl_opt2=-N 5 | |
-- #ytdl_opt#=etc |
@ECHO OFF | |
:: This file enables the touchscreen when disabled and disables the touchscreen when enabled | |
:: There is an annoying bug fixed by using AutoIt to unpress the Windows Key | |
:: Make sure devcon_x64.exe and autoit3_x64.exe are present for x64 | |
:: devcon_x86.exe and autoit3.exe could be used for x86, but you need to replace | |
:: DEVCON_BINARY and AUTOIT_BINARY below | |
:: These binaries need to be placed in the location pointed to by DEVCON_DIR for the script |
# Generate a new pgp key: (better to use gpg2 instead of gpg in all below commands) | |
gpg --gen-key | |
# maybe you need some random work in your OS to generate a key. so run this command: `find ./* /home/username -type d | xargs grep some_random_string > /dev/null` | |
# check current keys: | |
gpg --list-secret-keys --keyid-format LONG | |
# See your gpg public key: | |
gpg --armor --export YOUR_KEY_ID | |
# YOUR_KEY_ID is the hash in front of `sec` in previous command. (for example sec 4096R/234FAA343232333 => key id is: 234FAA343232333) |
[ | |
{ | |
"conference": "32C3", | |
"slug": "32c3", | |
"author": "CCC", | |
"description": "Live-Streaming vom 32C3", | |
"keywords": "32C3, Hacking, Chaos Computer Club, Video, Music, Podcast, Media, Streaming, Hacker, Hamburg", | |
"startsAt": "2015-12-27T05:00:00+0000", | |
"endsAt": "2015-12-30T20:00:00+0000", | |
"groups": [ |
#!/bin/sh | |
# mingw | |
PREFIX="/usr/local/mingw" | |
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
cd $DIR | |
mkdir source | |
mkdir $PREFIX |