Skip to content

Instantly share code, notes, and snippets.

View rommix0's full-sized avatar

ROMMIX rommix0

  • Wisconsin
View GitHub Profile
@EllieTheYeen
EllieTheYeen / actuallyfunctioningpath.gif
Last active January 22, 2025 20:46
A test where I implemented a pathfinding algorithm without actually looking up how to write one for the challenge and it works most of the time
actuallyfunctioningpath.gif
@fschwar4
fschwar4 / sinc_interpolation.py
Last active October 15, 2025 21:54
Fast Python implementation of Whittaker–Shannon / sinc / bandlimited interpolation.
import finufft
import numpy as np
import scipy.fft as sfft
from numpy.typing import NDArray
def sinc_interpolation(x: NDArray, s: NDArray, u: NDArray) -> NDArray:
"""WhittakerShannon or sinc or bandlimited interpolation.
Args:
@fawazahmed0
fawazahmed0 / breach.txt
Last active November 26, 2025 17:37
Email and password breach collection list
# Please Note, I am sharing this, hoping this will be used for good public use, such as data analysis, penetration testing etc
# These links are already available all over the internet
# Also Note, Trying to login into someone else's account without their permission is unethical and illegal
# Collection 1
magnet:?xt=urn:btih:B39C603C7E18DB8262067C5926E7D5EA5D20E12E&dn=Collection%201&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=http%3a%2f%2ft.nyaatracker.com%3a80%2fannounce&tr=http%3a%2f%2fopentracker.xyz%3a80%2fannounce
# Collection 2-5 & Antipublic
magnet:?xt=urn:btih:D136B1ADDE531F38311FBF43FB96FC26DF1A34CD&dn=Collection%20%232-%235%20%26%20Antipublic&tr=udp%3a%2f%2ftracker.coppersurfer.tk%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.leechers-paradise.org%3a6969%2fannounce&tr=http%3a%2f%2ft.nyaatracker.com%3a80%2fannounce&tr=http%3a%2f%2fopentracker.xyz%3a80%2fannounce
@syegulalp
syegulalp / winapp.py
Last active October 8, 2025 20:47 — forked from mouseroot/winapp.py
Win32 CreateWindow example in python
# Adapted for Python 3.6 + 64-bit Windows
from ctypes import *
from ctypes.wintypes import *
WNDPROCTYPE = WINFUNCTYPE(c_int, HWND, c_uint, WPARAM, LPARAM)
WS_EX_APPWINDOW = 0x40000
WS_OVERLAPPEDWINDOW = 0xcf0000
WS_CAPTION = 0xc00000
@endolith
endolith / frequency_estimator.py
Last active September 9, 2025 15:34
Frequency estimation methods in Python
from __future__ import division
from numpy.fft import rfft
from numpy import argmax, mean, diff, log, nonzero
from scipy.signal import blackmanharris, correlate
from time import time
import sys
try:
import soundfile as sf
except ImportError:
from scikits.audiolab import flacread