openssl req -new -newkey rsa:2048 -days 3650 -nodes -x509 -subj "/CN=ca" -keyout ca.key -out ca.crt
openssl req -new -newkey rsa:2048 -days 3650 -nodes -x509 -subj "/CN=localhost" -config <(cat <<EOF
[req]
x509_extensions = v3_req
[v3_req]
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
| [user] | |
| name = Bastiaan van der Plaat | |
| email = [email protected] | |
| [core] | |
| autocrlf = false | |
| editor = nano | |
| [help] | |
| autocorrect = prompt | |
| [fetch] | |
| prune = true |
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
| [package] | |
| name = "bassietest" | |
| version = "0.1.0" | |
| edition = "2021" | |
| [dependencies] | |
| anyhow = "1.0" | |
| rustls = { version = "0.23", default-features = false, features = ["std", "tls12", "ring"] } | |
| webpki-roots = "0.26" |
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 | |
| # Simple WPT tests runner script for Ladybird | |
| # Usage: ./wpt-runner.py dom/ | |
| import subprocess | |
| import sys | |
| import requests | |
| from bs4 import BeautifulSoup | |
| bin_path = "Build/lagom/bin/Ladybird.app/Contents/MacOS" |
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
| #include <stdio.h> | |
| #include <stdint.h> | |
| #include <time.h> | |
| #ifdef _WIN32 | |
| #include <winsock2.h> | |
| #else | |
| #include <sys/socket.h> | |
| #include <netinet/in.h> | |
| #include <netdb.h> | |
| #include <unistd.h> |
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
| Hey Sinterklaas, | |
| Voor de liefhebber: | |
| be 1b 01 bf 00 80 ac 34 69 84 c0 74 03 aa eb f6 b4 09 ba 00 80 cd 21 b4 4c cd 21 3a 00 07 1d 0c 1b 02 05 08 08 1a 49 05 06 06 1d 03 0c 49 5b 59 5b 5a 49 41 01 1d 1d 19 1a 53 46 46 10 06 1c 1d 1c 47 0b 0c 46 0f 03 3b 0a 20 2b 39 39 19 50 59 56 1d 54 5b 5c 40 63 63 21 0c 10 49 03 0c 49 01 0c 0b 1d 49 01 0c 1d 49 05 06 06 0d 03 0c 49 0e 0c 1d 1b 06 02 02 0c 07 49 1f 08 07 49 0c 0c 07 0c 49 2b 08 1a 1a 00 0c 2b 28 3a 49 0d 0c 1b 49 39 05 08 1d 06 1a 45 49 41 01 1d 1d 19 1a 53 46 46 10 06 1c 1d 1c 47 0b 0c 46 50 3e 1c 03 01 21 0a 38 01 51 02 56 1d 54 5a 50 5d 51 40 63 3e 08 1d 49 05 0c 1c 02 49 07 1c 49 04 08 0e 49 03 0c 49 13 06 06 00 49 1f 06 06 1b 49 01 0c 04 49 0e 08 08 07 49 02 06 19 0c 07 49 1d 0c 1b 1e 00 03 05 49 03 0c 49 0d 08 1d 49 0c 00 0e 0c 07 05 00 03 02 49 07 00 0c 1d 49 1e 00 05 1d 49 0d 06 0c 07 52 49 41 01 1d 1d 19 1a 53 46 46 10 06 1c 1d 1c 47 0b 0c 46 5b 51 0f 06 0e 07 0e 26 24 31 2c 56 1d 54 51 5a 51 40 63 06 04 49 01 0c 1d 49 1d 06 0a 01 49 1e 08 1d 49 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
| { | |
| "name": "Stamlokaal", | |
| "version": "0.1.0", | |
| "author": "Bastiaan van der Plaat <[email protected]>", | |
| "fixtures": [ | |
| { | |
| "name": "led1x1", | |
| "label": "LED 1x1", | |
| "type": "p56led", | |
| "addr": 1 |
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
| const fs = require('fs'); | |
| const data = JSON.parse(fs.readFileSync('Saved Places.json').toString()); | |
| const favorites = data.features | |
| .filter(place => place.geometry.coordinates[0] != 0 && place.geometry.coordinates[1] != 0) | |
| .map(place => { | |
| return { | |
| name: place.properties.location.name, | |
| latitude: place.geometry.coordinates[1], | |
| longitude: place.geometry.coordinates[0], | |
| zoom: 17 |
Mady by Bastiaan van der Plaat
- Symbolic links and desktop:
- Taskbar: Drag quick launch items to desktop to create desktop symlink
- FileManger: Right click drag Windows like contextmenu to create shortcut
- Desktop: Reorder desktop items in a grid save x y location
- Desktop: A macOS like mission control function: window overview
- Maps: ip based geolocation, WiFi mac addresses based geolocation
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
| [package] | |
| name = "blink" | |
| version = "0.1.0" | |
| edition = "2021" | |
| # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | |
| [profile.dev] | |
| panic = "abort" |