Skip to content

Instantly share code, notes, and snippets.

View gzaripov's full-sized avatar
🎯
Focusing

Grigory Zaripov gzaripov

🎯
Focusing
  • Toloka
  • Amsterdam, Netherlands
View GitHub Profile
@gzaripov
gzaripov / filter-message.js
Created October 12, 2019 21:07
Rewrite git mesage
const readline = require("readline");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
terminal: false
});
rl.on("line", function(line) {
console.log(changeMessage(line, "TOLOKA-11426"));
});
@gzaripov
gzaripov / filter-message.js
Created October 12, 2019 21:07
Rewrite git mesage
const readline = require("readline");
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
terminal: false
});
rl.on("line", function(line) {
console.log(changeMessage(line, "TOLOKA-11426"));
});