Skip to content

Instantly share code, notes, and snippets.

@gibfahn
gibfahn / sVimcss.css
Last active May 29, 2019 14:52
sVimcss - Safari Vim: safari-extensions.apple.com/?q=svim , see also https://gist.github.com/gibfahn/22c17d0059340e2c90c3c316b746ba8b
@-webkit-keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
#sVim-command {
let nextpagetextpatterns = ["[Nn]ext\\b.*", "[Mm]ore", "[Nn]ewer", ">", "→", "»", "≫", ">>"]
let prevpagetextpatterns = ["Prev(ious)\\b.*", "[Bb]ack", "[Oo]lder", "<", "‹", "←", "«", "≪", "<<"]
let hintcharacters = "zxcvbnmqwertyuiopasdfghjkl";
@gibfahn
gibfahn / audit-v8.10.1.md
Last active March 20, 2018 13:38
Audit for v8.10.1
@gibfahn
gibfahn / release-8.10.1.md
Created March 20, 2018 12:42
v8.10.1 release

Release Notes for 8.10.1

Regenerate this script with:

  tools/kraken -b v8.x -c Carbon -d 2018-04-03 -u DANGER 8.10.1

Your settings:

  • Version: 8.10.1
  • Previous version: 10.0.0
@gibfahn
gibfahn / notable-changes.md
Created March 6, 2018 21:57
Notable changes 8.10.0
  • deps:
    • update V8 to 6.2.414.46 (Michaël Zasso) #16413
    • revert ABI breaking changes in V8 6.2 (Anna Henningsen) #16413
    • upgrade libuv to 1.19.1 (cjihrig) #18260
    • re land npm 5.6.0 (Myles Borins) #18625
    • ICU 60 bump (Steven R. Loomis) #16876
  • crypto:
    • Support both OpenSSL 1.1.0 and 1.0.2 (David Benjamin) #16130
    • warn on invalid authentication tag length (Tobias Nießen) #17566 async_hooks:
@gibfahn
gibfahn / main.rs
Created February 8, 2018 14:06
Trying out structopt based on yoshuawuyt's example
extern crate structopt;
#[macro_use]
extern crate structopt_derive;
use structopt::StructOpt;
#[derive(StructOpt, Debug)]
#[structopt()]
enum Cmds {
#[structopt(name = "add")]
@gibfahn
gibfahn / v8.10.0-audit.md
Last active January 26, 2018 17:46
branch-diff v8.x-staging DANGER/v9.x --exclude-label semver-major,dont-land-on-v8.x,backport-requested-v8.x,backported-to-v8.x,semver-minor --filter-release --release
@gibfahn
gibfahn / v8.x-remaining.md
Last active January 26, 2018 17:06
branch-diff v8.x-staging DANGER/v9.x --exclude-label semver-major,dont-land-on-v8.x,backport-requested-v8.x,backported-to-v8.x --require-label semver-minor --filter-release
  • [d066db7014] - (SEMVER-MINOR) cluster: support windowsHide option for workers ( Todd Wong) #17412
  • [f82439b6a0] - (SEMVER-MINOR) http: add rawPacket in err of clientError event ( XadillaX) #17672
  • [c5c4a534d1] - (SEMVER-MINOR) stream: rm {writeable/readable}State.length ( Calvin Metcalf) #12857
  • [4b0c8759d3] - (SEMVER-MINOR) stream: add flow and buffer properties to streams ( Calvin Metcalf) #12855
  • [6d9b1e4c83] - (SEMVER-MINOR) util: allow wildcards in NODE_DEBUG variable ( Tyler) [#17
@gibfahn
gibfahn / release-8.10.0.md
Last active March 6, 2018 22:08
8.10.0 Release notes

Release Notes for 8.10.0

Regenerate this script with:

  tools/kraken -c Carbon -d 2018-03-06 -u DANGER -p https://github.com/nodejs/node/pull/18336 8.10.0

Your settings:

  • Version: 8.10.0
  • Previous version: 10.0.0
@gibfahn
gibfahn / Jenkinsfile
Created October 31, 2017 16:02
citgm-continuous-integration-pipeliner
println "\n### BUILD PARAMETERS ###"
def pr = [] // Mutable parameter set to pass to jobs. I know this is crazy.
String printParams = '' // String of params to print
for (param in params) {
printParams += param.toString() + '\n'
if (param.key != 'NODE_VERSIONs') {
pr.push(string(name: param.key, value: param.value))
}
}
println printParams