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 File::Copy qw/ mv /; | |
use File::Find (); | |
my $dir = $ARGV[0] || '.'; | |
use vars qw/*name *dir *prune/; |
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
########## | |
# Tweaked Win10 Initial Setup Script | |
# Primary Author: Disassembler <[email protected]> | |
# Modified by: alirobe <[email protected]> based on my personal preferences. | |
# Version: 2.6.1, 2017-08-02 | |
# Primary Author Source: https://github.com/Disassembler0/Win10-Initial-Setup-Script | |
# Tweaked Source: https://gist.github.com/alirobe/7f3b34ad89a159e6daa1/ | |
# Tweak difference: | |
# | |
# @alirobe's version is a subset focused on safely disabling telemetry, 'smart' features, and 3rd party bloat ... |
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 bytes; | |
use Carp; | |
my $filename = $ARGV[0] or croak "usage: $0 <ADF filename>"; | |
-f $filename or croak "File does not exist: $filename"; |
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 bytes; | |
use Carp; | |
use File::Copy qw/ cp /; | |
# See: http://www.wsgf.org/dr/simcity-3000/en |
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
# plackup echo_headers.pl | |
use strict; | |
use warnings; | |
use Plack::Request; | |
use JSON; | |
my $app = sub { | |
my $req = Plack::Request->new(shift); |
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 Dancer2::Plugin::RootURIFor; | |
use strict; | |
use warnings; | |
my $VERSION = 0; | |
use URI::Escape; | |
use Dancer2::Plugin; |
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
<meta http-equiv="refresh" content="10" /> | |
<html> | |
<frameset cols="*"> | |
<frame id="todo" src="todo.txt"> | |
</frameset> | |
</html> |
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
use warnings; | |
load_plugin qw( | |
Colors | |
Interrupt | |
Completion | |
CompletionDriver::INC | |
CompletionDriver::LexEnv | |
CompletionDriver::Keywords | |
CompletionDriver::Methods |
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
sendkeys: sendkeys.cpp | |
g++ -o sendkeys sendkeys.cpp -L/usr/lib64/ -lX11 | |
all: sendkeys |