I hereby claim:
- I am iwasa-kosui on github.
- I am kosui (https://keybase.io/kosui) on keybase.
- I have a public key ASBz46CvrX6xu-YBR7SSqkBTero-rwXKq_KOOzrks26juwo
To claim this, I am signing this object:
| AWSTemplateFormatVersion: '2010-09-09' | |
| Description: isucon13 template | |
| Parameters: | |
| KeyPairName: | |
| Description: "Amazon EC2 Key Pair" | |
| Type: AWS::EC2::KeyPair::KeyName | |
| GitHubUsername: | |
| Description: "GitHub Username for SSH public key" | |
| Type: String |
I hereby claim:
To claim this, I am signing this object:
| きのう ✨ feat: 短縮よみ | |
| りむーぶ 🔥 feat: 短縮よみ | |
| りふぁくた ♻ refactor: 短縮よみ | |
| むーぶ 🚚 refactor: 短縮よみ | |
| りねーむ 🚚 refactor: 短縮よみ | |
| ばぐ 🐛 fix: 短縮よみ | |
| ふぃっくす 🐛 fix: 短縮よみ | |
| ふぃっくす 🚑 fix: 短縮よみ | |
| ほっとふぃっくす 🚑 fix: 短縮よみ | |
| いぞん ➕ chore: 短縮よみ |
| // ==UserScript== | |
| // @name How you will be billied with BigQuery | |
| // @version 0.1 | |
| // @description BigQuery での課金額を表示します | |
| // @author Kosui Iwasa | |
| // @match https://console.cloud.google.com/bigquery* | |
| // @icon https://www.google.com/s2/favicons?domain=google.com | |
| // @grant none | |
| // ==/UserScript== |
| const generateTrip = require('2ch-trip'); | |
| const crypto = require('crypto'); | |
| const createRandomValue = () => { | |
| const S = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" | |
| const N = 10 | |
| return Array.from(crypto.randomBytes(N)).map((n)=>S[n%S.length]).join('') | |
| } | |
| const createRandomTrip = () => { |
| /* | |
| * n 個の 0 を格納する配列を返します | |
| */ | |
| const initArray = (n: number) => (new Array(n)).fill(0) | |
| const items = [[2,3],[1,2],[3,6],[2,1],[1,3],[5,85]].map(item => ({ | |
| weight: item[0], | |
| value: item[1], | |
| })) |
| const renderDomTree = ((node, depth=0) => { | |
| // Say <YO> | |
| console.log(`${' '.repeat(depth)}<${node.tagName}>`) | |
| // Say about YO's children recursively | |
| let childNodes = Array.from(node.childNodes) | |
| if (childNodes !== undefined) { | |
| childNodes | |
| .filter(childNode => childNode.tagName !== undefined) | |
| .map(childNode => fuck(childNode, depth + 1)) |
| def 優しい言葉ジェネレータ(): | |
| while True: | |
| for c in "優しい言葉": | |
| yield c | |
| def main(): | |
| for word in 優しい言葉ジェネレータ(): | |
| print(word) |
Common Lisp editor/IDE with high expansibility https://github.com/cxxxr/lem
brew install lem
brew install roswell
brew install ncurses
echo 'export PATH=$PATH:~/.roswell/bin' >> ~/.zshrc