This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function t() { | |
FILES=($(rg --files --hidden --glob '!.git' | fzf --exit-0 --reverse --multi)) | |
[[ $FILES ]] && code $FILES --folder-uri=$(git rev-parse --show-toplevel) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"wixui.skins.RichTextBox": { | |
"shd": { | |
"type": "BOX_SHADOW", | |
"defaultValue": "10px 10px 10px #CCCCCC", | |
"state": "regular" | |
}, | |
"fnt": { | |
"type": "FONT", | |
"defaultValue": "font_8", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"wysiwyg.viewer.skins.button.AddProductButton": { | |
"react": [ | |
[ | |
"a", | |
"link", | |
[], | |
{}, | |
[ | |
"span", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "yoshi-release-to-fed-ci-release", | |
"version": "1.0.0", | |
"bin": "./yoshi-release-to-fed-ci-release.js" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env node | |
const fs = require('fs'); | |
const os = require('os'); | |
const path = require('path'); | |
function writeJson(fileName, object) { | |
fs.writeFileSync( | |
fileName, | |
JSON.stringify(object, null, 2).replace(/\n/g, os.EOL) + os.EOL, |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias gb="git for-each-ref --color=always --sort=-committerdate refs/heads/ --format=' %(color:green)%(committerdate:relative)%(color:reset)%09%(HEAD) %(color:yellow)%(refname:short)%(color:reset) %(color:magenta)%(authorname)%(color:reset) • %(contents:subject)'" | |
alias gbi="gb | fzf --ansi --header='checkout branch <choose branch>' --reverse | awk '{print $4}' | xargs git checkout" |