Machine Learning / Glossaries!
A quick post – having found (and really liked) the Google Developers Machine Learning Glossary (good content, cross referencing between related topics) I thought it...
Some thoughts
A quick post – having found (and really liked) the Google Developers Machine Learning Glossary (good content, cross referencing between related topics) I thought it...
I’ve found that most documentation / forum discussion around the web for this topic tends to be about migrating svn to git – so here’s...
xargs makes it very easy to quickly run a set of similar processes in parallel – but did you know when you’re half-way through a...
Curious… While editing in vim you want to search and replace including a sub-string with an ampersand (&) – this doesn’t have an special regular...
While piping together commands that only output intermittently we run into the pipe buffers created by the pipe() system call (also see overview of pipes...
Synopsis #!/usr/bin/env python3 import shutil # Decorator which pre-checks the space in /tmp # and throws an exception if the space is more than #...
This is for fun, for silliness and for do not use anywhere-ness – or to quote the instructions: If you’ve ever wondered just how egregious...
This is really a quick reminder about a perl function which does a little more than you’d perhaps expect. Need to convert a binary (or...
A very quick and simple comment on building single-quoted strings in shell scripts which include single quotes. Note that it’s not possible to include a...
Scenario For a certain code-base it’s decided it would be useful to be able to trigger an exception on-demand (mid-way through a process working). Why?...