hoge
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
--- | |
gotest: | |
- type: prefix | |
match: "--- PASS" | |
color: green | |
target: line | |
- type: prefix | |
match: "ok" | |
color: green | |
target: line |
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 --git a/additional/config.yaml b/additional/config.yaml | |
new file mode 100644 | |
index 0000000..2fbf0ff | |
--- /dev/null | |
+++ b/additional/config.yaml | |
@@ -0,0 +1 @@ | |
+--- {} | |
diff --git a/config.yaml b/config.yaml | |
new file mode 100644 | |
index 0000000..3777dd0 |
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
javascript:(function(){Q=''+(window.getSelection?window.getSelection():document.getSelection?document.getSelection():document.selection.createRange().text);if(!Q)Q=prompt("Text?","");A=Q.match(/^[a-zA-Z\-\=\"\!\&\.\,\'\s]+$/)?'en/ja/':'ja/en/';if(Q)open('https://www.deepl.com/translator#'+A+encodeURIComponent(Q),'_blank');})() |
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
aaronical | |
abactinal | |
abandonedly | |
abaptiston | |
abarognosis | |
abbassid | |
abdicable | |
abdominocyesis | |
abdominocystic | |
abdominogenital |
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
aboriginalise | |
acanthaster | |
accusatival | |
accusatorial | |
aciculate | |
acidophilic | |
aconitine | |
acusector | |
acoustoelectronics | |
acoustooptics |
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; | |
my $SUBLIME = '/Applications/Sublime\ Text.app/Contents/SharedSupport/bin/subl'; | |
my $BASE_PATH = '/path/to/physical_file'; | |
my $SHORTCUT = '/path/to/Desktop/mylog.md'; | |
my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time); | |
$year += 1900; |
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 Mac: ~/Library/Application Support/Firefox/Profiles/FOOBAR.default/chrome/userChrome.css */ | |
/* hide tab bar */ | |
#TabsToolbar { visibility: collapse !important; } | |
/* hide header of side bar */ | |
#sidebar-header { visibility: collapse; } | |
/* multiple bookmark toolbar */ | |
#personal-bookmarks { | |
display: block; |
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
return sub { | |
my %args = @_; | |
return $sth->fetchall_arrayref(+{}) unless defined $args{print} and $args{print}; | |
my $t = Text::ASCIITable->new(); | |
$t->setCols('explain', 'result'); | |
$t->alignCol({explain => 'right', result => 'left'}); | |
my @cols = @{$sth->{NAME}}; | |
for my $records (@{$sth->fetchall_arrayref}) { |
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
$ perl -MLWP::Simple=get -we 'my %r=(a=>1000, b=>100, c=>120, d=>288, e=>288); for my $room (sort keys %r){ my ($count) = (get("http://api.conbu.net/v1/associations/track_$room") =~ m!:(\d+)!); printf("track".uc($room).": %.2f%%\t%04d/%04d\n", $count/$r{$room}*100, $count, $r{$room}); }' | |
trackA: 44.60% 0446/1000 | |
trackB: 136.00% 0136/0100 | |
trackC: 66.67% 0080/0120 | |
trackD: 75.35% 0217/0288 | |
trackE: 68.40% 0197/0288 |
NewerOlder