Skip to content

Instantly share code, notes, and snippets.

View SaphireLattice's full-sized avatar
🐲
Rawr!

Saphire Lattice SaphireLattice

🐲
Rawr!
View GitHub Profile

Just assorted collection of useful uBlacklist filter snippets to throw into your subscriptions or main list

For context: uBlacklist is a browser extension that allows you to block sites from appearing in search based on the URL matching a regular expression pattern.

  • dll-spam.txt - Filter out sites that just SEO spam for any query related to DLLs, offering magic programs that just show you ads or tell you to reinstall windows or whatever. At best - useless, at worst - entirely malware. It does include some random blogs that just have... no author info or anything on them, generic "site about itself" stuff? They are... questionably helpful, I guess. Can always disable the filter?
@SaphireLattice
SaphireLattice / indiewiki-ublacklist.txt
Last active March 4, 2024 16:38
Indie Wiki Buddy - uBlacklist format
*://animalcrossing.fandom.com/de/*
*://ark.fandom.com/de/*
*://detektivconan.fandom.com/*
*://minecraft.fandom.com/de/*
*://pokemon.fandom.com/de/*
*://starcitizen.fandom.com/de/*
*://terraria.fandom.com/de/*
*://tombraider.fandom.com/de/*
*://2xko.fandom.com/*
*://acecombat.fandom.com/*
@SaphireLattice
SaphireLattice / discord_barcode.js
Last active August 18, 2023 03:22
A Code128b barcode generator for Discord, doing cursed things to spoilers
const code128b = [
{ char: " ", pattern: "11011001100" },
{ char: "!", pattern: "11001101100" },
{ char: '"', pattern: "11001100110" },
{ char: "#", pattern: "10010011000" },
{ char: "$", pattern: "10010001100" },
{ char: "%", pattern: "10001001100" },
{ char: "&", pattern: "10011001000" },
{ char: "'", pattern: "10011000100" },
{ char: "(", pattern: "10001100100" },
@SaphireLattice
SaphireLattice / .zshrc
Last active November 19, 2024 12:31
My zshrc!
[[ -o login ]] && source ~/.zshenv || touch ~/.zshenv # /etc/profile can override zshenv PATH
### ESSENTIALS ###
export TZ=Etc/GMT-6
export LANG="en_GB.UTF-8"
export LANGUAGE="en_GB.UTF-8"
# XDG home config cleanup {{{
@SaphireLattice
SaphireLattice / quine_builder.js
Last active August 21, 2019 10:30
Quine builder
const printOutput = true;
// 0123456789AB C D
console.log((()=>"console.log("+(alph="(),$=>[|]+-0\\\"",src=`
(
(index,temp,names,alphabet,source) =>
names
[names[++index]]
[names[++index]]
(source,
@SaphireLattice
SaphireLattice / keybase.md
Last active June 25, 2019 14:59
keybase.md

Keybase proof

I hereby claim:

  • I am SaphireLattice on github.
  • I am saphire (https://keybase.io/saphire) on keybase.
  • I have a public key whose fingerprint is E367 DE5F 5560 78E2 29D5 B5F2 58E8 3E36 BFDC EE93

To claim this, I am signing this object:

import xml.etree.ElementTree as ET
import os.path as path
import os
import sys
tree = ET.parse(sys.argv[1])
root = tree.getroot()
def tryfind(src, what):
ls = os.listdir(src)
@SaphireLattice
SaphireLattice / day6.lua
Last active December 7, 2017 04:39
Advent of code - Day 6 - Lua
mem = {[1] = "0 5 10 0 11 14 13 4 11 8 8 7 1 4 12 11"}
--mem = {[0] = "0 2 7 0"}
function split(str)
local ret = {}
local i = 1
for text in string.gmatch(str, "%S+") do
ret[i] = tonumber(text)
i = i + 1
end
@SaphireLattice
SaphireLattice / invisitext-mobile.css
Last active November 22, 2017 16:48
Invisitext-o-gone - Mobile edition (Firefox)
@-moz-document domain("forums.spacebattles.com"), domain("forums.sufficientvelocity.com"), domain("forum.questionablequesting.com"), url-prefix("https://xenforo.com/community/") {
span[style*="Transparent"], span[style*="transparent"], span[style*="TRANSPARENT"] {
text-shadow: 0px 1px 1px #4b2972, 0px -1px 1px #4b2972 !important;
color: rgba(114, 26, 214, 100) !important;
}
}
@-moz-document url-prefix("https://xenforo.com/community/"), domain("forums.spacebattles.com"), domain("forums.sufficientvelocity.com"), domain("forum.questionablequesting.com") {
span[style*="Transparent"], span[style*="transparent"], span[style*="TRANSPARENT"] {
color: white;