Skip to content

Instantly share code, notes, and snippets.

View michellejl's full-sized avatar

Michelle J Levine michellejl

View GitHub Profile
@michellejl
michellejl / gradient.json
Last active August 30, 2018 18:53 — forked from wking-io/gradient.json
API for Codepen | Gradients.
{
"data": [
{
"name": "coolBlue",
"direction": "45deg",
"colors": ["#1e5799", "#7db9e8"],
"positions": ["0%", "100%"]
},
{
"name": "pinkBlue",
@michellejl
michellejl / keybindings.json
Created February 16, 2018 22:59 — forked from stolinski/keybindings.json
VSCode Tab Switching Keybindings
[
{ "key": "ctrl+1", "command": "workbench.action.focusFirstEditorGroup" },
{ "key": "ctrl+2", "command": "workbench.action.focusSecondEditorGroup" },
{ "key": "ctrl+3", "command": "workbench.action.focusThirdEditorGroup" },
{ "key": "cmd+1", "command": "workbench.action.openEditorAtIndex1" },
{ "key": "cmd+2", "command": "workbench.action.openEditorAtIndex2" },
{ "key": "cmd+3", "command": "workbench.action.openEditorAtIndex3" },
{ "key": "cmd+4", "command": "workbench.action.openEditorAtIndex4" },
{ "key": "cmd+5", "command": "workbench.action.openEditorAtIndex5" },
{ "key": "cmd+6", "command": "workbench.action.openEditorAtIndex6" },
#!/bin/sh
git filter-branch --env-filter '
OLD_EMAIL="your-old-email@example.com"
CORRECT_NAME="Your Correct Name"
CORRECT_EMAIL="your-correct-email@example.com"
if [ "$GIT_COMMITTER_EMAIL" = "$OLD_EMAIL" ]
then