Skip to content

Instantly share code, notes, and snippets.

View joex92's full-sized avatar
🖥️
Music Programming

Joe X! joex92

🖥️
Music Programming
View GitHub Profile
@dixyes
dixyes / conv.py
Last active November 7, 2023 13:35
GA402R anime matrix with python
from PIL import Image, ImageDraw, ImageOps, ImageStat
"""
convert picture to matrix data uint8 array
this script is too slow...
maybe we should rewrite it in np things
@nondebug
nondebug / known_gamepads.txt
Last active April 12, 2024 03:39
A list of vendor and product IDs for known USB and Bluetooth gamepad devices
0000:006f JessTechColourRumblePad
0001:0329 Sl6566
0005:05ac Mocute
0010:0082 AkishopCustomsPs360Plus
0078:0006 MicrontekUsbJoystick
0079:0006 PcTwinShock
0079:0011 DragonRiseGamepad
0079:1800 MayflashWiiUProAdapter
0079:181a VenomLimitedArcadeJoystick
0079:181b VenomArcadeJoystick
@mmdemirbas
mmdemirbas / LogFile.udl.xml
Created September 13, 2012 11:34
Custom log file syntax highlighting for Notepad++
<NotepadPlus>
<UserLang name="LogFile" ext="log">
<Settings>
<Global caseIgnored="yes" />
<TreatAsSymbol comment="no" commentLine="no" />
<Prefix words1="no" words2="no" words3="no" words4="no" />
</Settings>
<KeywordLists>
<Keywords name="Delimiters">[(0])0</Keywords>
<Keywords name="Folder+"></Keywords>
@alienlebarge
alienlebarge / dabblet.css
Created July 18, 2012 13:38
Square Pattern CSS
background: #ffffff;
background-image:
/*circle*/
radial-gradient(rgba(255, 255, 255, 1) 30%, rgba(255,255,255,0) 35%),
/*horizontal white lines*/
linear-gradient(rgba(255, 255, 255, 1) 2px, transparent 2px),
/*vertial green lines*/
linear-gradient(0, rgba(0, 100, 0, 0.3) 3px, rgba(255, 255, 255, 1) 3px),
/*left to right gradient*/