January 18, 2021
( Github: https://github.com/telleropnul/ ) BigFont is a series of Arduino libraries to display large text on a character LCD display. How to use To use the library: Start the Arduino editor Tools > Manage Libraries… Search for “bigfont” and make your selection. Libraries are installed in the following location by default: C:\Users\…..\Documents\Arduino\libraries\ Example sketches are […]
December 31, 2020
Advent of Code AoC) is an Advent calendar of small programming puzzles for a variety of skill sets and skill levels that can be solved in any programming language you like. Go check it out: Advent of Code Input files: adventofcode2020inputs.zip 2020 Day 25 1 2 3 4 5 6 7 8 9 10 11 […]
February 10, 2020
To record MIDI as MP3 in Reaper: Add two tracks. Track1 Input: MIDI > Select MIDI keyboard FX > Select Synth VST Recording monitoring: ON (Speaker symbol) Press Track 1 recording button so it starts writing when you record. Open instrument window (press FX button) You can now play your Synth and record MIDI. When […]
December 31, 2019
Advent of Code AoC) is an Advent calendar of small programming puzzles for a variety of skill sets and skill levels that can be solved in any programming language you like. Go check it out: Advent of Code Input files: adventofcode2019inputs.zip [To be uploaded still…] INTCODE reference: https://esolangs.org/wiki/Intcode 2019 Day 25 Automated walkthrough.python -m pip […]
December 14, 2019
This requires a genuine Arduino Pro Micro with ATmega 32U4 chip with dedicated onboard USB transceiver hardware. This allows the micro controller core to act as a USB mouse. #include <Mouse.h> /* * NAME: Arduino Mouse Jiggler * DATE: 2020-04-20 * DESC: Arduino based mouse emulator * VERSION: 1.0 */ int move_interval = 100; // […]
December 31, 2018
Advent of Code AoC) is an Advent calendar of small programming puzzles for a variety of skill sets and skill levels that can be solved in any programming language you like. Go check it out: Advent of Code Input files: adventofcode2018inputs.zip 2018 Day 25 1 2 3 4 5 6 7 8 9 10 11 […]
December 30, 2018
To install Traccar on Koozali SME server: wget https://github.com/traccar/traccar/releases/download/v4.2/traccar-linux-64-4.2.zip unzip traccar-linux-64-4.2.zip Archive: traccar-linux-64-4.2.zip inflating: traccar.run inflating: README.txt rm README.txt traccar-linux-64-4.2.zip ./traccar.run –help mkdir traccar ./traccar.run –target traccar cd traccar java -jar tracker-server.jar conf/traccar.xml In puTTY add a tunnel 8082 to localhost:8082 to your SSH connection In your internet browser, type in “http://localhost:8082” […]
July 4, 2018
Raspberry Pi 3 or Raspberry Pi 3+ Use LibreELEC USB-SD Creator to write libreelec-rpi2.arm-8.2.4.img.gz to SD card. Use LibreELEC USB-SD Creator to write libreelec-rpi2.arm-8.2.4.img.gz to USB memory stick. Add “program_usb_boot_mode=1” (without double quotes) to config.txt on SD card just once and boot your Pi to flip a bit in a write-once register to enable USB […]
May 27, 2018
Inkscape has a number of commands to form new paths from two or more preexisting paths. The z-order of the paths is important. It does not matter if you click object A first and then object B, or vice versa – it is the order of the parts i.e. which part sits on top that […]