Skip to content

Instantly share code, notes, and snippets.

@geta6
Last active December 22, 2015 05:28
Show Gist options
  • Save geta6/6423804 to your computer and use it in GitHub Desktop.
Save geta6/6423804 to your computer and use it in GitHub Desktop.

Untitled slide

日本語ダヨー 改行ダヨー

Roses are red Violets are blue

hoge

fuga

piyo

GFM

Mistaken

  • @mentions, #refs, links, formatting, and tags supported
  • list syntax required (any unordered or ordered list supported)
  • this is a complete item
  • this is an incomplete item
  • [] hoge

[x] hoge [ ] fuga

Luna

Code

var https = require('https');
var fs = require('fs');

var options = {
  key: fs.readFileSync('test/fixtures/keys/agent2-key.pem'),
  cert: fs.readFileSync('test/fixtures/keys/agent2-cert.pem')
};

https.createServer(options, function (req, res) {
  res.writeHead(200);
  res.end("hello world\n");
}).listen(8000);

How to edit slide?

みかん : オレンジ色で甘酸っぱい。

りんご : 赤くて甘い。

  1. Create and edit markdown on Gist.
  2. Sync contents from sidebar.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment