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
| sudo apt-get -y update && \ | |
| sudo apt-get -y upgrade && \ | |
| sudo apt install software-properties-common && \ | |
| sudo add-apt-repository multiverse && \ | |
| sudo dpkg --add-architecture i386 && \ | |
| sudo apt-get -y update && \ | |
| sudo apt-get -y upgrade && \ | |
| sudo systemctl reboot | |
| sudo apt-get -y install steamcmd && \ |
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
| <?php | |
| $infile = 'austria.csv'; | |
| $outfile = 'austria.ips'; | |
| $fp = fopen($outfile,'w'); | |
| $handle = fopen($infile, "r"); | |
| if ($handle) | |
| { | |
| while (($line = fgets($handle)) !== false) { | |
| $line = trim($line); |
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
| Logs are held by default in the user profile: | |
| \AppData\Roaming\Microsoft\Windows\PowerShell\PSReadline\ConsoleHost_history.txt | |
| this directory also hosts per-application logs | |
| -------------------------------------------------------------- | |
| Disable Logging... | |
| remove-module psreadline |