Skip to content

Instantly share code, notes, and snippets.

View jordan-gillard's full-sized avatar

Jordan Gillard jordan-gillard

  • Brooklyn, New York, USA
View GitHub Profile
@jordan-gillard
jordan-gillard / .git-commit-template.txt
Last active January 15, 2025 20:16
Git Commit Template
#------------Subject Line Length (50)------------#
#-----------------------Body Line Length (70)------------------------#
#---------------------------------TYPE-------------------------------#
# build: Changes affecting build system or external dependencies
# (example scopes: gulp, broccoli, npm)
# ci: Changes to our CI configuration files and scripts
# (example scopes: Travis, Circle, BrowserStack, SauceLabs)
# docs: Documentation only changes
@jordan-gillard
jordan-gillard / install_mongosh_fedora.md
Created August 5, 2024 01:35
How to install `mongosh` on Fedora Linux 40

The following is courtesy of Reddit user salacious_sonogram from this post.

Copy/Paste this:

[mongodb-org-7.0]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/redhat/9Server/mongodb-org/7.0/x86_64/
gpgcheck=1
enabled=1
@jordan-gillard
jordan-gillard / gist:5c374c152ba5a5de67b4e32ea527b2b3
Created March 3, 2019 16:02
Apriori Dataset for Medium Blog
data = {
'T100': ['M', 'O', 'N', 'K', 'E', 'Y'],
'T200': ['D', 'O', 'N', 'K', 'E', 'Y'],
'T300': ['M', 'A', 'K', 'E'],
'T400': ['M', 'U', 'C', 'K', 'Y'],
'T500': ['C', 'O', 'O', 'K', 'E', 'Y']
}