Skip to content

Instantly share code, notes, and snippets.

View ThexXTURBOXx's full-sized avatar
💻
Working

Nico Mexis ThexXTURBOXx

💻
Working
View GitHub Profile
@ThexXTURBOXx
ThexXTURBOXx / downloader.py
Created June 11, 2024 06:58 — forked from JuanjoSalvador/downloader.py
Extracts and decrypt a list of adf.ly links from a forum's post
# -*- coding: utf-8 -*-
import base64, requests, os, re, sys
from bs4 import BeautifulSoup
def _crack(code):
zeros = ''
ones = ''
for n,letter in enumerate(code):
@ThexXTURBOXx
ThexXTURBOXx / bchcode-example.js
Created March 5, 2024 14:27 — forked from bellbind/bchcode-example.js
[JavaScript] Programming Polynomial and Galois Field and Implementing Reed-Solomon code
import {PF} from "./pf.js";
import {GF} from "./gf.js";
import {GF2n} from "./gf2n.js";
import {BCHCode} from "./bchcode.js";
import {Polynomial, PolynomialUtils} from "./polynomial.js";
{
console.log("[BCHCode with GF]");
const gf = GF(PF(2), 4, [1, 1, 0, 0, 1]);