Skip to content

Instantly share code, notes, and snippets.

@hell0again
hell0again / test.sh
Created February 12, 2014 02:24
xmllintとxpathのテスト
#!/bin/sh
FILE=test.xml
EXPR="string(/node/node/@*[local-name()='key'])"
echo '[prepare1. xmllint --version]'
echo $( xmllint --version )
echo ""
echo ""
@hell0again
hell0again / gist:8884353
Created February 8, 2014 14:12
post-mergeでmergeと同時にsubmoduleを自動update
$ cat <<EOF >.git/hooks/post-merge
## mergeと同時にsubmoduleを自動update
echo ""
echo "git submodule update"
git submodule update
EOF
$ chmod a+x .git/hooks/post-merge
@hell0again
hell0again / gist:8505154
Created January 19, 2014 13:41
bashでファイル名の一括置換のdryrun
## .JPGを.jpgに一括リネームしたい
# 単純に置換
/bin/ls -1 *.JPG | pern -npe '$_=~s/.JPG//' | xargs --replace {} mv {} {.JPG,.jpg}
# 長いし式があってるかよくわからないのでdryrunしたい
/bin/ls -1 *.JPG | perl -npe ' $_=~s/.JPG// ' | xargs --replace {} echo mv {}{.JPG,.jpg}
とか
/bin/ls -1 *.JPG | perl -nle 'printf("X=%s; echo mv \${X%.JPG}{.JPG,.jpg};\n", $_)'
var xlsx = require('xlsx');
var _ = require('underscore');
var file = 'test.xlsx';
function parsePos(x) { // "AB" => 26*1 + 1*2 => 28
var str = x.toUpperCase();
var ret = 0;
for(var i=0,len=str.length; i<len; i++) {
ret += Math.pow(26,(len - i -1)) * (str.charCodeAt(i)-64);
@hell0again
hell0again / README
Created January 27, 2013 07:25
ハイマットフルバースト
- chrome,safari用
- マウス移動で適当にロックオン
- バーストはまだない
#!/usr/bin/perl
my $args = {eax=>1,ebx=>2};
my ($eax, $ebx) = @{%$args}{qw/eax ebx/};
print "case1: $eax, $ebx\n";
($eax, $ebx) = @{$args}{qw/eax ebx/};
print "case2: $eax, $ebx\n";