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
#!/usr/bin/env bash | |
# | |
# Usage: watch.sh "<command>" [interval] | |
# https://stackoverflow.com/questions/9574089/os-x-bash-watch-command | |
pid=$$ | |
command="$1" | |
# default interval of 2 seconds | |
interval="${2:-2}" |
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
Show hidden characters
{ | |
"name": "Debian", | |
"image": "mcr.microsoft.com/devcontainers/base:bookworm", | |
"customizations": { | |
"vscode": { | |
"extensions": [ | |
"fwcd.kotlin", | |
"vscjava.vscode-java-pack" | |
] | |
} |
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 http = require('http'); | |
const server = http.createServer(async function(req, res) { | |
const buffers = []; | |
for await (const data of req) { | |
buffers.push(data); | |
} | |
let body = null; | |
if (buffers.length > 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/bash | |
## Create the response FIFO | |
rm -f response | |
mkfifo response | |
function handle_GET_home() { | |
RESPONSE=$(cat home.html | \ | |
sed "s/{{$COOKIE_NAME}}/$COOKIE_VALUE/") | |
} |
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
#!/usr/bin/env bash | |
set -e | |
CCH23_PORT="${1:?port argument is required}" | |
NAMESPACE="cch23-codeman99" | |
LOGIN_EMAIL="[email protected]" | |
LOGIN_PASSWORD="cch23" | |
SERVER_JSON_TMP="$(mktemp server-XXX.json)" |
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
hello: hello.o | |
ld hello.o -o hello -s -n | |
hello.o: hello.s | |
as hello.s -o hello.o | |
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
#!/usr/bin/env node | |
const [n, u] = process.argv.slice(2); | |
const t = parseFloat(n); | |
function kelvin(value) { | |
const sunK = 5778.0; | |
const sunCodys = 1_000_000_000.0; | |
return (value / sunK) * sunCodys; |
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
chimera-*.pub | |
chimera-linux-*.tar.gz | |
sha256sums.txt | |
sha256sums.txt.minisig |
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
function devopen() { | |
local workspace_folder="$(readlink -f "$1")" | |
if [ -d "$workspace_folder" ]; then | |
local wsl_path="$(wslpath -w "$workspace_folder")" | |
local path_id=$(printf "%s" "$wsl_path" | xxd -ps -c 256) | |
code --folder-uri "vscode-remote://dev-container%2B${path_id}/workspaces/$(basename "$workspace_folder")" | |
else | |
echo "Usage: devopen <directory>" 1>&2 |
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
[alias] | |
can = commit --amend --no-edit --no-verify | |
l = branch -vv | |
s = status --short --branch | |
u = remote update | |
whatadded = log --diff-filter=A | |
m = merge | |
[am] | |
threeway = true | |
[color] |
NewerOlder