Skip to content

Instantly share code, notes, and snippets.

@hagiyaki
hagiyaki / fukkatsu.sh
Created April 24, 2013 07:16
earthquake監視マン
while true
do
CHK_PROC=`ps aux|grep earthquake|grep -v grep|wc -l`
if [ ${CHK_PROC} -eq 0 ]; then
gnome-terminal -e earthquake
sleep 2
fi
done
@hagiyaki
hagiyaki / hagidry.rb
Created June 13, 2013 16:31
hagiyakiスーパードラァイ
# -*- coding: utf-8 -*-
# hagiyakisuperdry tweet / earthquake plugin
#
# superdry: http://shindanmaker.com/43570
#
require 'httpclient'
require 'nokogiri'
Earthquake.init do
command :hagi do
@hagiyaki
hagiyaki / kenjisky.rb
Created June 14, 2013 11:26
ケンジィスゥカァイウォォカァァァ
# -*- coding: utf-8 -*-
# kenjiskaywalker tweet / earthquake plugin
#
# superdry: http://shindanmaker.com/43570
#
require 'httpclient'
require 'nokogiri'
Earthquake.init do
command :kenji do
@hagiyaki
hagiyaki / kusony.user.js
Created September 18, 2013 12:48
日本だけ遅いのクソ
// ==UserScript==
// @name sony kuso
// @version 0.1
// @description ソニー倒産してくれ頼む
// @include *
// ==/UserScript==
document.body.innerHTML = document.body.innerHTML.replace(/(PS\s*4|PlayStation\s*4|プレステ\s*4|プレイステーション\s*4)/g, '日本だけ発売が遅い$1')
@hagiyaki
hagiyaki / juniper-mib-renamer.sh
Created April 15, 2014 16:18
引数ディレクトリのmibリネームするやつ
#!/bin/bash
for f in `ls $1/*.txt`
do
name=`grep "DEFINITIONS" $f|grep "BEGIN"|sed -e 's/^[ \t]*//g'|cut -f1 -d" "`
mv $f $1/$name.mib
done