Advent Of Code 2019
December 05, 2019I’m participating in the Advent of Code this year. It’s a programming challenge released each day for the first 25 days of december. In 201…
I’m participating in the Advent of Code this year. It’s a programming challenge released each day for the first 25 days of december. In 201…
Problem Description You have an application using an Elixir and Phoenix backend, and a TypeScript and React frontend. You’d like to use two…
Problem Description You have a host name that only exists on a private network. For example, “myserver.mydomain.com” resolves to an address…
Problem Description You run a self-hosted instance of GitLab and wish to add private docker container registry (storage and distribution for…
Just a quick note since I’m looking this up so often. To create an SSH key with the latest public key algorithm and some extra KDF rounds…
In the online class Practical Deep Learning for Coders 2019, we learned how to create a world-class image classifer model for the Oxford…
This series covers using a well-known pretrained word vector model to enhance client side searching in a react app. Part 1 - Intro Part…
Intro to Part 4 In part 4, we’ll be using the service we made in part 3 in our web app. Previous: Part 3 Adding the service to search There…
Intro to Part 3 In part 3, we’ll be using our new javascript word vector model to create a service that lists words similar to an input word…
Intro to Part 2 In part 2, we’ll be downloading the model and trimming it to a reasonable size. Previous: Part 1 Next: Part 3 Downloading…
Intro to Part 1 In this series, I’ll be showing how to use an off-the-shelf model mapping english words to vectors in your own programs…