Skip to content

Instantly share code, notes, and snippets.

View graysonhicks's full-sized avatar
🤠

Grayson Hicks graysonhicks

🤠
View GitHub Profile
Verifying my Blockstack ID is secured with the address 1P3wVfYYNUxo53mKf7WyQWoPEEc7soxwTU https://explorer.blockstack.org/address/1P3wVfYYNUxo53mKf7WyQWoPEEc7soxwTU
@graysonhicks
graysonhicks / getUrlParamsVanilla.js
Last active March 6, 2018 19:09
Getting URL Params in Javascript (Vanilla)
// ***
// This is the function that does the work, put it at the top of your JS file (at least above where you are going to use it).
// Then you can forget about it. Don't worry about the 'exclude' part.
// ***
// START COPY AND PASTE
(function () {
console.log("Gist is running...");
var getUrlParams = function(exclude){
var str = window.location.search;
if (str === "" || str === "?" || str === "#") return {};
# --> imports auto completion file for git
source ~/.git-completion.bash
# --> OTHER ALIASES
alias aliases="atom ~/.bash_profile"
# --> CUSTOM GIT ALIASES
alias gaa="git add ."
alias gp="git push"
@graysonhicks
graysonhicks / colors.css
Created September 19, 2017 19:04
pallypal results
/* Made with PallyPal! https://graysonhicks.github.io/pallypal/ */
/* Main color selected in palette generator */
.color-indigo { color: #484dc2 }
.color-malibu { color: #80a4ff }
.color-periwinkle { color: #bfd2ff }
.color-resolution-blue { color: #00298d }
.color-cobalt { color: #003ac9 }