Skip to content

Instantly share code, notes, and snippets.

@BouncingBison
BouncingBison / LICENSE
Created July 2, 2018 05:42 — forked from ourmaninamsterdam/LICENSE
Arrayzing - The JavaScript array cheatsheet
The MIT License (MIT)
Copyright (c) 2015 Justin Perry
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
@BouncingBison
BouncingBison / emojis.json
Created December 19, 2017 01:49 — forked from oliveratgithub/emojis.json
Emoji-list with emojis, names, shortcodes, unicode and html entities [massive list]
{
"emojis": [
{"emoji": "👩‍👩‍👧‍👧", "name": "family_mothers_two_girls", "shortname": "", "unicode": "", "html": "👩‍👩‍👧‍👧", "category": "p", "order": ""},
{"emoji": "👩‍👩‍👧‍👦", "name": "family_mothers_children", "shortname": "", "unicode": "", "html": "👩‍👩‍👧‍👦", "category": "p", "order": ""},
{"emoji": "👩‍👩‍👦‍👦", "name": "family_mothers_two_boys", "shortname": "", "unicode": "", "html": "👩‍👩‍👦‍👦", "category": "p", "order": ""},
{"emoji": "👨‍👩‍👧‍👧", "name": "family_two_girls", "shortname": "", "unicode": "", "html": "👨‍👩‍👧‍👧", "category": "p", "order": ""},
{"emoji": "👨‍👩‍👧‍👦", "name": "family_children", "shortname": "", "unicode": "", "html": "👨‍👩‍👧‍👦", "category": "p", "order": ""},
{"emoji": "👨‍👩‍👦‍👦", "name": "family_two_boys", "shortname": "", "unicode": "", "html": "👨&zw
=== General Commands
help # show this usage
version # show the gem version
list # list your apps
create [<name>] # create a new app
keys # show your user's public keys
keys:add [<path to keyfile>] # add a public key
@BouncingBison
BouncingBison / lyft-api-request.js
Created August 13, 2017 23:18 — forked from ivandevp/lyft-api-request.js
AJAX request to get authentication using Lyft API
var clientId = '<your_client_id_here>';
var clientSecret = '<your_client_secret_here>';
$.ajax({
url: 'https://api.lyft.com/oauth/token',
type: 'POST',
data: {
grant_type: 'client_credentials',
scope: 'public'
},
@BouncingBison
BouncingBison / All of Adidas U.S. Products
Created June 3, 2017 17:45 — forked from 4bpb/All of Adidas U.S. Products
This script will parse code to get all of the products on adidas US
from bs4 import BeautifulSoup
import urllib.request
import re
import urllib.parse
import time
headers = {"User-Agent" : "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36",
"Accept-Language" : "en-US,en;q=0.8"}