Tekkit Classic modpack
- Forestry + (NEI Forestry Plugin)
- Ears (Needs to be added as a Java agent, see offical docs)
- Block Helper
- Sprinting Key
Tekkit Classic modpack
| http://arduino.esp8266.com/stable/package_esp8266com_index.json | |
| http://drazzy.com/package_drazzy.com_index.json | |
| http://www.technoblogy.com/package_technoblogy_index.json | |
| https://adafruit.github.io/arduino-board-index/package_adafruit_index.json | |
| https://espressif.github.io/arduino-esp32/package_esp32_index.json | |
| https://github.com/chipKIT32/chipKIT-core/raw/master/package_chipkit_index.json | |
| https://github.com/earlephilhower/arduino-pico/releases/download/global/package_rp2040_index.json | |
| https://github.com/openwch/board_manager_files/raw/main/package_ch32v_index.json | |
| https://github.com/stm32duino/BoardManagerFiles/raw/main/package_stmicroelectronics_index.json | |
| https://raw.githubusercontent.com/ArminJo/DigistumpArduino/master/package_digistump_index.json |
| % PIC18F assembly using MPASM language highlighting for LaTeX 'listings' package | |
| \ProvidesPackage{pic18fmpasm} | |
| \RequirePackage{listings} | |
| \lstdefinelanguage[pic18f]{Assembler}{% | |
| % so listings can detect directives and register names | |
| alsoletter={.,\#}, | |
| % strings, characters, and comments |
| % MIPS Assembly language definition for the LaTeX `listings' package | |
| % | |
| % The list of instructions and directives are those understood by the | |
| % MARS MIPS Simulator [http://courses.missouristate.edu/KenVollmar/MARS/] | |
| % Also includes fixes for Microchip's XC32 GCC compiler | |
| % | |
| % Author: Eric Walkingshaw <eric@walkingshaw.net> | |
| % | |
| % This code is in the public domain. | |
| % |
| interrupt_init: | |
| movlw b'11100000' ; Enable global, enable periferal, enable t0 | |
| movwf INTCON | |
| movlw b'00000000' ; Set INT1 to falling edge | |
| movwf INTCON2 | |
| movlw b'00001000' ; Enable INT1 | |
| movwf INTCON3 | |
| movlw b'00000001' ; t1 overflow | |
| movwf PIR1 | |
| ;; dont need to configure PIR2 |
| FROM kalilinux/kali-rolling:latest | |
| RUN echo "*** install packages *** " && apt update && apt upgrade -y \ | |
| && DEBIAN_FRONTEND=noninteractive apt install kali-linux-default kali-desktop-xfce xorgxrdp xrdp -y \ | |
| && useradd -d /home/kali -m -s /bin/bash kali && /bin/echo -e "kali\nkali\n" | passwd kali \ | |
| && echo 'kali ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers | |
| RUN echo "*** cleanup & patch ***" && \ | |
| rm -f /usr/share/xfce4/panel/plugins/power-manager-plugin.desktop && apt clean \ | |
| && wget https://gist.githubusercontent.com/DarkMagicSource/28c34acb64799955a68906875a534e76/raw/1822c954966e5999bbf5d02b31699dd6fb6a6c56/entry -O /entry \ |
People with an M1/M2 Mac have probably realized you can't use VirtualBox for x86_64 images like Cisco Intends.
brew install --cask utm
| // Notes: C 0 to E-flat 8 | |
| #define C0 16.35 // C 0 | |
| #define Db0 17.32 // D-flat 0 | |
| #define D0 18.35 // D 0 | |
| #define Eb0 19.45 // E-flat 0 | |
| #define E0 20.60 // E 0 | |
| #define F0 21.83 // F 0 | |
| #define Gb0 23.12 // G-flat 0 | |
| #define G0 24.50 // G 0 | |
| #define Ab0 25.96 // A-flat 0 |