Skip to content

Instantly share code, notes, and snippets.

View mizdra's full-sized avatar

mizdra mizdra

View GitHub Profile
[[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"
@mizdra
mizdra / 230.gif
Last active April 1, 2018 10:19
実行にはImageMagick, zshのインストールが必要です.
230.gif
# 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"
import { add } from './math.rs'
console.log(add(1, 2))
@mizdra
mizdra / peco-src.sh
Last active December 20, 2017 03:25
ghq+pecoの高速化. `ghq list` をやめて `find` を使うように変更.
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
@mizdra
mizdra / firework
Last active February 20, 2022 01:42
🎆
#!/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)
@mizdra
mizdra / 電通大.kml
Created September 14, 2017 10:02
Google Mapで作成した電通大の敷地を囲うポリゴンとその座標
<?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>
@mizdra
mizdra / SepalatableCardActions.vue
Created March 16, 2017 15:19
左右にアイテムを配置可能なmu-card-actionsコンポーネント
<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>
@mizdra
mizdra / settings.json
Created March 6, 2017 14:17
2017/3/6時点でのvscodeの設定
{
"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",
@mizdra
mizdra / CalcInitialSeed.cpp
Last active December 29, 2016 11:55
初期Seedを計算
#include <iostream>
#include <iomanip>
using namespace std;
// 次の乱数を取得
uint32_t next(uint32_t s) {
return 0x41C64E6D * s + 0x00006073;
}