Skip to content

Instantly share code, notes, and snippets.

View mapi's full-sized avatar
🈚
🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚

mapi mapi

🈚
🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚🈚
View GitHub Profile
@mapi
mapi / Dockerfile
Created October 10, 2016 03:37
rundeck
FROM openjdk:8-jre-alpine
ENV user rundeck
ENV group rundeck
RUN apk --update add ca-certificates curl && \
rm -rf /tmp/* /var/tmp/* /var/cache/apk/*
RUN mkdir -p /opt && \
addgroup -g 1000 ${group} && \
@mapi
mapi / memo.md
Last active August 29, 2015 14:06
零式3層トレース
@mapi
mapi / gist:9838855
Last active August 29, 2015 13:57
yoshida
Time Name Message
2:19:24 Gff Y. 戻りました
2:19:32 Asht R. はやいwwwwww
2:19:35 Tsubasa T. おかー
2:19:36 Rick B. Rick B.は紳士の舞を踊った。
2:19:37 Shizuku A. おかえりー!!
2:19:40 Nonchi N. おかえりいい
2:19:40 Vanilla F. おかかー
2:19:41 Dice M. おかえりですー
@mapi
mapi / gist:9624382
Created March 18, 2014 17:00
クリスタルタワーでコメットが無かった時に押すやつ
/alliance :::::::::::::::::::::: : : : : : ::.
/alliance ::::::::::::::::::: : : : : : :_,__-‐ -
/alliance :::::::::::::: : : : : : ,ィ彡二‐
/alliance :::::::::::: __ : : : :仏彡二ニ
/alliance :::::::::: .\` ' <三二ニ ,_,x=ァ'、 .,
/alliance :::::::: : : : .\ヽ  `三ニ     ヾ
/alliance :::: : : : : : :_,心、__ 三二, ヽ  / -z'
/alliance :: : : : : /  川 リ彡三ニ   イ'ー -リ
/alliance :::: : : イ  l !|/ _彡彡ソ从人  フ
/alliance 三二ハ   マム  "彡ソリ川 |i l |
@mapi
mapi / setup.sh
Last active December 15, 2015 02:49
JSON.NETのDLリンクコロコロ変わるみたいなので自分でDLするよう促すようにした。 Core.dllが更新されてたのに追随
#!/bin/bash
install_path="${HOME}"
temp="$(mktemp -d)"
current=$(cd $(dirname $0);pwd)
cd ${temp}
wget "http://www.misuzilla.org/~mayuki/dist/twitterircgateway/TwitterIrcGateway-20100513.zip"
wget "http://www.misuzilla.org/~mayuki/dist/twitterircgateway/TwitterIrcGatewayCore.dll-20130405"
wget "http://www.misuzilla.org/~mayuki/dist/twitterircgateway/addins/Misuzilla.Applications.TwitterIrcGateway.AddIns.RevealOnewayFollowAddIn.dll-20130305"
wget "http://mashiro.org/dev/tig/bind/Spica.Applications.TwitterIrcGateway.AddIns.Bind.dll.201301315"
@mapi
mapi / gist:4256218
Created December 11, 2012 05:57
履歴付きオーバーレイ
#!/bin/bash
BACKUP="/path/backup"
SNAPSHOT=$(date +%Y/%m/%d-%H:%M:%S)
mkdir -p "${BACKUP}/${SNAPSHOT}"
rsync -avz --delete --link-dest="${BACKUP}/latest" remote:/path/to/sync "${BACKUP_DIR}/${SNAPSHOT}"
ln -n -f -s "${BACKUP}/${SNAPSHOT}" "${BACKUP}/latest""
HOME=/root
OLDPWD=/root
LOGNAME=root
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
SHELL=/bin/sh
PWD=/
if [ -e /dev/vboxguest ] ; then
xset -r 49
fi
@mapi
mapi / gist:1090344
Created July 18, 2011 19:02
minecraft
こうあったときに
■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■
■■■■■■■■■■■■■■■■■■■■■
こうやるのが効率的?
■□■■□■■□■■□■■■■■■■■■■
#screenでssh-agentを使いまわす
function ssh-init {
local SSH_AUTH_SOCK_DIR="$HOME/.tmp/ssh-agent"
#ここは初めてか?
if [ ! -d ${SSH_AUTH_SOCK_DIR} ]; then
mkdir -p ${SSH_AUTH_SOCK_DIR}
chmod 700 ${SSH_AUTH_SOCK_DIR}
fi
#ソケット作る
AGENT="${SSH_AUTH_SOCK_DIR}/`hostname`"