Skip to content

Instantly share code, notes, and snippets.

@hokkai7go
hokkai7go / 2017-02-12_song_list.md
Created February 12, 2017 11:29
私の(推し)歌を聴けー!2017春 聞いた曲目リスト

私の(推し)歌を聴けー!2017春

2017/02/12

  • 【MV】虹のコンキスタドール「戦場の聖バレンタイン」
  • 【MV】虹のコンキスタドール「THE☆有頂天サマー!!」(虹コン)
  • 【MV】虹のコンキスタドール「限りなく冒険に近いサマー」(虹コン)
  • パスピエ - 永すぎた春, PASSEPIED - Nagasugita Haru
  • パスピエ - ハイパーリアリスト , PASSEPIED - Hyper Realist
  • チャイナタウン - パスピエ
@zunda
zunda / git-prompt.sh.say.patch
Created August 5, 2014 10:04
OSXでプロンプトを表示するたびにGItブランチ名をしゃべる。うるさいし遅い。
--- git-prompt.sh.orig 2014-08-04 23:48:33.000000000 -1000
+++ git-prompt.sh 2014-08-05 00:02:38.000000000 -1000
@@ -439,7 +439,8 @@
fi
local f="$w$i$s$u"
- local gitstring="$c${b##refs/heads/}${f:+$z$f}$r$p"
+ local branchname=${b##refs/heads/}
+ local gitstring="$c$branchname${f:+$z$f}$r$p"
@exoego
exoego / 転職先に訊きたいチェックリスト.md
Last active May 25, 2024 15:30
転職活動してて訊きたいことのメモ

制度

  • 有休…
  • 病休…
  • 育休…
  • 年収(月給、賞与など)…
  • 残業代…
  • 早朝/深夜手当…
  • 休出手当…
  • 住宅補助…
@fujimura
fujimura / z-index.css.scss
Last active November 22, 2016 07:36
z-index.css.scss
@mixin stack-classes ($classes) {
$i: 10;
@each $class in $classes {
.#{$class} {
z-index: $i;
$i: $i + 10;
}
}
}
@ykarikos
ykarikos / png2svg.sh
Created June 7, 2012 22:17
Convert png to svg using imagemagick and potrace
#!/bin/bash
if [ "$1" == "" ]; then
echo Usage: $0 pngfile
exit 0;
fi
FILE=`basename $1 .png`
if [ ! -e $FILE.png ]; then