The only cross-platform browser that fits in a Gist!
One line install. Works on Linux, MacOSX and Windows.
$> npm install http://gist.github.com/morganrallen/f07f59802884bcdcad4a/download
import { v4 as uuid } from 'uuid'; | |
export function generateId() { | |
return uuid(); | |
} | |
const v4 = new RegExp(/^[0-9A-F]{8}-[0-9A-F]{4}-4[0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}$/i); | |
console.log(generateId().match(v4)); | |
//console.log(generateId().length) |
#!/usr/bin/env python3 | |
import cfscrape # install with `pip install cfscrape` | |
import re | |
import os | |
import json | |
from packaging.version import Version | |
def build_multimc_patch_json(mc_version, optifine_version): | |
patch = { |
############################################################################### | |
# | |
# Script to enhance your Privacy on Windows 10 | |
# New-ItemProperty is used to set registry values, therefore the "if exist" | |
# operation is not requiered <img src="https://s.w.org/images/core/emoji/72x72/1f642.png" alt="🙂" class="emoji" draggable="false"> | |
# | |
# created 16.12.2015 Michael Albert [email protected] | |
# | |
# changes: | |
# 1.0.1 Init release |
### | |
### | |
### UPDATE: For Win 11, I recommend using this tool in place of this script: | |
### https://christitus.com/windows-tool/ | |
### https://github.com/ChrisTitusTech/winutil | |
### https://www.youtube.com/watch?v=6UQZ5oQg8XA | |
### iwr -useb https://christitus.com/win | iex | |
### | |
### OR take a look at | |
### https://github.com/HotCakeX/Harden-Windows-Security |
// ==UserScript== | |
// @name Steam Queue Auto Discoverer | |
// @description Discover the Steam queue three times to get the sale cards | |
// @version 2.3.0 | |
// @namespace https://gist.github.com/xPaw/73f8ae2031b4e528abf7 | |
// @icon https://store.steampowered.com/favicon.ico | |
// @match https://store.steampowered.com/explore* | |
// @grant none | |
// ==/UserScript== |
<?php | |
/** | |
* Dirty, dirty Reddit bot: Decronym | |
*/ | |
class Reddit { | |
const USERNAME = 'Decronym'; | |
const PASSWORD = '***'; | |
const CLIENTID = '***'; | |
const SECRET = '***'; |
#EXTM3U | |
#EXTINF:-1,Digitally Imported - Ambient | |
http://pub1.diforfree.org:8000/di_ambient_hi | |
#EXTINF:-1,Digitally Imported - Big Room House | |
http://pub1.diforfree.org:8000/di_bigroomhouse_hi | |
#EXTINF:-1,Digitally Imported - Breaks | |
http://pub1.diforfree.org:8000/di_breaks_hi |
function customJoin(gameid) { | |
var modal = ShowBlockingWaitDialog('Joining game', 'Attempting to join game...'); | |
$J.post( | |
'http://steamcommunity.com/minigame/ajaxjoingame/', | |
{ 'gameid' : gameid } | |
).done(function(json) { | |
if (json.success == '1') { | |
modal.Dismiss(); | |
modal = ShowDialog('Joining game', 'Game found! Redirecting you in a few seconds.'); | |
window.setTimeout("top.location.href = 'http://steamcommunity.com/minigame/towerattack/'", 1500); |