CSS-only Responsive Navigation Menu

Posted by

In one of the many unsuccessful job applications, I have completed this one required me to build a navigation menu as a technical test. I decided to build one entirely in CSS rather than using a JavaScript library like jQuery which was “allowed”. I didn’t get the job but I can always display what I… Read more »

Image ALT Scraping for Accessibility Reporting

Posted by

In a previous employment we had someone who’s job it was to update alt tags on images and shareholders and management needed reports on progress so I built a small script to just that as well as another to make suggestions for the alt tag using the google vision API. import requests import json import… Read more »

A Concept for Generating Random Seeds with AI on Light Weight Devices

Posted by

Obviously, this is nothing new, but I was thinking about the potential NSA backdoor in intel’s random number generator RDRAND and the vulnerabilities in the UNIX PRNG. Many suggestions to get around this problem uses taking photos of something with natural randomness for “True Randomness” like Cloudflare’s LavaRand or Bruno Sanguinetti’s Quantum random number generation… Read more »

Forced to Care About Internet Explorer: lazy loading

Posted by

If you work in the public sector you’ll be forced to care about IE and especially speed and as is the public sector you need to spend as little time as possible time on any project. So we tried every lazy load library we could find and consistently found issues with all of them using… Read more »