This file contains hidden or 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
/************************************** | |
* Colour Definitions * | |
**************************************/ | |
$blue: #72b9df; | |
$blue-low: #4e5980; | |
$yellow: #f1d901; | |
$yellow-low: #e0c801; | |
$sand: #ebca88; | |
$purple: #7e4d87; |
This file contains hidden or 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
import React from 'react'; | |
import ReactDOM from 'react-dom'; | |
import { createStore, combineReducers, applyMiddleware, compose, getInitialState } from 'redux'; | |
import { connect } from 'react-redux'; | |
import thunk from 'redux-thunk'; | |
import './index.css'; | |
// function getBalance() { | |
// return new Promise((resolve, reject) => { |
This file contains hidden or 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
find . -iname "*.CR2" -print -exec sh -c 'convert {} $(echo {} | sed -n "s/CR2/JPG/p")' \; |
This file contains hidden or 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
#!/bin/bash | |
find $2 -iname "*.*" -not -path "*/node_modules/*" -not -path "*/dist/*" -not -path "*/lib/*" -not -path "*/bundle.js" -not -path "*/*bundle.js" -exec grep -Hnw $1 {} \; 2>/dev/null |
This file contains hidden or 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 jira="git rev-parse --abbrev-ref HEAD | xargs -I{} open https://elevate.atlassian.net/browse/{}" |
This file contains hidden or 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
gh pr view 362 -q ".commits[].messageBody" --json commits | grep -o "EP-.\S* " | uniq | sort | sed -e "s/^/https:\/\/elevate.atlassian.net\/browse\//" |
This file contains hidden or 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
// select the type and complete the matching tab below (***) | |
Type = "T";// [T:Text, W:Wi-Fi,P:Phone Call,V:vCard] | |
/* [*** Text Type ***] */ | |
// string to encode (text, url, mail, ect.) | |
Text = "hello world"; // 128 | |
OlderNewer