This file contains 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/sh | |
LIVER_ID=17861268 | |
LIVER_NAME=ゆかりん | |
LINE_NOTIFY_TOKEN=SEtYoUrpeRsOnaLLInEnOtiFysaCceSStOkeNaTHEre | |
function get_last_started_at () { | |
live_status_file=$HOME/.mixch_${LIVER_ID}_started_at | |
if [ ! -f $live_status_file ] | |
then |
This file contains 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
rAzB5a4K5Q8 | |
MBjDhdmRBeU | |
_8k62x3J3Uc | |
ygR-Lw_JHK0 | |
4-q9iZzmRy0 | |
vSR6nN2NvNc | |
dtlJn7Fvi80 | |
15ue8P5nSgU | |
53TCpmi8Kk0 | |
TyoBzz_b-1s |
This file contains 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
package Acme::Ecchi; | |
use strict; | |
use warnings; | |
use utf8; | |
use Mouse; | |
use Imager; | |
use Imager::Color; | |
has width => ( |
This file contains 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
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use utf8; | |
use Text::CSV_XS; | |
use File::Basename; | |
use File::Spec; | |
# 下記 URL から従業員別にダウンロードした CSV ファイルを |
This file contains 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
#!/usr/bin/env perl | |
package InsideOut; | |
use strict; | |
use warnings; | |
our %obj; | |
sub new { |
This file contains 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
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use Convert::TNEF; | |
use File::Basename; | |
use File::Spec; | |
use File::Temp qw(tempdir); | |
use Encode; |
This file contains 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
diff -urN Calendar-Japanese-Holiday-0.04/lib/Calendar/Japanese/Holiday.pm Calendar-Japanese-Holiday-0.05/lib/Calendar/Japanese/Holiday.pm | |
--- Calendar-Japanese-Holiday-0.04/lib/Calendar/Japanese/Holiday.pm 2015-01-06 21:16:19.000000000 +0900 | |
+++ Calendar-Japanese-Holiday-0.05/lib/Calendar/Japanese/Holiday.pm 2019-01-17 12:46:16.729209680 +0900 | |
@@ -13,14 +13,61 @@ | |
our @EXPORT = qw(getHolidays isHoliday); | |
-our $VERSION = '0.04'; | |
+our $VERSION = '0.05'; | |
This file contains 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
/* | |
日清ラ王 夏のラ王の数字の羅列を文字列に変換する | |
http://www.rao.jp/natsuno_rao/ | |
*/ | |
var pokebell = '0ワオン゛゜6789EアイウエオABCDJカキクケコFGHIOサシスセソKLMNTタチツテトPQRSYナニヌネノUVWX/ハヒフヘホZ?!-★マミムメモ¥&♥☎.ヤ(ユ)ヨ*# .5ラリルレロ1234'; | |
var chars = pokebell.split(''); | |
var charMap = []; | |
for (var i = 0; i < 10; i++) charMap.push(chars.splice(0, 10)); |
This file contains 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
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use utf8; | |
{ | |
binmode STDOUT, ':utf8'; | |
local $| = 1; |
This file contains 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
for (var i = 0; i < questionArr.length; i++) { | |
var qa = $.grep(questionArr[i].split(/\n/), function(n){ | |
return n !== '' && ! n.match(/^\(0\)/); | |
}); | |
qa[0] = qa[0].replace(/^(.+)_(ANT|SYN)$/, function(){ | |
return '「' + RegExp.$1 + '」の' + (RegExp.$2 === 'ANT' ? '対' : '類') + '義語は'; | |
}); | |
qa[1] = qa[1].replace(/^\(1\)(.+)/,'「$1」'); | |
console.log(qa.join('')); | |
} |
NewerOlder