registration a ssh key with Github
Answer yes to the all questions, and ~/.ssh/id_ed25519[.pub]
are generated.
$ ssh-keygen -t ed25519 -C "[email protected]"
<!DOCTYPE html> | |
<html lang="ja"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="description" content=""> | |
<meta property="og:type" content=""> | |
<meta property="og:title" content=""> | |
<meta property="og:description" content=""> | |
<meta property="og:site_name" content=""> |
var getIP = function (req) { | |
if (req.headers['x-forwarded-for']) { | |
return req.headers['x-forwarded-for']; | |
} | |
if (req.connection && req.connection.remoteAddress) { | |
return req.connection.remoteAddress; | |
} | |
if (req.connection.socket && req.connection.socket.remoteAddress) { | |
return req.connection.socket.remoteAddress; | |
} |
process.stdin.resume(); | |
process.stdin.setEncoding('utf8'); | |
var input_lines = ''; | |
var parseInt10 = function (v) { | |
return parseInt(v, 10); | |
} | |
process.stdin.on('data', function (chunk) { |
<% extend 'layout' %> | |
<div class="wrapper"> | |
<header role="banner"> | |
<h1></h1> | |
</header> | |
<main role="main"> | |
</main> | |
<footer role="contentinfo"> | |
</footer> | |
</div> |
registration a ssh key with Github
Answer yes to the all questions, and ~/.ssh/id_ed25519[.pub]
are generated.
$ ssh-keygen -t ed25519 -C "[email protected]"
#include <bits/stdc++.h> | |
#define dump(x) cerr << #x << "=" << (x) << endl | |
#define FOR(i, a, b) for(int i = int(a); i < int(b); ++i) | |
#define rep(i, n) FOR(i, 0, n) | |
#define all(p) (p).begin(), (p).end() | |
#define rall(p) (p).rbegin(), (p).rend() | |
#define MP make_pair | |
#define PB push_back |
Return-to-Address | |
X-PHP-Originating-Script | |
X-Authentication-Warning | |
SPF v=spf1 include:_spf.google.com ~all |
var pi = agm(3); | |
console.log(pi); | |
function agm(n) { | |
var a = 1, | |
b = 1 / Math.sqrt(2), | |
t = 1 / 4, | |
p = 1, | |
an; | |
for (var i = 0; i < n; i++) { |
$ mongo --quiet dbname --eval 'db.collection.find();' > result.tsv |