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 / README.md
Last active December 29, 2024 16:41
Open Repo shell tool

Open Repo shell tool

Open the current git repo directory on GitHub in your default browser.

Run this in a directory within a local git repo. The directory will be opened in your browser such as on GitHub.

Features

  • Works for any user or org, as long as .git directory exists at some level.
  • Recognizes subdirectories.
@MichaelCurrin
MichaelCurrin / install-jekyll.md
Last active April 22, 2022 23:14
Install Jekyll

Install Jekyll

Prerequisites - install Ruby and Bundler globally for your user.

Install Jekyll in a project

Jekyll 3.9

This is the version that runs on GH Pages.

@MichaelCurrin
MichaelCurrin / jekyll-new.md
Last active February 8, 2023 13:19
Set up a new Jekyll project

Set up a new Jekyll project

This short guides shows you how to setup a new skeleton Jekyll project, using the Jekyll CLI to generate the files for you.

This guide does not require Jekyll to be installed globally. Rather, it takes you through installing Jekyll in a new project that only has one file in it, then uses that project Jekyll to create all the Jekyll base files in the same directory.

Under Jekyll docs, you can see the Installation page. That provides links to install for each OS. These are covered in some detail here.

See also New under my Jekyll recipes for a few ways to set up a new Jekyll site.

@MichaelCurrin
MichaelCurrin / install-ruby-bundler.md
Last active February 3, 2025 02:40
Install Ruby 3 and Bundler

Install Ruby 3 and Bundler

Resources:

1. Install Ruby

@MichaelCurrin
MichaelCurrin / install-deno.md
Last active February 2, 2021 14:52
Install Deno
@MichaelCurrin
MichaelCurrin / README.md
Last active December 2, 2024 08:30
Render content for all Jekyll pages as a single JSON endpoint

Make a REST API with Jekyll

Render content for all your Jekyll pages as a single JSON endpoint

Usecase

You have the content of your site stored as Markdown pages, but you want to load each page as structured data. Such as for building a SPA (with React or Vue) or a mobile app.

How it works

@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-go-manually.md
Last active March 23, 2025 08:33
Install Go binary manually

Install Go binary manually

The instructions here work on Linux and macOS and use curl or wget to download Go. If you prefer to use a package manager, see this gist.

Download and install from the Go website:

  1. Find a release on Go site's Downloads page.
    • The filename will be:
      • go$VERSION.$OS-$ARCH.tar.gz
  • e.g.
@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 / 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