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/bash | |
# MEANT TO BE RUN AS ROOT | |
# Install docker | |
curl -fsSL https://get.docker.com -o get-docker.sh | |
sudo sh get-docker.sh | |
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/bash | |
# Depends on expect | |
# install with sudo apt-get -y install expect | |
wget https://files.teamspeak-services.com/releases/client/3.2.3/TeamSpeak3-Client-linux_amd64-3.2.3.run | |
chmod +x ./TeamSpeak3-Client-linux_amd64-3.2.3.run | |
expect <<- DONE |
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
version: '3.2' | |
services: | |
squad: | |
image: "cm2network/squad" | |
network_mode: "host" | |
volumes: | |
- /root/squad/cfg:/home/steam/squad-dedicated/Squad/ServerConfig | |
environment: | |
- RCONPORT=21114 | |
- FIXEDMAXPLAYERS=20 |
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
#### Contents of the preconfiguration file (for stretch) | |
### Localization | |
# Preseeding only locale sets language, country and locale. | |
d-i debian-installer/locale string en_US | |
# The values can also be preseeded individually for greater flexibility. | |
#d-i debian-installer/language string en | |
#d-i debian-installer/country string NL | |
#d-i debian-installer/locale string en_GB.UTF-8 | |
# Optionally specify additional locales to be generated. |
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
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions | |
Enable-RemoteDesktop | |
cinst notepadplusplus | |
cinst libreoffice | |
cinst vlc | |
cinst firefox | |
cinst googlechrome | |
cinst vcredist2008 | |
cinst vcredist2012 |
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
Verifying my Blockstack ID is secured with the address 1MH5RN1cnH2Ejar4E5M85MSEGKa5kPEnvy https://explorer.blockstack.org/address/1MH5RN1cnH2Ejar4E5M85MSEGKa5kPEnvy |
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
module['exports'] = function lolSummoner(hook) { | |
hook.res.json(hook.params); | |
http.get('https://na1.api.riotgames.com/lol/summoner/v3/summoners/by-name/'+hook.params.name, function(res) { | |
hook.debug(hook.params.name + " is the summoner name requested" + res.body); | |
hook.res.end(res.body); | |
}).on('error', function(e) { | |
hook.debug(e); | |
hook.res.end(e); | |
}); |
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
--- | |
- fail: | |
when: var1 is undefined or | |
var2 is undefined or | |
var3 is undefined |
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
--- | |
- name: create array of installable package names | |
set_fact: | |
myItems: | |
- firefox | |
- googlechrome | |
- vcredist2008 | |
- vcredist2012 | |
- notepadplusplus |