Skip to content

Instantly share code, notes, and snippets.

View birchb1024's full-sized avatar
🏠
Working from home

Peter Birch birchb1024

🏠
Working from home
  • Melbourne, Australia
View GitHub Profile
@birchb1024
birchb1024 / lines-of-code.elv
Created October 13, 2023 06:31
Use cloc to report SLOC for the api repos in the current directory
#!/Users/bill.birch/workspace/gocode/bin/elvish
#
# Get lines of code for the repos in the current directory
#
find api* -maxdepth 0 -type d | ^
each {|D|
cloc --exclude-dir=generated -json --timeout 0 $D ^
| from-json ^
| put [$D (one)[SUM][code]]
} | order &reverse=$true &key={|L| put $L[1]} ^
@birchb1024
birchb1024 / multiarray.awk
Last active May 13, 2022 23:18
awk mutliarrays
#
# multi-dimension arrys
#
# pprint() function - print arbtrary objects
#
function ps(n)
{
for(i=1;i<=n;i++)
printf(" ")
@birchb1024
birchb1024 / bumpme
Last active September 28, 2019 13:56
bumpme
Sat Sep 28 13:56:08 UTC 2019