Skip to content

Instantly share code, notes, and snippets.

View DimucaTheDev's full-sized avatar
🐱
Коты правят миром!

Dmitrii DimucaTheDev

🐱
Коты правят миром!
View GitHub Profile
@RichardULZ
RichardULZ / Ascii_Windows1252_RefTable.md
Last active June 21, 2025 02:44
GBstudio Every character in the ascii png (table)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
! " # $ % & ' ( ) * + , - . /
0 1 2 3 4 5 6 7 8 9 : ; < = > ?
@ A B C D E F G H I J K L M N O
P Q R S T U V W X Y Z [ \ ] ^ _
` a b c d e f g h i j k l m n o
p q r s t u v w x y z { | } ~
@skyrising
skyrising / mojang-meta-urls.md
Last active September 10, 2025 00:09
Mojang Meta URLs
@Issykul
Issykul / Office 2019 ISO Links at Microsoft.md
Last active September 10, 2025 01:28
Office 2019 ISO Download Links at Microsoft
@livingflore
livingflore / fuckRedirects.js
Last active September 20, 2023 14:00
remove youtube redirects
var callback = function(mutationsList, observer) {
for(let mutation of mutationsList) {
if (mutation.type === 'childList') {
mutation.addedNodes.forEach((node) => {
if(node instanceof Element && node.hasAttribute('href')) {
var href = node.getAttribute('href');
if(href.match(/https\:\/\/www\.youtube\.com\/redirect\?.+/gm)) {
const urlParams = new URLSearchParams(href);
node.setAttribute('href', urlParams.get('q'));
}