Skip to content

Instantly share code, notes, and snippets.

View Coldblackice's full-sized avatar

Coldblackice

  • NYC
View GitHub Profile
%add = $true;
%clones = ""; %cloneCount = 0;
for (%i=0;%i<$length(%PastUsers{$context});%i++) {
if ($0 == $mask.nick(%PastUsers{$context}[%i])) {
%add = $false;
}
elseif ($2 == $mask.host(%PastUsers{$context}[%i])) {
if (%cloneCount < 10) %clones <, " \r!n\r$mask.nick(%PastUsers{$context}[%i])\r";
%cloneCount++;
}
@joepie91
joepie91 / 1_changelog.md
Last active March 27, 2018 00:20
Remove Wired / V3 "ad-blocker veil"

Supported sites:

  • Wired
  • V3.co.uk

Requests for other sites are welcome (admin@cryto.net).

Changelog

  • July 25, 2016: Added support for V3.co.uk.
@pietvandongen
pietvandongen / icheckmovies2imdb
Last active March 31, 2019 23:52 — forked from ohheh/letterboxdbookmarklet.js
A couple of bookmarklets to help you quickly find a movie on iCheckMovies from another site.
javascript:{var link = document.getElementsByClassName('iconIMDB')[0].href;try{window.open(link);}catch(e){}};void(0);
@chuckreynolds
chuckreynolds / block.twitter.live.txt
Last active April 13, 2019 21:40
Block script to put into Ublock Origin Filters to get rid of Twitter's Live Video sidebar object
twitter.com##.is-playing.module.LiveVideoHomePageModule
twitter.com##.roaming-module.LiveVideoHomePageModuleContainer
ActivateOrLaunch(appName, appExe, appPath)
{
if WinExist("ahk_exe " . appExe)
{
WinActivate
}
else
{
SplashTextOn, , , Launching %appName%
Run, %appPath%
@tkmru
tkmru / userDBs.txt
Created March 25, 2014 17:34
PEiD's userDB.txt
UserDB.txt URLs (use your own flavor):
http://www.sysreveal.com/tag/userdb-txt/
http://handlers.sans.org/jclausing/userdb.txt
https://github.com/cuckoobox/cuckoo/blob/master/data/peutils/UserDB.TXT
http://research.pandasecurity.com/blogs/images/userdb.txt
@rstrube
rstrube / gist:6567019bb467c81dc3b445bca2190380
Created September 18, 2019 00:42
SteamVR 1.8.2 Beta System Report
This file has been truncated, but you can view the full file.
SteamVR System Report created Tue Sep 17 18:35:38 2019
<Report>
SteamVR Version: 1.8.2 (1568754983)
SteamVR Date: 2019-09-17
Steam: Public
Steam Branch: beta
Steam AppID: 250820
Tracking: lighthouse
OS: Linux version 5.0.0-27-generic (buildd@lgw01-amd64-016) (gcc version 8.3.0 (Ubuntu 8.3.0-6ubuntu1)) #28-Ubuntu SMP Tue Aug 20 19:53:07 UTC 2019
@ExE-Boss
ExE-Boss / export-from-stylish.py
Last active March 11, 2021 08:05 — forked from f1u77y/export-from-stylish.py
Export styles from Stylish for Firefox
#! /usr/bin/env python3
import os.path
import glob
import sqlite3
import json
def main():
styles_glob = os.path.expanduser('~/AppData/Roaming/Mozilla/Firefox/Profiles/*.default/stylish.sqlite');
styles_path = glob.glob(styles_glob)[0];
@zsoumya
zsoumya / readme.md
Last active June 16, 2021 09:41
Docker Cheat Sheet

Docker Cheat Sheet

Stop all containers

docker container stop $(docker container ls -aq)

Remove all containers

docker container rm $(docker container ls -aq)

#!/usr/bin/perl -wl
use Net::DNS;
use Modern::Perl;
use Time::HiRes qw(tv_interval gettimeofday);
my @domains = ('perl.org','cpan.org','perlmonks.org','perlfoundation.org','perlweekly.com','perlbuzz.com','perlsphere.net', 'brukere.startsiden.no', 'www.abcnyheter.no');
my @servers = ('77.40.177.113', '195.159.0.100', '195.159.0.200');
my $res=Net::DNS::Resolver->new;