Skip to content

Instantly share code, notes, and snippets.

View jesterjunk's full-sized avatar

jesterjunk

View GitHub Profile
@jaimergp
jaimergp / config-highlight.cfg
Last active July 19, 2025 13:09
Dark highlighting theme for Python IDLE based on SublimeText's Monokai color scheme
# Place this file inside your ~/.idlerc/ folder
# or paste its contents inside
# /path/to/python/idlelib/config-highlight.def
# Adapted from SublimeText's Monokai
[monokai]
normal-foreground= #F8F8F2
normal-background= #272822
keyword-foreground= #F92672
keyword-background= #272822
@timpulver
timpulver / ResizableSketch.pde
Created November 24, 2012 15:21
[Processing] Make window/frame resizable
void setup(){
frame.setResizable(true);
//...
}
// tags: processing, p5, frame, java, resize, window