Skip to content

Instantly share code, notes, and snippets.

View JackMBurch's full-sized avatar
:shipit:

Jack Burch JackMBurch

:shipit:
View GitHub Profile
@AlexBedley
AlexBedley / squirrels
Last active December 13, 2024 00:25
ship it squirrels
![](http://dougbelshaw.com/blog/wp-content/uploads/2013/10/ship-it-squirrel.jpg)
![](http://shipitsquirrel.github.io/images/ship%20it%20squirrel.png)
@kawaz
kawaz / install_neovim_to_amazonlinux.sh
Last active March 30, 2025 11:14
install neovim to amazonlinux
#!/usr/bin/env bash
sudo yum groups install -y Development\ tools
sudo yum install -y cmake
sudo yum install -y python34-{devel,pip}
sudo pip-3.4 install neovim --upgrade
(
cd "$(mktemp -d)"
git clone https://github.com/neovim/neovim.git
cd neovim
make CMAKE_BUILD_TYPE=Release
@KeithYeh
KeithYeh / Self-Signed SSL with SAN.md
Created October 14, 2017 13:12
Create self-signed SSL certificate with SubjectAltName(SAN)

How to create a self-signed SSL Certificate with SubjectAltName(SAN)

After Chrome 58, self-signed certificate without SAN is not valid anymore.

Step 1: Generate a Private Key

openssl genrsa -des3 -out example.com.key 2048

Step 2: Generate a CSR (Certificate Signing Request)

@qoomon
qoomon / conventional-commits-cheatsheet.md
Last active April 21, 2025 18:56
Conventional Commits Cheatsheet

Conventional Commit Messages starline

See how a minor change to your commit message style can make a difference.

Tip

Take a look at git-conventional-commits , a CLI util to ensure these conventions, determine version and generate changelogs

Commit Message Formats

Default

powershell (Add-Type '[DllImport(\"user32.dll\")]^public static extern int PostMessage(int hWnd, int hMsg, int wParam, int lParam);' -Name a -Pas)::PostMessage(-1,0x0112,0xF170,2)
@mjkstra
mjkstra / arch_linux_installation_guide.md
Last active April 19, 2025 07:17
A modern, updated installation guide for Arch Linux with BTRFS on an UEFI system