This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[[package]] | |
name = "cfg-if" | |
version = "0.1.5" | |
source = "registry+https://github.com/rust-lang/crates.io-index" | |
[[package]] | |
name = "itoa" | |
version = "0.4.3" | |
source = "registry+https://github.com/rust-lang/crates.io-index" |

This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Run docker | |
docker run -p 8080:8080 -ti node:latest /bin/bash | |
# Install yarn | |
curl -o- -L https://yarnpkg.com/install.sh | bash | |
# Install rust | |
curl https://sh.rustup.rs -sSf > rustup-init.sh | |
sh rustup-init.sh -y | |
export PATH="$HOME/.cargo/bin:$PATH" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { add } from './math.rs' | |
console.log(add(1, 2)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias src-list="( \ | |
( \ | |
find ~/src -not -path \"$HOME/src/gomi/*\" -mindepth 3 -maxdepth 3 -type d ; \ | |
find ~/src/gomi -mindepth 1 -maxdepth 1 -type d \ | |
) | sed -e \"s|$HOME/src/||g\" \ | |
)" | |
function peco-src() { | |
# ディレクトリ構成 | |
# ~/src |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# ref: http://www.linuxjournal.com/content/fireworks-command-line | |
# Usage | |
# firework [--panic] [--sound] | |
rows=$(tput lines) | |
cols=$(tput cols) | |
colors=(red green blue purple cyan yellow brown) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<kml xmlns="http://www.opengis.net/kml/2.2"> | |
<Document> | |
<name>電通大</name> | |
<Style id="poly-000000-1200-77-nodesc-normal"> | |
<LineStyle> | |
<color>ff000000</color> | |
<width>1.2</width> | |
</LineStyle> | |
<PolyStyle> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<mu-card-actions> | |
<mu-row gutter> | |
<mu-col width="100" tablet="50" desktop="50"> | |
<slot name="left"></slot> | |
</mu-col> | |
<mu-col class="right" width="100" tablet="50" desktop="50"> | |
<slot name="right"></slot> | |
</mu-col> | |
</mu-row> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"editor.fontFamily": "Ricty for Powerline", | |
"editor.fontSize": 14, | |
"guides.normal.style": "dashed", | |
"git.confirmSync": false, | |
"files.associations": { | |
"*.vue": "html" // .vue で emmet を有効化 | |
}, | |
"editor.wordWrap": "off", | |
"workbench.colorTheme": "Atom One Dark", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <iomanip> | |
using namespace std; | |
// 次の乱数を取得 | |
uint32_t next(uint32_t s) { | |
return 0x41C64E6D * s + 0x00006073; | |
} |