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
has xslate => ( | |
isa => 'Text::Xslate', | |
is => 'ro', | |
lazy_build => 1, | |
); | |
sub _build_xslate { | |
my ( $self ) = @_; | |
my $xslate; | |
my $obj2dir = sub { |
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
usage: ./.local/Uber Entertainment/Planetary Annihilation/stable/server [options] | |
| --log-network-traffic : Log network traffic to given file | |
| --http : Enables http server | |
| --ubernet-url : Sets UberNet service url | |
| --monitor-url : Sets UberNet monitor service url | |
| --ubernet-secret : Sets UberNet secret key for server to server calls | |
| --lobby-id : Sets the UberNet lobby id | |
| --server-id : Sets the UberNet server id | |
| --build-id : Set the build id | |
| --output-dir : Specify directory to write log files, replays, etc. |
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
Intermediate/* | |
Saved/* | |
Build/* | |
Binaries/* | |
Plugins/*/Intermediate/* | |
Plugins/*/Binaries/* | |
.vs/* | |
*.VC.db | |
*.VC.VC.opendb | |
WROM.sln |
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
1c1 | |
< 0000000: 4552 9478 0900 0000 0219 0000 0007 0000 ER.x............ | |
--- | |
> 0000000: 4552 9478 0900 0000 0219 0000 0008 0000 ER.x............ | |
3,4c3,4 | |
< 0000020: 0101 0003 0000 0000 0000 02fe ffff ff00 ................ | |
< 0000030: 0500 0000 0000 0001 0100 0400 0000 0000 ................ | |
--- |
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
#!/bin/sh | |
set +x | |
TIMESTAMP=$( date +%y%m%d_%H%M ) | |
~/save_server | |
cd ~/iceage | |
tar cvzf ~/backups/iceage_${TIMESTAMP}.tar.gz ShooterGame/Saved |
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
Installed via: | |
./Configure -des -Dprefix=/opt/perl | |
or: | |
Try out my https://metacpan.org/pod/installto ;) (which generates the export.sh) | |
Be sure to install local::lib and cpanm into this Perl |
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
struct ethernet_header { | |
uint8_t destination[6]; | |
uint8_t source[6]; | |
uint8_t type[2]; | |
}; | |
struct ip_header { | |
uint8_t version; | |
uint8_t services_field; |
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
[ProtoTravis] | |
source = Dist::Zilla::PluginBundle::Author::KENTNL::travis_yml | |
arg = 1 | |
arg = 1 | |
somemorearg = value | |
sub travis_yml { | |
my ( $self, %args ) = @_; |
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
t/00-load.t ..................... ok | |
t/colorpm.t ..................... ok | |
t/config.t ...................... ok | |
t/core.t ........................ ok | |
t/core_audio.t .................. skipped: Perl not compiled with 'useithreads' | |
t/core_audiospec.t .............. skipped: Perl not compiled with 'useithreads' | |
t/core_cd.t ..................... ok | |
t/core_error.t .................. ok | |
t/core_events.t ................. ok | |
t/core_joystick.t ............... ok |
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
my @list = (<<__EOC__,<<__EOD__, | |
test | |
__EOC__ | |
test2 | |
__EOD__ | |
<<__EOC__,<<__EOD__); | |
test | |
__EOC__ | |
test2 | |
__EOD__ |