こんにちは@shiworkです.
とても悲しいことに、女子高生声優の木戸衣吹ちゃんの有料配信のマガジン
このサービスが終了するのに伴い木戸衣吹ちゃんの配信も終了。そして、2014/2末に閲覧もできなくなってしまいます。
- 閲覧期限 2014年3月末
| for i in `ps aux | egrep 'ffmpeg|mplayer' | grep foltia | gawk '{print $2}'` | |
| do | |
| TIME=`ps -o lstart --noheader -p $i`; | |
| START=`date +%s -d "$TIME"`; | |
| NOW=`date +%s`; | |
| PASSTIME=`expr $NOW - $START`; | |
| if [ $PASSTIME -gt 12000 ]; then | |
| kill $i; | |
| echo "kill $i at "`date`; |
| find ./ -mtime +10 -name "*.m2t" -print0 | xargs -0 -I% rename .m2t .ts % |
| diff --git a/perl/captureimagemaker.pl b/perl/captureimagemaker.pl | |
| index 384e979..47a6d4d 100755 | |
| --- a/perl/captureimagemaker.pl | |
| +++ b/perl/captureimagemaker.pl | |
| @@ -117,7 +117,7 @@ unless (-e $capimgdirname ){ | |
| # キャプチャ入れるディレクトリ作成 | |
| # $captureimgdir = "$tid"."-"."$countno"."-"."$date"."-"."$time"; | |
| $captureimgdir = $filename; | |
| -$captureimgdir =~ s/\.m2p$|\.m2t$|\.m2v$//; | |
| +$captureimgdir =~ s/\.m2p$|\.m2t$|\.ts$|\.m2v$//; |
| /* your source here */ | |
| .mg-t20 {display:none !important;} | |
| #main-ntg .area-pickupgame {display:none;} | |
| #foot {display:none;} |
| /** | |
| * Opens the file and retrieves its contents. | |
| * | |
| * During construction the given file is checked whether it is readable and | |
| * if the $validate argument is true a PHP Lint action is executed to | |
| * check whether the there are no parse errors. | |
| * | |
| * By default the Lint check is disabled because of the performance hit | |
| * introduced by this action. | |
| * |
こんにちは@shiworkです.
とても悲しいことに、女子高生声優の木戸衣吹ちゃんの有料配信のマガジン
このサービスが終了するのに伴い木戸衣吹ちゃんの配信も終了。そして、2014/2末に閲覧もできなくなってしまいます。
| find ./ -mtime +10 -name "*.ts" -type f -maxdepth 1 | xargs |
| find ./ -mtime +10 -name "*.ts" -type f -maxdepth 1 | xargs rm |
Subsonicにちょっと手を加えたかったのでsvnからgitに移し替えた。
git2svnについては未だ特に方法は調べてないが、とりあえずコレでSVNの修正は取得できてるっぽい。
[svn-remote "svn"]
noMetadata = 1
url = http://svn.code.sf.net/p/subsonic/code
fetch = trunk:refs/heads/svn/trunk
branches = branches/*:refs/heads/svn/*
| module Hoge { | |
| export class Sample { | |
| constructor() { | |
| } | |
| methodA():void { | |
| alert('methodA'); | |
| } |