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
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use utf8; | |
use DateTime; | |
use Digest::SHA1 qw(sha1_hex); | |
use Encode; | |
use File::Path qw/make_path/; | |
use HTML::Parser; |
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
use strict; | |
use warnings; | |
use Net::Domain::ExpireDate 'expire_date'; | |
use Time::Seconds; | |
use Data::ICal; | |
use Data::ICal::Entry::Todo; | |
use Data::ICal::Entry::Event; |
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
<?xml version="1.0"?> | |
<root> | |
<appdef> | |
<appname>SLACK</appname> | |
<equal>com.tinyspeck.slackmacgap</equal> | |
</appdef> | |
<item> | |
<name>For Slack CTRL+TAB=move unread channel</name> | |
<identifier>private.app_slack_move_channel_with_ctrl_tab</identifier> | |
<only>SLACK</only> |
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
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
my $count = shift || 20; | |
my @random = qw/R R F F U U L D M/; | |
my $rate_2 = 0.3; | |
my $rate_prime = 0.3; | |
my @result; |
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
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
use utf8; | |
binmode STDOUT, ':utf8'; | |
binmode STDERR, ":utf8"; | |
use Encode; | |
use LWP::Simple 'get'; |
OlderNewer