Skip to content

Instantly share code, notes, and snippets.

View without-ordinary's full-sized avatar

Without Ordinary without-ordinary

View GitHub Profile
@styler3
styler3 / chat-popups.txt
Last active January 30, 2025 06:16
uBlock Origin chat popup blocker
*.intercomcdn.com
*.tawk.to
*.livechatinc.com
*.olark.com
*.onesignal.com
*.freshdesk.com
*.zopim.com
*.freshchat.com
*.novocall.co
*.tidio.co
@FelixWolf
FelixWolf / czText.lsl
Created October 4, 2016 04:00
A simple text on a prim engine for LSL
//Tiny text engine
string __CZChrLst=" !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~"; //"
list __CZTexLst=["b0f2fc68-94ce-30c5-2d44-e4d104cabff3","1acf3dec-ea5c-3024-bc3c-d97881ac3228","cf9a9675-cac2-7105-c528-7f903c74aa0d","2c5219c6-a781-6a4f-7a1d-7b0b622669a8"];
//Internal function
cziSetChars(string _O, integer _L, integer _S){
integer _X=llSubStringIndex(__CZChrLst,llGetSubString(_O,0,0));
integer _Y=llSubStringIndex(__CZChrLst,llGetSubString(_O,1,1));
integer _M=0;
if (_X<64&&_Y>64)_M=1;
else if(_X>64&&_Y<64)_M=2;