This is an image:
- GitHub Staff
- https://summarity.com
- @summarity
I hereby claim:
- I am turbo on github.
- I am summarity (https://keybase.io/summarity) on keybase.
- I have a public key ASC5Q6LSQZZbPDrDDBF50nd843R0xlR60h5vD3lyHqFgkAo
To claim this, I am signing this object:
- https://web.archive.org/web/20200715212355/https://twitter.com/JoeBiden/status/1283512317846659073
- https://web.archive.org/web/20200715210221/https://twitter.com/Apple/status/1283506278707408900
- https://web.archive.org/web/20200715205931/https://twitter.com/Uber/status/1283505393679970304
- https://web.archive.org/web/20200715204223/https://twitter.com/elonmusk/status/1283501790613442560
- https://web.archive.org/web/20200715205147/https://twitter.com/BillGates/status/1283503731682811907
- https://web.archive.org/web/20200715213708/https://twitter.com/BarackObama/status/1283515490653147139
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
import { createContext } from './hotkeys'; | |
const c = createContext(); | |
// Alerts when "no way" is typed in. | |
c.register('n o space w a y', () => { | |
alert('Yes way!'); | |
}); | |
/* |
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 isEqual = (a, b) => { | |
const aKeys = Object.keys(a); | |
if (aKeys.length !== Object.keys(b).length) { | |
return false; | |
} | |
return aKeys.every( | |
(k) => Object.prototype.hasOwnProperty.call(b, k) | |
&& a[k] === b[k], |
Turn auto-exposure off, set absolute exposure to a low level and use gain to compensate for low light if needed. E.g.:
v4l2-ctl -d /dev/video2 -c exposure_absolute=400
v4l2-ctl -d /dev/video2 -c gain=110
# check with
v4l2-ctl -d /dev/video2 -L
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
XS-1X: &xs-1x | |
limits: | |
memory: "490Mi" | |
cpu: "240m" | |
requests: | |
memory: "490Mi" | |
cpu: "240m" | |
XS-2X: &xs-2x | |
limits: |
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
; vi: ft=clojure | |
; THIS IS A Fennel SOURCE FILE (.fnl) !NOT! clojure! | |
; you need to use luajit to run this, after using fennel --compile | |
; install lapis and turbo from luarocks | |
; When running with Fennel directly, you need to --globals all used HTML tags | |
(local turbo (require "turbo")) | |
(local render_html (. (assert (require "lapis.html")) :render_html)) |
NewerOlder