This file contains hidden or 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
// console session to get numbers by year | |
// https://people.eecs.berkeley.edu/~rcs/research/interactive_latency.html | |
// https://docs.google.com/spreadsheets/d/11T5Ufh7Y_fmm2d2ZRSUDDHpRULPooPjwzl7Abh2KkjE/edit#gid=0 | |
(() => { | |
var h = "year,ns,L1,branch,L2,mutex,ns100,mem,micro,snappy,tenMicro,network,ssdRandom,mbMem,rtt,ms,mbSSD,seek,mbDisk,wan"; | |
var y = [...Array(2021-1990).keys()].map((e) => 1990 + e); | |
var m = y.map((e) => {var a = [e]; year = e; getMetrics().map((f) => a.push(f.ns)); return a;}) | |
return h + "\n" + m.map((e) => e.join(", ")).join("\n");})() |
This file contains hidden or 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
(ns meetup.core | |
"Clojure Meetup Austin | |
Monday, November 11, 2019 | |
Hack Night - Clojure Coding Challenge | |
Instructions here - | |
https://gitlab.com/maximoburrito/pubparse/tree/master" | |
(:import | |
[java.io RandomAccessFile] |
This file contains hidden or 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
### | |
# Main container | |
# | |
# (C) 2016, Alpeware | |
### | |
ARG BASE_IMAGE | |
FROM "${BASE_IMAGE}" | |
ARG USER |
This file contains hidden or 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
# (c) 2017 Alpeware LLC | |
# | |
# curl -s https://dl.google.com/linux/chrome/rpm/stable/x86_64/repodata/other.xml.gz | gzip -df \ | |
#| awk -F\" '/pkgid/{ sub(".*-","",$4); print $4": "$10 }' | |
# | |
# here's how to get the latest chrome versions in py | |
# | |
# result should be: | |
# versions.keys() | |
# ['google-chrome-stable', 'google-chrome-beta', 'google-chrome-unstable'] |