Note Taking Applications
As I delve deeper into the field of cybersecurity and penetration testing I’ve discovered that if you search Google or Youtube for “penetration testing note-taking applications” you’ll see there are...
As I delve deeper into the field of cybersecurity and penetration testing I’ve discovered that if you search Google or Youtube for “penetration testing note-taking applications” you’ll see there are...
During my penetration testing studies I’ve come to realize the need for strong passwords is now more important than ever. I only realized recently just how easy it is to crack a weak password. Let me...
I wrote a small shell script™ to automate building new Linux Kernels. I use this to build new kernels on my Debian systems: #!/usr/bin/env bash WORKSPACE='/home/gd/workspace'...
My new book Hand-on Test-Driven Development Book has been published: https://tddbook.com/ .
On new Rails apps, that are not in production yet, I sometimes like to reorder my database migrations. I wrote a small Ruby script to automate things.
I wanted to learn to create a dynamically-named method inside a dynamically-named class in Raku. This is what I ended up with: #!/usr/bin/env raku my $class-name = "MyDynamicClass"; my $method-name =...
I wrote Blackjack in Elisp . It allows you to play Blackjack in your Emacs editor.
Wow, if Django and Rails had a baby it would be Marten, the web framework written in Crystal , https://martenframework.com/ . It seems fairly feature-complete, even with only a 0.1.x version number!...
About two days ago I built the “bookshelf” app described in the Hanami guide. Hanami is currently missing any sort of “model” layer, as well as any sort of “view” layer, as you might expect to be...
I wrote a simple MP3 player: https://github.com/gdonald/player