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
| 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
| #### 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
| 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
| #!/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
| #/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
| # install choco | |
| Set-ExecutionPolicy Bypass -Scope Process -Force; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
| choco install -y steamcmd python vcbuildtools | |
| # install magic-wormhole for admin purposes | |
| python -m pip install --upgrade pip | |
| pip install --user incremental magic-wormhole | |
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
| # PC | |
| ## Good | |
| https://www.newegg.com/Product/Product.aspx?item=9SIAHT38MD7290 | |
| https://www.newegg.com/Product/Product.aspx?Item=N82E16883102507 | |
| ## Better | |
| https://www.amazon.com/CYBERPOWERPC-Xtreme-GXiVR8060A5-i5-8400-GeForce/dp/B0757DVF4Z/ |
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
| // ==UserScript== | |
| // @name Robinhooder | |
| // @namespace https://robinhood.com/ | |
| // @version 0.1 | |
| // @description Enhance Robinhood by showing existence/non-existence of open orders in the dashboard | |
| // @author Chris Grimmett <chris@grimtech.net> | |
| // @match https://robinhood.com/* | |
| // @grant none | |
| // @require https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js | |
| // @run-at document-idle |