Skip to content

Instantly share code, notes, and snippets.

@yosuke-furukawa
yosuke-furukawa / gmail-github-filters.md
Created May 13, 2020 03:37 — forked from ldez/gmail-github-filters.md
Gmail and GitHub - Filters

Gmail and GitHub

Create new filters and create new labels.

Pull Request

from:(notifications@github.com) AND {"Patch Links" "approved this pull request." "requested changes on this pull request." "commented on this pull request." "pushed 1 commit." "pushed 2 commits." "pushed 3 commits."}

label: gh-pull-request

@yosuke-furukawa
yosuke-furukawa / hello.js
Created November 23, 2012 06:11 — forked from shigeki/hello.js
第1回Node.js入門勉強会 レポート課題(回答しました。 by yosuke_furukawa)
var http = require('http');
server = http.createServer(function (req, res) {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World\n');
server.close();
});
server.listen(8080, 0, function () {
console.log('Server running at http://localhost:8080/');
});