These are the ZeroCater Engineering and Data role definitions for both teams. (This was originally forked from Kickstarter's Engineering Ladder v7)
View pdf2json.js
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 fs = require('fs') | |
const pdfjs = require('pdfjs-dist') | |
const readPdf = async filename => { | |
const buf = await fs.promises.readFile(filename) | |
const doc = await pdfjs.getDocument(buf).promise | |
const docBlob = { | |
metadata: null, | |
pages: [] | |
} |
View simple_moving_average.js
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
Array.prototype.simple_moving_average = function(window_length) { | |
var averaged = new Array(this.length); | |
var chunk = []; | |
for (k = 0; k < this.length; k++) { | |
chunk.push(this[k]); | |
if (chunk.length > window_length) chunk.shift(); | |
averaged[k] = chunk.sum() / chunk.length; // sum() is an exercise left to the reader | |
} | |
return averaged; | |
}; |
View window.sh
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 | |
set -x | |
dim=$(wmctrl -d | head -n 1 | grep -Eho '[0-9]{4}x[0-9]{3,4}' | tail -n 1) | |
width=$(echo $dim | cut -d x -f 1) | |
#height=$(echo $dim | cut -d x -f 2) | |
height=2130 | |
margin=0 | |
maxWidth=$(( $width - 2*$margin )) | |
halfWidth=$(( $width/2 - 2*$margin )) |
View russell_3000_2011-06-27.csv
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 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
A | |
ACO | |
AA | |
ACOM | |
AAN | |
ACOR | |
AAON | |
ACPW | |
AAP | |
ACTG |
View eos-post-install.sh
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
# elementary OS Juno post install | |
# first step, upgrade | |
sudo apt update && sudo apt upgrade | |
sudo apt install ubuntu-restricted-extras | |
sudo apt install software-properties-common --no-install-recommends | |
sudo apt install libavcodec-extra ffmpeg | |
sudo apt install firefox vlc | |
sudo apt install screenfetch flameshot |
View us_federal_holidays.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
{ | |
"2029-05-28" : { | |
"name" : "Memorial Day", | |
"date" : "May 28, 2029" | |
}, | |
"2025-12-25" : { | |
"name" : "Christmas Day", | |
"date" : "December 25, 2025" | |
}, | |
"2021-01-01" : { |
View id_rsa.pub
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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDayMWjaM7shFjoC1YL1uG0d0Xi7xRnq/Jhm5QEAcx0umm/bRp8vyIDIypCXS1wPXXmeopByZwhqSpESgC/xkAoTQOAscGEDbHdlcQx2MUQ1jV8icIN9MgehqWrEA7jAQMqPl90Ck0U31M8wYyMZ1GM/c7R6VZi5lG+H3AmiWIX758DC9RXkyP6DaS2+UKQCUpg5OY6o0mqFe+rGla/TvfMDxP27u5Kpfw4SxbLQDNAGxtftpNaOgVAIpkPFt+/YkyJm6tJS8VaWRjXWhgNR5th+vntJUDx8IRrm5IBVWQxbQIg/YgATluGg1r3eGp3VAURkTR8J7ZPzBRK4tLRANn3tRszXDFmPAdyEnz9GgeKVSeJd1vCXipUm6jdqAbZAutYyIY7b/Upq4uUwlUGCX8aJYS//FlTVfV2XencmWFFpxh31SUuCKzkhtMJeiizz+NXkIC2RXPYh8w6I+JW0eSxpwtRRZjJ723SauNrFupGX8ZzKauDZo+e+5smbydzksIMmCk4SOlFVkXuQxNusfqovRcJrHI9HXKIaDd1mzBX017FrZW5CaaKe96glRwAN3jpzARuJBuJNcB/Pkpgns9pbOkknFl93614uN8Nq9llWylhtClG+NLisYsBhfN+TE9+53nlABMOrcaihbcc/PGB4NcXmD1j4lqifBU5eHpRHw== huned@omg |
View survey_dsl.rb
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
include Survey::DSL | |
survey 'Finances Questionnaire' do | |
q "Do you have a Durable Power of Attorney for Finances?" do | |
yes do | |
a "Who is the designated agent for handling your finances?" do | |
field 'Full Name' | |
phone 'Phone Number' | |
email 'Email' |
View -
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
Elna O'Kon | |
Heber Deckow | |
Wilbert Kozey | |
Trevor Rohan | |
Raquel Marvin | |
Vance Gerlach | |
Chaz Hirthe | |
Stefan Thiel | |
Marcus Ratke | |
Mr. Marisol Simonis |
NewerOlder