Skip to content

Instantly share code, notes, and snippets.

@Bluscream
Bluscream / freegames.js
Created April 19, 2018 00:48
Free Steam Games
(function(){
if( location.href.match( /^https:\/\/store\.steampowered\.com\/account\/licenses\/?$/ ) === null ){
alert( 'Please run this on Steam\'s account page details: https://store.steampowered.com/account/licenses/' );
window.location = 'https://store.steampowered.com/account/licenses/';
return;
}
var freePackages = [];
var total = freePackages.length;
@Bluscream
Bluscream / bans.csv
Last active April 22, 2018 05:31
teamspeak bans
We can make this file beautiful and searchable if this error is corrected: It looks like row 6 should actually have 1 column, instead of 3 in line 5.
ban;reason
.*%.*;% is not allowed in Nicknames!
.*⁢⁢⁢⁢⁢⁢⁢ .*;Please change your Nickname! The UTF8 codec is denied!
.*(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?).*;Nickname!
.*[\[\]].*;[ ] is not allowed in Nicknames!
.*[^A-Za-z0-9\s]+;Allowed characters in nicknames: A-Z, a-z, 0-9
.*[Aa4][Dd][Mm][Ii1][Nn].*;Nickname
.*[Bb][Ll1][Uu]([Ee])?[Ss5][Cc][Rr][Ee3][Aa4][Mm].*;Faking
.*[Ss5][Ee3][Rr][Vv][Ee3][Rr].*;Nickname
@Bluscream
Bluscream / auto_fire.mcr
Last active May 25, 2018 01:34
Shell Shock Live Macros
LABEL : AUTO FIRE
COMMENT : IF FIRE ENABLED
IF IMAGE : Qk3GqAAAAAAAADYAAAAoAAAArgAAAD4AAAABACAAAAAAAAAAAADEDgAAxA4AAAAAAAAAAAAAAABN/wAATf8AAE3/AABN/y4tgf+in/z/o6H8/4uI/f+Fg/3/hIL8/11b+v9SVff/UlX3/1JV9/9WWfj/e3r//4B///9ubtX/AABM/wAATP8AAEz/AABM/wAATP8AAEz/AABM/wAATP8AAEz/AABM/wAATP8AAEz/AABM/wAATP9mZvv/aWj9/11c+P92d/z/dXX8/0xL9P9SU/r/UlP6/1BR+v9ISvj/TEzs/wQDVP8AAEz/AABM/wAATP8AAEz/AABM/wAATf8AAE3/AABN/wAATf8AAE3/AABN/wAATf8AAE3/AABN/wAATf8AAE3/KCjM/zMy8v87O/T/NDPy/zg58/8pLO//Ky7w/y8x8f8sL/L/Ozz5/1FO/P9XU/3/TEv8/0JE+/81NvX/Ly7y/ysq8P8zMvH/TUz2/ywrnv8AAEz/AABM/wAATP8AAEz/AABM/wAATP8AAEz/AABM/wAATP8AAEz/AABM/wAATP8AAEz/Cwtp/01O+/9gX/3/QUD6/yEg9/8hIPf/ISH4/yEi+P8pKvn/Oz38/0xO/P88Pfj/JSXy/yMj8f8ZFu//ExDq/xYT7P8YFu7/KCv4/xcb8v8VGfH/EBPu/w4O6v8LC+j/FRXs/x4e7/83NvX/Ly/y/xUV6/8PD+b/Dw7l/xMR6v8ODeX/ExTs/xga8/8REuv/DQ3k/xAQ5v8QEOb/DAzi/wgI3v8NDuP/ERHn/yMm+f8gI/X/EBTi/xIW4/8xNPL/NTb1/ygo7v8fH+v/EBDn/woL2f8DB8v/CwzX/woM1v8EBsX/AQG3/wIDvv8HC9P/DAzR/wsKzP8VEuH/ExDc/w4O0f8KB8T/CAW+/woIxP8ICMH/Bwe//wUFuv8HBrv/CQe9/wsIwf8HBbf/A
@Bluscream
Bluscream / backup.sh
Last active June 8, 2018 07:11
TeaSpeak scripts
#!/usr/bin/expect -f
set passwd "serveradmin-passwd"
set sid 1
spawn telnet 127.0.0.1 10011
expect "command."
send "login serveradmin $passwd\n"
expect "error id=0 msg=ok"
send "use sid=$sid\n"
expect "error id=0 msg=ok"
send "serversnapshotcreate\n"
@Bluscream
Bluscream / userfilter.txt
Last active April 18, 2025 10:59
My Adguard Userfilter
! Title: Blu's User Filter
! Homepage: https://gist.github.com/Bluscream/f88ad184f5204d0e460d0f25c4ca9e31
! License: https://github.com/AdguardTeam/AdguardSDNSFilter/blob/master/LICENSE
! Description: Bluscream's Adguard User Filter Rules
@@||127.0.0.1^$important,document,extension
@@||192.168.2.58^$important,document
@@||accounts.google.com^$important,document
@@||alternativeto.net^$important
@@||anticope.ml
@Bluscream
Bluscream / hibernate.bat
Last active June 19, 2018 14:58
Autostart
@echo off
setlocal enableDelayedExpansion
for /l %%N in (600 -1 1) do (
set /a "min=%%N/60, sec=%%N%%60, n-=1"
if !sec! lss 10 set sec=0!sec!
cls
choice /c:CN1 /n /m "HIBERNATE in !min!:!sec! - Press N to hibernate Now, or C to Cancel. " /t:1 /d:1
if not errorlevel 3 goto :break
)
cls
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\System\GameConfigStore]
"GameDVR_Enabled"=dword:00000000
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\GameDVR]
"AllowGameDVR"=dword:00000000
@Bluscream
Bluscream / exporter.user.js
Last active August 28, 2021 18:53
Cookie/LocalStorage Export/Import Userscript
// ==UserScript==
// @name Cookie/LocalStorage Export/Import
// @namespace github.com/bluscream
// @version 1
// @description No Description Yet
// @author Bluscream
// @encoding utf-8
// @license GNU GPL v3
// @include http://*
// @include https://*
<?php
/**
* Created by PhpStorm.
* User: blusc
* Date: 7/2/2018
* Time: 6:41 PM
*/
require_once __DIR__ . '/vendor/autoload.php';
include_once 'config.php';
TeamSpeak3::init();
@Bluscream
Bluscream / cloudflare_failover.py
Last active January 5, 2021 09:13
Cloudflare Failover System for free
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Origin: https://gist.github.com/Bluscream/c0f794186d0236e072b1826987c9390e
from json import dumps, loads
from requests import request
from random import choice
from socket import socket, AF_INET, SOCK_STREAM
domain = "" # Your tld
zone_id = "" # Your zoneid