Skip to content

Instantly share code, notes, and snippets.

View heymage's full-sized avatar
📸

Maurice heymage

📸
View GitHub Profile
{"attributes":[{"trait_type":"base","value":"starfish"}],"description":"Friendly OpenSea Creature that enjoys long swims in the ocean.","image":"https://storage.googleapis.com/opensea-prod.appspot.com/creature/1.png","name":"Sprinkles Fisherton"}
@heymage
heymage / semantic-commit-messages.md
Last active November 18, 2021 15:38 — forked from joshbuchea/semantic-commit-messages.md
Semantic Commit Messages

Semantic Commit Messages

Syntax: <type>: <summary>

Example

feat: add awesome feature
^--^  ^-----------------^
| |
@heymage
heymage / settings.json
Created May 19, 2020 13:52
VS Code settings
{
"editor.fontSize": 14,
"editor.fontFamily": "Jetbrains Mono",
"editor.insertSpaces": false,
"editor.cursorBlinking": "smooth",
"editor.dragAndDrop": false,
"workbench.commandPalette.history": 100,
"terminal.external.osxExec": "Hyper.app",
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.cursorBlinking": true,
@heymage
heymage / .hyper.js
Last active May 19, 2020 13:51
My hyper.js config file
// Future versions of Hyper may add additional config options,
// which will not automatically be merged into this file.
// See https://hyper.is#cfg for all currently supported options.
module.exports = {
config: {
// choose either `'stable'` for receiving highly polished,
// or `'canary'` for less polished but more frequent updates
updateChannel: 'stable',
@heymage
heymage / .bashrc
Last active May 18, 2020 10:41
My .bashrc with useful git shortcuts and other stuff
PATH=${PATH}:~/bin
export PATH
# Git aliases
alias gi="git init"
alias gs="git status"
alias ga="git add"
alias gaa="git add ."
alias gc="git commit -m"
alias gb="git checkout -b"