10.x smeserver-roundcube

March 12, 2022

First let’s get a burner web server. 1VCPU 2GB RAM 50GB HDD 2000GB transfer / month $8.50 / month Custom ISO: https://mirror.pialasse.com/releases/10/iso/x86_64/smeserver-10.0-x86_64.iso [OKAY] 110.232.112.179 online. [OKAY] A record.   http://aleph.coeleveld.com is online. [OKAY] SSH secure shell online – note: configured very basic for now in case I need to share credentials with devs. [OKAY] yum […]

AoC 2021 Advent of Code (Python)

December 31, 2021

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: adventofcode2021inputs.zip 2021 Day 25 1 2 3 4 5 6 7 8 9 10 11 […]

BigFont

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 […]

AoC 2020 Advent of Code (Python)

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 […]

Reaper DAW + DUNE3 synth

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 […]

AoC 2019 Advent of Code (Python)

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 […]

Arduino Mouse Jiggler

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; // […]

Protected: Powershell

August 30, 2019

There is no excerpt because this is a protected post.

AoC 2018 Advent of Code (Python)

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 […]

Traccar on Koozali SME server

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” […]