SSH + RSA: A Primer

The Secure Shell (SSH) Protocol is a networking protocol for secure login and command execution on a remote machine over TCP. The protocol follows the client/server model, where the initiator of the SSH request is the client, and the recipient of that request is the server. Basic Usage The command-line client available on most unix-like… Continue reading SSH + RSA: A Primer

Published
Categorized as Post

Iterators and Generators

The ability to procedurally create a collection of new values or access a collection of existing values is an integral feature of any modern programming language. One of the tools that Javascript provides to facilitate this is the iteration protocol.

Published
Categorized as Post

For the Love of Loops

The keyword for does a lot of heavy lifting in Javascript. The classic for loop, the for…of statement, the for…in statement, and the forEach method all have commonalities, but aren’t interchangeable in all (or even most) circumstances. Here are the explanations of each feature.

Published
Categorized as Post

Big O Notation

“Big O” Notation is a mathematical notation used to describe the performance of a given algorithm relative to its input size.

Published
Categorized as Post Tagged

Hello world!

This WordPress install is running in Docker containers so if you could be mildly impressed I’d be greatly appreciative, thanks.

Published
Categorized as Post