Dingbat.app is a fully functioning web app written using Laravel and Livewire. At the moment it has the following functionality: User signup/registration Custom workout logs Create workout plans: Custom number of weeks Custom number of days per week Custom number of workouts/cardio per week Custom number of exercises per workout Add the following to exercises: …
Category Archives: Programming
Back to C
I am attempting to use AnkiDroid and the following books to learn C programming: Learn C the Hard Way: A Clear & Direct Introduction To Modern C Programming Understanding and Using C Pointers So far so good, I have finished the first chapter of the pointers books. I have created example code that I will …
First web app
I reverted to my language of choice – Perl to write my first web app and back end service. I used Mojolicous Lite to generate the page and handle JSON get requests. On the backend I used sqlite and Perl to process and monitor the dnsmasq log file. The Perl hypnotoad web server sits behind …
fork yeah
My program hashtree is being a memory hog post LZ4 modification. The problem stems from the minio-go library not being given a file size and then assuming (the worst) a size of 5TiB this causes an allocation of 600+MiB per part causing 3 concurrent go processes to consume 1.9GB of RAM! Yikes. Here is my …
Concurrent YouTube video downloads
Going with my theme of breaking Google’s policies, I have written a concurrent video downloader for Android that uses Go routines, Kotlin coroutines and a fantastic Go library to download all video files in the background. It uses Go/Java call backs to send messages between the Go processes and the Java UI and Common Pool …