Skip to content

Instantly share code, notes, and snippets.

View MichaelCurrin's full-sized avatar

Michael Currin MichaelCurrin

  • The Netherlands
View GitHub Profile
@MichaelCurrin
MichaelCurrin / bundle_install_gems.md
Last active September 17, 2020 11:04
Install gems with Bundler

Install gems with Bundler

Links:

  1. Navigate to your project root.
  2. Configure Bundler for your project (this will create .bundle/config).
@MichaelCurrin
MichaelCurrin / jekyll_help.md
Last active September 24, 2020 08:42
Useful links around static sites including Liquid and Jekyll

Jekyll Help

Update: The contents of this Gist have moved to a repo here

@MichaelCurrin
MichaelCurrin / install-firefox-webdriver.md
Last active January 8, 2021 14:55
Install Firefox webdriver

Install Firefox webdriver

How to install Firefox's Geckdodriver so you can do webscraping with Selenium and Firefox.

macOS:

$ brew install geckodriver

Ubuntu/Debian:

@MichaelCurrin
MichaelCurrin / README.md
Last active January 13, 2021 10:09
Page performance metrics

Page performance metrics

Calculate load performance of a webpage, for any page you visit.

No libraries needed - this uses performance timings that are builtin to modern JS in the browser.

Based on Navigation Timing API doc.

Usage

@MichaelCurrin
MichaelCurrin / install-deno.md
Last active February 2, 2021 14:52
Install Deno
@MichaelCurrin
MichaelCurrin / project-highlights.md
Last active May 9, 2021 19:12
My favorite repos and gists

My repos and gists which are the most important to me to access.

UPDATE: I'm not maintaining this anymore - see https://github.com/MichaelCurrin/coding-blog/blob/master/my-projects.md

Because I need a way to bookmark these with more detail.

I want to add these to site or my coding blog but won't want to worry about the frontend yet. Maybe a project board.

  • code-cookbook
  • Samples from docs or my projects or other projects. As commands to follow in a sequence or a script. Sometimes a snippet, sometimes a complete script or group of scripts.
@MichaelCurrin
MichaelCurrin / install_ruby_bundler.md
Last active May 29, 2021 07:50
Install Ruby and Bundler at the user level

Install Ruby and Bundler at the user level

Deprecated in favor of: gist.

Steps:

  1. Install Ruby at the user level.
    • Install with your package manager.
@MichaelCurrin
MichaelCurrin / install_ruby_bundler_jekyll.md
Last active May 29, 2021 07:50
Install Ruby, Bundler and Jekyll at the user level
@MichaelCurrin
MichaelCurrin / static_site_setup_and_run.md
Last active June 7, 2021 08:09
Set up and run Jekyll sites

Static Site - Setup and Run

Update: The contents of this Gist have moved to a repo here

@MichaelCurrin
MichaelCurrin / install-go-package-manager.md
Last active June 7, 2021 08:31
Install Go with a package manager

Install Go with a package manager

If you want a manual solution instead for more control and to get the latest release available, see this gist.

Install the Go binary.

  • Debian/Ubuntu
    • Install with apt-get to /usr/bin/go. NB. Requires root privileges.
      $ sudo apt-get update