just setting up my gthb
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 required = (argumentName = false) => { | |
try { | |
const fs = require("fs"); | |
// Get the stack trace. | |
const copy = Error.prepareStackTrace; | |
Error.prepareStackTrace = (_, stack) => stack; | |
const stack = new Error().stack; | |
Error.prepareStackTrace = copy; |
opt into public web hosting
sbot publish --type about --about "@your.public.id.here" --publicWebHosting
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 config = { | |
init: 1, | |
condition: x => x <= 256, | |
each: x => console.info(`INFO: ${x}`), | |
afterEach: x => x * 2, | |
}; | |
// DO NOT EDIT BELOW THIS LINE | |
(() => { |
Alternate title: How to Fix FrankenDebian's Monster.
https://wiki.debian.org/DontBreakDebian#Don.27t_make_a_FrankenDebian
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
var years = 4; | |
var d = new Date(); | |
d.setMonth(0); | |
d.setDate(1); | |
var last = d.setHours(0, 0, 0, 0); | |
var next = d.setYear(d.getFullYear() + 1); | |
var dozenth = (next - last) / 12; |
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
let lock; | |
const log = (msg) => { | |
lock = new Promise(async (resolve) => { | |
await lock; | |
console.log(msg); | |
setTimeout(resolve, 1000); | |
}); | |
}; |
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 AAAAB3NzaC1yc2EAAAADAQABAAACAQDOE/PDXPQ9fS5mjhxX0L3wlugWnK3A0q6uD5RKfHJ+4/GcddjlAInh/h772D8sXa9gX93HYUQvfWhHykFM4nLTAqgIhOOCwn2ahlRGlXzAAfA14jSwM5wTkL5zKeNUWB3KGynx0N8DKwlwrn9CYbv66cxD950s49vHkx4oJuc9gGDwDI2NgX2fov3RrPF7tBkzxOFaNlP99W29D+GsMq9kjaSYejygekcfcwzlLPXbzxEV5hCbUYu5plew0B1MpmaXl9XzmxObRXPT6c9B1lF+gGieUuUiq2rkz/jpVzfUE+vtvRhH6ayZN7sTEqbzRWxZ8nVA/FqanoIKtULUQd9qbFpbw0JuVY//yFrzmA5XBeBLeLFHRNnEnLnAUqFL3ShiNVnAgVfukv9KIYtiAS4s6hXCQLMs4WuV3lg7FMk7OHdrYUmWgktWLn/WlljCoTfAlQ6vfhjyuixVYreJbgKX42Mv+/wx41W6jQh0JrJafmq0Jp6AbpaqDSPXVBH4ONfHM4s3MEGTWZiGytZxnJMHnQZMQZMGBP/8AvmzklxwsfxyY9jndLdapd6/Gr3JHbmeH4gmNA648jBpxHyUZJseT93nF+gZ12OfmnmwEj5p9FBGQoiR3ajd/txupN+iQZpk8Il+O9RnH/bYtBCjMNjB6MIZNpDQkPpS6q00hO6Qyw== [email protected] |
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
date | close | |
---|---|---|
1-May-12 | 58.13 | |
30-Apr-12 | 53.98 | |
27-Apr-12 | 67.00 | |
26-Apr-12 | 89.70 | |
25-Apr-12 | 99.00 | |
24-Apr-12 | 130.28 | |
23-Apr-12 | 166.70 | |
20-Apr-12 | 234.98 | |
19-Apr-12 | 345.44 |
Chromium OS is cool. Chromium OS with crouton is cooler. Chromium OS with Docker is even cooler. This is specifically a guide for the Chromebook Pixel 2 (2015), but I can't think of any reason it wouldn't work with other devices.
NewerOlder