On Windows, I use the ZOC terminal for telnet/SSH session.
Naturally, I wanted to also use ZOC as the terminal for the EVE-NG
web console. So when you click on a node, it opens a tabbed session
in ZOC automatically. This was not so straight forward and I burned
alot of cycles trying to...
I have come across a file watchers error a couple of
times now with new installs of 11ty and I am documenting
the fix in this post for future me.
The Error
When starting a local 11ty dev server with the command:
You get the following error:
The Solution
Some quick duck hunting lead me...
I migrated away from an iphone to an Android phone recently and
MMS was not working. I was unable to send or receive MMS and it
was pretty annoying as I was not getting funny memes from all
of my non-existant friends. It looks like this is a pretty common
issue going back years and...
This is a record of the resources that I am/have used to learn
the Go programming language. This is mostly for my records but
other that venture down the Golang path may also find it useful.
Books
Get Programming with Go - Nathan Youngman / Roger Peppe
Black Hat Go: Go Programming For...
TCL is a simple programming language that you can use on Cisco IOS devices.
This is just a quick post to demonstrate how to run a pingsweep on a Cisco IOS
device using TCL.
To enter the TCL shell use the tclsh command.
A simple forloop can be used to ping a few addresses. This can become...
I am working on a project where I need to push to both a
github and bitbucket repository as the project is stored
in both of these locations. I do not have the ability
to sync between the two using either github or bitbuckets
built in tools. This post goes through the process of
...
Readers of my blog will probably have noticed that I like
to use Vagrant for development and testing. I recently switched
to using Windows and found the Hyper-V provider for Vagrant to be
a bit limited. In this post I will install an Ubuntu 1804 VM on Hyper-V
for use as a Vagrant...
I really like Vagrant for
developement and testing. The Vagrant team maintains a
Hyper-V
provider for use with Windows but it has some
limitations.
A very big one being limited networking support. For example: You
cannot create additional networks so are stuck using the "Default...
This post will cover the process of installing Vagrant with the
libvirt provider on Ubuntu 1804.
For reference the following software will be used in this post.
Ubuntu - 1804
Vagrant - 2.2.9
Vagrant-libvirt - 0.1.2
System Prep
Before we begin, lets ensure the host is...
This is just a quick post to outline how to remove the lines with only white space from
all files in a directory tree. I found another method to do this with the application I
am using but I wanted to keep this handy one liner in my back pocket for future reference.
Dark Magic
The...
The default behavour of 11ty is to just remove the template tags
from rendered templates and leave behind white space in its place.
This is probably mostly fine but for me it was causing large amounts
of white space in my rendered templates and needless changes in git diffs.
11ty uses...