Skip to content

Instantly share code, notes, and snippets.

View LumitoLuma's full-sized avatar
👨‍💻
Working on my projects

Lumito LumitoLuma

👨‍💻
Working on my projects
View GitHub Profile
@LumitoLuma
LumitoLuma / avr-gcc-legacy-build.sh
Last active June 12, 2021 13:03
Build script for legacy AVR-GCC https://avr.lumito.net/
#!/bin/bash
# http://www.nongnu.org/avr-libc/user-manual/install_tools.html
# For optimum compile time this should generally be set to the number of CPU cores your machine has
JOBCOUNT=$(getconf _NPROCESSORS_ONLN)
# Build for Linux
# A Linux AVR-GCC toolchain is required to build a Windows toolchain
# If the Linux toolchain has already been built then you can set this to 0
@LumitoLuma
LumitoLuma / ddom-requirements.txt
Last active November 3, 2020 17:18
Necessary requirements to run Endermanch's DDOM.py at https://git.io/JTbCR
# Unmark hashlib if you want to install it (may not work with Python 3)
#hashlib
requests
argparse
pyvirtualdisplay
selenium
datetime
@LumitoLuma
LumitoLuma / avr-gcc-build.sh
Last active November 10, 2021 08:44 — forked from ZakKemble/avr-gcc-build.sh
Build script for AVR-GCC. Forked from https://blog.zakkemble.net/avr-gcc-builds/
#!/bin/bash
# http://www.nongnu.org/avr-libc/user-manual/install_tools.html
# For optimum compile time this should generally be set to the number of CPU cores your machine has
JOBCOUNT=$(getconf _NPROCESSORS_ONLN)
# Build for Linux
# A Linux AVR-GCC toolchain is required to build a Windows toolchain
# If the Linux toolchain has already been built then you can set this to 0