View two_branch_cleanup_scripts.sh
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
####################################### | |
# SCRIPT 1 - PREVIEW BRANCH DELETIONS # | |
####################################### | |
# will print the names of the branches that have been merged into develop and master in green and branches that are only merged into develop but not master in red. | |
BRANCHES_IN_MASTER=`git branch -r --merged origin/master | grep -v -E '(\*|master$|develop$)' | cut -f2- -d '/' | tr '\n' ';'` && export BRANCHES_IN_MASTER && git branch -r --merged origin/develop | grep -v -E '(\*|master$|develop$)' | cut -f2- -d '/' | xargs -L1 bash -c 'if [ $(grep -o "$0" <<< "$BRANCHES_IN_MASTER" | wc -l) -gt 0 ] ; then printf "\e[0;32m $0 \e[0m\n"; else printf "\e[0;31m $0 is merged into DEVELOP but not MASTER \e[0m\n"; fi'; | |
################################################################################################################################# | |
# SCRIPT 2 - DANGER -- RUN AT YOUR OWN RISK -- The following script will DELETE the branches listed in the above preview script # | |
########################### |
View Convert_mov_to_gif_using_ffmpeg.sh
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 convertMovToGif | |
{ | |
pathToSourceFile=$1 | |
pathToSourceFileDirectory=$(dirname "${pathToSourceFile}") | |
fileName=$(basename "${pathToSourceFile}") | |
filenameWithoutExtension="${fileName%.*}" | |
nameToSaveFileAs="$2" | |
generatedFilePath="$pathToSourceFileDirectory/${nameToSaveFileAs:-$filenameWithoutExtension-generated}.gif" | |
echo "*************************************" | |
echo "-----VIDEO TO GIF - INPUT DATA-------" |
View index.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
// This will automatically import all the files in your repl's root folder that have a file name beginning with "autoAdd" | |
var files = fs.readdirSync('./'); | |
for(file of files) { | |
if(file.startsWith("autoAdd")) { | |
require("./" + file); | |
} | |
} |
View delete_merged_remote_branches.sh
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
# Breakdown of the process | |
# NOTE: I am searching for branches merged into Develop because I'm using GiT flow | |
# 1) git branch -r --merged develop | |
# Get remote branches that have been merged into develop | |
# 2) grep -v -E '(\*|master|develop)' | |
# From those branches returned by the above command, | |
# exclude: master, develop, & the currently selected branch (the branch name beggining with an asterisk) |
View A game of CAT & MOUSE (pointer)
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
// Playing around with the Higher Order Components exercise from the React-Training github! | |
// https://github.com/ReactTraining/react-workshop/tree/master/subjects/HigherOrderComponents | |
// FUN FUN FUN!!! | |
import React from 'react' | |
import ReactDOM from 'react-dom' | |
import PropTypes from 'prop-types' | |
import * as styles from './styles' | |
const withMouse = (Component) => { |
View firebase-graphql-basic.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
// sample graphql server deployed with firebase functions | |
// minimal server setup | |
// via http://graphql.org/graphql-js/running-an-express-graphql-server/ | |
const functions = require('firebase-functions'); | |
const express = require('express'); | |
const graphqlHTTP = require('express-graphql'); | |
const { buildSchema } = require('graphql'); | |
// Init express | |
const app = express(); |
View external_links_css_selector_generator.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
var urlBase = location.protocol + '//' + location.host; | |
var hasNonEmptyHrefAttr = ':not([href=""])'; | |
var doesNotBeginWithUrlBase = ':not([href^="' + urlBase + '"])'; | |
var isNotRelativeUrl = ':not([href^="/"])'; | |
var isNotAnAnchor = ':not([href^="#"])'; | |
var isNotJavascriptLink = ':not([href^="javascript:")'; | |
var externalLinkSelector = 'a' + hasNonEmptyHrefAttr + doesNotBeginWithUrlBase + isNotRelativeUrl + isNotAnAnchor + isNotJavascriptLink; | |
var externalLinks = jQuery(externalLinkSelector); |
View git-checkout-remote-branches.sh
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
git branch -r | grep -v -E '(\*|master$|develop$|HEAD$)' | cut -f2- -d '/' | xargs -n 1 git checkout | |
View git_push_all_local_branches_upstream_to_origin.sh
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
# handy when migrating your local branches to a new git host | |
# git branch prints out each local branch on it's own line | |
# the grep command excludes the lines that end with master, develop, or HEAD | |
# it also excludes the currently checked out branch, which begins with an asterisk | |
# for example: | |
# if your git branch command returns the following: | |
# *develop | |
# master |
View Preferences.sublime-settings
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
Show hidden characters
{ | |
"auto_complete_triggers": | |
[ | |
{ | |
"characters": "<", | |
"selector": "text.html" | |
}, | |
{ | |
"characters": " ", | |
"selector": "text.html meta.tag" |
NewerOlder