Skip to content

Instantly share code, notes, and snippets.

View Bigfoot71's full-sized avatar
👾

Le Juez Victor Bigfoot71

👾
View GitHub Profile
@LazyBookworm
LazyBookworm / acrd.glsl
Created July 20, 2025 04:04
at the 7th try i think
/*
===============================================================================
ACRD: Contrast Analysis and Directional Reconstruction v1.2
===============================================================================
High-performance post-processing anti-aliasing that detects edges using
luminance analysis and smooths them through directional reconstruction.
Algorithm Overview:
1. Detects edges by calculating local contrast with minimal initial sampling
2. Uses Sobel gradient to determine precise edge direction
@angeloped
angeloped / cutcopypaste.py
Created June 24, 2019 12:40
A simple Tkinter Cut, Copy, and Paste contextmenu for Entry widgets.
import Tkinter
def make_textmenu(root):
global the_menu
the_menu = Tkinter.Menu(root, tearoff=0)
the_menu.add_command(label="Cut")
the_menu.add_command(label="Copy")
the_menu.add_command(label="Paste")
the_menu.add_separator()
the_menu.add_command(label="Select all")