I hereby claim:
- I am JeffreyVdb on github.
- I am jeffreyvdb (https://keybase.io/jeffreyvdb) on keybase.
- I have a public key whose fingerprint is 389A 3305 D823 729D 7FF8 A8C0 53D4 B3FF B09B 6422
To claim this, I am signing this object:
function kcrongetjob() { | |
local cronjob_name="$1" | |
local namespace="${2:-default}" | |
local _json | |
_json=$(kubectl -n $namespace get cronjob $cronjob_name -o json --export 2>&1) | |
if [ $? -eq 0 ]; then | |
echo "{ | |
\"apiVersion\": \"batch/v1\", | |
\"kind\": \"Job\", |
#!/usr/bin/pwsh | |
function Get-KubectlUnix { | |
param ( | |
[string]$Version, | |
[string]$Platform | |
) | |
$tempPath = [System.IO.Path]::GetTempFileName() | |
$kubectlURL = "https://storage.googleapis.com/kubernetes-release/release/$($Version.Trim("`n"))/bin/$Platform/amd64/kubectl" |
#!/usr/bin/env zsh | |
if (( $+commands[kubectl] )); then | |
source <(kubectl completion zsh) | |
fi | |
function env_to_secret() { | |
perl -MMIME::Base64 -ne '/^(.*?)=(.*)$/ && printf("$1: %s\n", encode_base64($2, ""))' | |
} |
#!/usr/bin/pwsh | |
Param ( | |
[Parameter(Mandatory=$True, Position=1)] | |
[string]$RepositoryName, | |
[Parameter(Mandatory=$True)] | |
[string]$BucketName, | |
[Parameter(Mandatory=$True)] | |
[string]$Organization = "", |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
set -euo pipefail | |
mktempfile() { | |
tmpfile=$(mktemp --tmpdir=/tmp "$1") | |
echo "Created $tmpfile" >/dev/tty | |
printf "%s" "$tmpfile" | |
} | |
KEY_NAME="${1:-}" |
const c = @cImport(@cInclude("unistd.h")); | |
const std = @import("std"); | |
const ChownData = struct { | |
uid: c_uint, | |
gid: c_uint, | |
filename: [:0]const u8, | |
}; | |
pub fn main() !void { |
const std = @import("std"); | |
const HashMap = std.HashMap; | |
const Allocator = std.mem.Allocator; | |
const StringHashMap = std.hash_map.StringHashMap; | |
const SinglyLinkedList = std.SinglyLinkedList; | |
pub fn main() !void { | |
var arena = std.heap.ArenaAllocator.init(std.heap.page_allocator); | |
defer arena.deinit(); |
import sys | |
import os.path | |
if __name__ == "__main__": | |
paths = [p for p in sys.argv[1:] if os.path.exists(p) and os.path.isdir(p)] | |
if not paths: | |
sys.exit(0) | |
print(os.path.pathsep.join(paths)) |
{ | |
"$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
"basics": { | |
"name": "Jeffrey Vandenborne", | |
"label": "Software Engineer - Sysadmin - Tech geek", | |
"image": "", | |
"email": "[email protected]", | |
"phone": "+32483126523", | |
"url": "https://jeffrey.vandenborne.co", | |
"summary": "I believe that a good software engineer should be like a chameleon: instantly able to adapt the technologies required for the task at hand. Choosing the right tool for the job is the real complexity.", |