I wonder how this sort of thing compares with asking claude to read a ctags file. I have git hooks set up to keep my tags up to date automatically, so that data is already lying around.
Don't the 12 Days of Christmas start on the 25th though?
I saw an interesting video on the same topic last week. By Brian Haidet (AlphaPhoenix) on reversing the GOL - it turns out that NP hard is hard! https://www.youtube.com/watch?v=g8pjrVbdafY
I had a run-in with the BOFH in real life many years ago as a university student where he was working. I'd messed up something network-related on a lab PC, and noticed that the NIC was now in promiscuous mode for some…
Damian Conway's https://metacpan.org/pod/PPR module defines a regex (in the commonly used sense) that can match perl source code - including perl regexes! Edit: "The PPR module provides a single regular expression that…
That version is missing some of the text. At least the paragraph starting "Perhaps I should explain to you here that although John Landy has". A bunch of other copies I found were also missing that paragraph. I found an…
I use a Glove80 keyboard, and even after 4 months I'm not back to my normal typing speed! This has cost me a fair bit of productivity, and was stressful at times. Almost feeling like I'd suffered a bit of brain damage,…
I found a post mentioning "SuperBallistic Common Lisp" from 2015, perhaps that's where you remember it from. > SBCL goes SuperBallistic! I have hacked together an SBCL port for the IBM BlueGene/P supercomputer's Compute…
# Sort list by most common terms alias sorn='sort | uniq -c | sort -n' # Most common IP addresses: $ cat access_log | awk '{ print $2 }' | sorn # Last 30 modified files. function new() { ls -lat "$@" | head -30 ; } # I…
I've been using mosh since it was announced, but I periodically try Eternal Terminal. However I havent ever managed to get ET running on Amazon Linux which all my AWS EC2 instances run. I've tried compiling, docker, app…
LAMP. Linux, AWS, MySQL, Perl HTML still works it turns out!
Before I used a password manager, I used three random word phrases, but with the first word lowercase, the second upper case, and the third (chosen to contain at least one of "aeio") with tr/aeio/4310/. This gave…
That looks neat, cheers dankco! I think there is a lot of room for these lightweight text-first systems. I use a simple homebrewed system for my notes too, https://github.com/d5ve/noop which is just a search/edit loop,…
I used the Ian Knot for a while, but then went back to one of the standard methods. The difficulty I had with the Ian Knot was when I wanted the laces to be tight. With the standard methods I was able to pull the laces…
I'm working for a perl-based UK startup. It's the second perl startup I've worked at. Both have been very successful. The current one is about ten years old, and just starting to explore other languages now. Currently…
I think of online advertising in the same way as I now do smoking in a workplace, pub or restaurant - I can't believe people used to live like this. Using someone else's browser and seeing the distracting and intrusive…
I defined the following function to convert my bash aliases to fish functions, which eased my switchover a bit. I saved it as ~/.config/fish/functions/import_bash_aliases.fish function import_bash_aliases --description…
One thing I've found useful on linux is the following: $ tail -qFn0 /log/dir/* This will (q)uietly tail all matching files, initially printing 0 lines (n) from each, and (F)ollow any renames/reopenings. It's great when…
promobay.org resolves to 108.59.2.74 for me, and www.promobay.org resolves to 108.59.2.75. The first is blocked for me on Virgin, but the second works fine. This does look like a DNS issue on the part of TPB, rather…
Even shorter, as -l appends \n to all prints: $ perl -MLWP::UserAgent -le 'print $LWP::UserAgent::VERSION'
One thing I've noticed with Agile projects at $work is that the processes better suit a "contractor" mindset, than a "fulltime employee" one. NOTE: I'm a fulltime employee, so view things from that mindset. As a…
I wonder how this sort of thing compares with asking claude to read a ctags file. I have git hooks set up to keep my tags up to date automatically, so that data is already lying around.
Don't the 12 Days of Christmas start on the 25th though?
I saw an interesting video on the same topic last week. By Brian Haidet (AlphaPhoenix) on reversing the GOL - it turns out that NP hard is hard! https://www.youtube.com/watch?v=g8pjrVbdafY
I had a run-in with the BOFH in real life many years ago as a university student where he was working. I'd messed up something network-related on a lab PC, and noticed that the NIC was now in promiscuous mode for some…
Damian Conway's https://metacpan.org/pod/PPR module defines a regex (in the commonly used sense) that can match perl source code - including perl regexes! Edit: "The PPR module provides a single regular expression that…
That version is missing some of the text. At least the paragraph starting "Perhaps I should explain to you here that although John Landy has". A bunch of other copies I found were also missing that paragraph. I found an…
I use a Glove80 keyboard, and even after 4 months I'm not back to my normal typing speed! This has cost me a fair bit of productivity, and was stressful at times. Almost feeling like I'd suffered a bit of brain damage,…
I found a post mentioning "SuperBallistic Common Lisp" from 2015, perhaps that's where you remember it from. > SBCL goes SuperBallistic! I have hacked together an SBCL port for the IBM BlueGene/P supercomputer's Compute…
# Sort list by most common terms alias sorn='sort | uniq -c | sort -n' # Most common IP addresses: $ cat access_log | awk '{ print $2 }' | sorn # Last 30 modified files. function new() { ls -lat "$@" | head -30 ; } # I…
I've been using mosh since it was announced, but I periodically try Eternal Terminal. However I havent ever managed to get ET running on Amazon Linux which all my AWS EC2 instances run. I've tried compiling, docker, app…
LAMP. Linux, AWS, MySQL, Perl HTML still works it turns out!
Before I used a password manager, I used three random word phrases, but with the first word lowercase, the second upper case, and the third (chosen to contain at least one of "aeio") with tr/aeio/4310/. This gave…
That looks neat, cheers dankco! I think there is a lot of room for these lightweight text-first systems. I use a simple homebrewed system for my notes too, https://github.com/d5ve/noop which is just a search/edit loop,…
I used the Ian Knot for a while, but then went back to one of the standard methods. The difficulty I had with the Ian Knot was when I wanted the laces to be tight. With the standard methods I was able to pull the laces…
I'm working for a perl-based UK startup. It's the second perl startup I've worked at. Both have been very successful. The current one is about ten years old, and just starting to explore other languages now. Currently…
I think of online advertising in the same way as I now do smoking in a workplace, pub or restaurant - I can't believe people used to live like this. Using someone else's browser and seeing the distracting and intrusive…
I defined the following function to convert my bash aliases to fish functions, which eased my switchover a bit. I saved it as ~/.config/fish/functions/import_bash_aliases.fish function import_bash_aliases --description…
One thing I've found useful on linux is the following: $ tail -qFn0 /log/dir/* This will (q)uietly tail all matching files, initially printing 0 lines (n) from each, and (F)ollow any renames/reopenings. It's great when…
promobay.org resolves to 108.59.2.74 for me, and www.promobay.org resolves to 108.59.2.75. The first is blocked for me on Virgin, but the second works fine. This does look like a DNS issue on the part of TPB, rather…
Even shorter, as -l appends \n to all prints: $ perl -MLWP::UserAgent -le 'print $LWP::UserAgent::VERSION'
One thing I've noticed with Agile projects at $work is that the processes better suit a "contractor" mindset, than a "fulltime employee" one. NOTE: I'm a fulltime employee, so view things from that mindset. As a…