This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| # hagiyakisuperdry tweet / earthquake plugin | |
| # | |
| # superdry: http://shindanmaker.com/43570 | |
| # | |
| require 'httpclient' | |
| require 'nokogiri' | |
| Earthquake.init do | |
| command :hagi do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| # kenjiskaywalker tweet / earthquake plugin | |
| # | |
| # superdry: http://shindanmaker.com/43570 | |
| # | |
| require 'httpclient' | |
| require 'nokogiri' | |
| Earthquake.init do | |
| command :kenji do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 |
OlderNewer