I hereby claim:
- I am ykomatsu on github.
- I am ykoma (https://keybase.io/ykoma) on keybase.
- I have a public key ASBkqzrgc3Mfb30cUhorv2HaPAfgmtDATscrK1bFAAyFdwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
{ | |
"packages": [ | |
{ | |
"email": "[email protected]", | |
"help": { | |
"online": "https://kaleidoscope.readthedocs.io" | |
}, | |
"maintainer": "Keyboardio", | |
"name": "keyboardio", | |
"platforms": [ |
version: 2 | |
jobs: | |
build: | |
docker: | |
- image: circleci/node:latest | |
steps: | |
- checkout | |
- run: yarn install | |
- run: | |
command: | |
$ curl https://nixos.org/nix/install | sh
(ns hello.core | |
(:require [cljs.nodejs :as nodejs] | |
[clojure.string :as string] | |
[cljs.core.async :refer [<! chan put!]]) | |
(:require-macros [cljs.core.async.macros :refer [go]])) | |
(def http (nodejs/require "http")) | |
(def url (nodejs/require "url")) | |
(defn join-chunk |
#! /bin/sh | |
_CA_CRT='/etc/openvpn/ca.crt' | |
_TA_KEY='/etc/openvpn/ta.key' | |
_CA_GUID="$(uuid)" | |
_CA_X509="$(sudo awk 'ORS="";!/^-----/{print $0}' ${_CA_CRT})" | |
_GUID="$(uuid)" | |
_NAME='OpenVPN Playground' | |
_OPENVPN_USER='user' |
export ZDOTDIR="${HOME}/.zsh.d" |
" ln -s .vim/.vimrc ${HOME}/.vimrc ${HOME} | |
filetype off | |
set runtimepath+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
Plugin 'VundleVim/Vundle.vim' | |
Plugin 'Valloric/YouCompleteMe' | |
Plugin 'tomasr/molokai' | |
Plugin 'rust-lang/rust.vim' | |
Plugin 'cohama/lexima.vim' |
#! /bin/sh | |
# Ubuntu 14.04 LTS | |
STARTDATE=$(TZ='Asia/Tokyo' date +'%Y%m%d') | |
PKGS='git' | |
PKGS="${PKGS} gcc g++ pkg-config zlib1g-dev libglib2.0-dev libpixman-1-dev" | |
PKGS="${PKGS} libcap-dev libattr1-dev" | |
PKGS="${PKGS} make" | |
EXTRACFLAGS='-march=atom -O2 -pipe' |
;;; Enable El-Get | |
(add-to-list 'load-path "~/.emacs.d/el-get/el-get") | |
(unless (require 'el-get nil 'noerror) | |
(with-current-buffer | |
(url-retrieve-synchronously | |
"https://raw.githubusercontent.com/dimitri/el-get/master/el-get-install.el") | |
(goto-char (point-max)) | |
(eval-print-last-sexp))) | |
(el-get 'sync) |