Deploy a server to packet.net
Type 2A - Ubuntu 17.04
ssh into it.
Install Docker. (Yes we use Docker to build Docker)
This is a old docker, but It's good for us. apt install docker.io
import sys | |
import math | |
# Deliver more amadeusium to hq (left side of the map) than your opponent. Use radars to find amadeusium but beware of traps! | |
# height: size of the map | |
width, height = [int(i) for i in input().split()] | |
NONE = -1 | |
ROBOT_ALLY = 0 |
Deploy a server to packet.net
Type 2A - Ubuntu 17.04
ssh into it.
Install Docker. (Yes we use Docker to build Docker)
This is a old docker, but It's good for us. apt install docker.io
my $current_DATAMODELCLASS; | |
my %table_catalog=('EventParsing_modele' => {} | |
,'EventParsingItem_modele' => {} | |
,'EventParsingItemRegExpr_modele' => {} | |
); | |
foreach my $current_DATAMODELCLASS (qw(EventParsing EventParsingItem EventParsingItemRegExpr)){ | |
print "DEBUG: $current_DATAMODELCLASS\n"; | |
foreach my $data_m_record (@DataModelColumn_table){ | |
if ($data_m_record->[$DataModelColumn_idx{DATAMODELCLASS}] eq "$current_DATAMODELCLASS") { |
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
use utf8; | |
use Spreadsheet::XLSX; | |
use Text::CSV; | |
use Data::Dumper; | |
my %city_data; |
#!/usr/bin/perl | |
use strict; | |
use warnings; | |
my $infile = $ARGV[0]; | |
my @data_struct; | |
my %data_idx; | |
my %capacity_groupby; | |
my $index=0; |