- Compute Platform
- Package Management
- Ingress Controller
- haproxy
View test.ps1
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 the subscription you want to work with | |
az account set --subscription <subscription_name> | |
# Provide the name of your resource group and private endpoint network interface | |
resource_group="<resource_group_name>" | |
network_interface="<network_interface_name>" | |
# Get the private endpoints attached to the specified network interface | |
private_endpoints=$(az network private-endpoint list --resource-group $resource_group --query "[?networkInterfaces[?id=='$network_interface']].{Id:id}" --output tsv) |
View toolchain.md
View main.go
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
package main | |
import ( | |
"bufio" | |
"bytes" | |
"fmt" | |
"math/rand" | |
"os" | |
"reflect" | |
"strconv" |
View test.bash
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 -x | |
git --version | |
git config --global core.autocrlf false | |
git config --global core.eol crlf | |
cd /tmp | |
rm -rf lua-filters/ | |
git clone https://github.com/pandoc/lua-filters |
View init.lua
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
-- REQ: Configures neovim using lua. <skr 2023-04-30> | |
-- SEE: https://neovim.io/doc/user/lua-guide.html <> | |
local call = vim.call | |
local cmd = vim.cmd | |
local set = vim.o | |
-- SEE: https://github.com/junegunn/vim-plug <> | |
cmd [[ |
View gist:36d0a62033cf159fb10f0cb3abdc8d38
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
$ make spec | |
Using /usr/bin/llvm-config-13 [version= 13.0.0] | |
g++ -c -o src/llvm/ext/llvm_ext.o src/llvm/ext/llvm_ext.cc -I/usr/lib/llvm-13/include -std=c++14 -fno-exceptions -D_GNU_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS | |
CC="cc -fuse-ld=lld" CRYSTAL_CONFIG_BUILD_COMMIT="a3ee70ca0" CRYSTAL_CONFIG_PATH='$ORIGIN/../share/crystal/src' SOURCE_DATE_EPOCH="1641471908" ./bin/crystal build -D strict_multi_assign -Dwithout_interpreter --exclude-warnings spec/std --exclude-warnings spec/compiler --exclude-warnings spec/primitives -o .build/all_spec spec/all_spec.cr | |
ld.lld: error: cannot open _main.o: No such file or directory | |
ld.lld: error: cannot open S-lice40U-I-nt841.o: No such file or directory | |
ld.lld: error: cannot open P-ointer40U-I-nt841.o: No such file or directory | |
ld.lld: error: cannot open A-rgumentE-rror.o: No such file or directory | |
ld.lld: error: cannot open E-xception5858C-allS-tack.o: No such file or directory | |
ld.lld: error: cannot open A-rray40P-ointer40V-oid4141.o: |
View declare-n.bash
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
for e in 'key' 'tar' 'sig' | |
do | |
declare -n ref="$e" | |
wget --output-document "${ref[file]}" "${ref[url]}" | |
done |
View webdev.md
I: The Internet
. https://en.wikipedia.org/wiki/Internet History https://en.wikipedia.org/wiki/History_of_the_Internet
II: The Internet Protocol Suite
.
NewerOlder