Skip to content

Instantly share code, notes, and snippets.

View filipnyquist's full-sized avatar

filipnyquist filipnyquist

View GitHub Profile
@filipnyquist
filipnyquist / csgo-do-deploy
Last active December 20, 2016 13:26 — forked from andrewl3wis/csgo-do-deploy
Very quick and dirty script to install a CSGO Dedicated server on a Digital Ocean Droplet using User Data
#!/bin/bash
sudo apt-get update
sudo apt-get install -y lib32gcc1 unzip
useradd -m steam
su -c "wget https://gist.githubusercontent.com/Fillerix99/f4a8ab2666aceeff905c67b5927f59c4/raw/79efc1d1351a883a6a51808e894fd2b67f470aa8/csgo-userspace" - steam
su -c "chmod +x csgo-userspace" - steam
su -c "./csgo-userspace" - steam
If you find the following useful my donation address is: aEgoFC75sP78gT55em1QYcL8DNYZ78ewJ5
1. Go here: https://console.aws.amazon.com/ec2sp/v1/spot/home?region=us-east-1
2. Click: "Request Spot Instances"
3. Request type: "Request and Maintain"
4. Choose how ever many servers/vcpus you want in the "Target Capacity" section.
@filipnyquist
filipnyquist / guess_for_app.py
Last active January 1, 2016 19:56 — forked from Dinnerbone/guess_for_app.py
Save all files (app list credit to xPaw). Run the solver with: `python guess_for_password.py xpaws_app_list.txt PASSWORD_TO_TRY` or `python guess_for_app.py APP_ID list_of_passwords_in_a_file.txt`
from twisted.internet import reactor, defer, threads
from twisted.logger import Logger, textFileLogObserver, globalLogPublisher
import time, sys, requests, random
log = Logger()
reactor.suggestThreadPoolSize(20)
fread=open("proxy.txt").readline().rstrip()
proxies = {'http' : fread}
def try_password(password, app, real):
try: