Various configuration files for my working environment
Note
My configuration files have retired gracefully and found a new home at chez-ccamel. They’re now managed with the delightful chezmoi config tool.
| gh pr list \ | |
| --search "label:register-validator sort:created-asc" \ | |
| --limit 150 --json "createdAt" \ | |
| --template '{{ printf "%s\n" "# date count" }}{{ range . }}{{ printf "%s %d\n" .createdAt 1}}{{ end }}' \ | |
| -R okp4/networks \ | |
| | gnuplot \ | |
| -p \ | |
| -e 'set terminal dumb size 150, 30; set autoscale; set xdata time; set timefmt "%Y-%m-%dT%H:%M:%S"; set title "Druids registration"; set xlabel "Date"; set ylabel "Count"; cumulative_sum(x)=(count=count+x,count); count=0; plot "-" using 1:(cumulative_sum($2)) title "" with lines;' |
Various configuration files for my working environment
Note
My configuration files have retired gracefully and found a new home at chez-ccamel. They’re now managed with the delightful chezmoi config tool.
15-minutes time-boxed event by the TechTeam for the TechTeam in order to synchronize activities for the next 24 hours.
Few commandments:
📆 Be on time.
It's a mandatory meeting that the entire
TechTeamneeds to attend
⏳ Keep it short.
10 to 15 minutes
| -- just for fun | |
| -- compute π using the Leibniz formula | |
| with recursive leibniz (n, r) as ( | |
| select 0, 0. | |
| union | |
| select n + 1, r + cast(power(-1, n) as decimal) / (2. * n + 1.) | |
| from leibniz | |
| where n < 10000 | |
| ) | |
| select 4. * r as pi from numbers offset 10000; |
I hereby claim:
To claim this, I am signing this object:
| @startuml | |
| ' styles | |
| skinparam handwritten true | |
| skinparam monochrome false | |
| skinparam packageStyle rect | |
| skinparam defaultFontName FG Virgil | |
| skinparam shadowing false | |
| hide footbox |