Skip to content

Instantly share code, notes, and snippets.

@sshadmand
sshadmand / Audio Player
Last active October 6, 2015 22:10
Sample Polymer 1.0 Elements
<link rel="import" href="../../bower_components/polymer/polymer.html">
<!--
Plays audio files.
Example:
<audio-player></audio-player>
@demo
IAB_CATEGORIES = {
"IAB1":"Arts & Entertainment",
"IAB1-1":"Books & Literature",
"IAB1-2":"Celebrity Fan/Gossip",
"IAB1-3":"Fine Art",
"IAB1-4":"Humor",
"IAB1-5":"Movies",
"IAB1-6":"Music",
"IAB1-7":"Television",
"IAB2":"Automotive",
@sshadmand
sshadmand / Advanced Reads
Created October 9, 2016 18:15
Arduino Pressure Sensitive Fabric Tutorial Code
#include <math.h>
int myPin = 0;
int touching = false;
int touchingCount = 0;
void setup() {
Serial.begin(9600);
}
@sshadmand
sshadmand / filter_tree.js
Last active October 15, 2016 01:50
Recursive Filter on Tree Dict (JSON)
outline = [{
id: 1,
children: [{
id: 3,
label: 'goodbye',
children: []
}],
label: 'hello'
},
{
# This works becuase tagless images look like this:
#
# REPOSITORY TAG IMAGE ID CREATED SIZE
# <none> <none> 39c3774dd2fb 10 minutes ago 417 MB
docker rmi $(docker images -a | grep none)
@sshadmand
sshadmand / .bash_profile
Last active June 28, 2017 06:22
A great Bash profile
# always list date and size info
alias ll='ls -all'
# make sure you are on a protected branch and prome remote and local where no remote exists
alias gitclean='git checkout development; git branch | egrep -v "master|development" | xargs git branch -D'
# list all branch and remote branches
alias gitlist='git branch -a'
@sshadmand
sshadmand / Basic script
Created July 21, 2017 16:01
Pitchbook API with JS and JQuery
const BASE_URL = "https://api.pitchbook.com"
const TOKEN = "TOKEN HERE"
$.ajaxSetup({
headers: { 'authorization': TOKEN }
});
const generalSearch = function(name) {
var def = jQuery.Deferred();
@sshadmand
sshadmand / Breech_Checker.js
Last active September 29, 2018 07:05
Check Passwords Against BreechList Fast
import sha1 from "sha1";
import axios from "axios";
const BREECH_TOLERENCE = 100;
isBreeched = password => {
const pwSha1 = sha1(password).toUpperCase();
const salt = pwSha1.slice(0, 5);
const pepper = pwSha1.slice(5);
return axios
.get(`https://api.pwnedpasswords.com/range/${salt}`)
@sshadmand
sshadmand / fb_messenger_webhook.py
Last active January 7, 2019 04:11
FB Messenger Webhook Ported to Python
import json
import requests
from django.views.decorators.csrf import csrf_exempt
FB_MESSENGER_ACCESS_TOKEN = "[TOKEN]"
def respond_FB(sender_id, text):
json_data = {
"recipient": {"id": sender_id},
@sshadmand
sshadmand / FB JS Auth
Last active August 19, 2021 07:23
Facebook JS Auth for Chrome iOS workaround
var ABSOLUTE_URI = "http://yourpage.com/openerhandler.html";
var FB_ID = "123456778";
function openFBLoginDialogManually(){
// Open your auth window containing FB auth page
// with forward URL to your Opened Window handler page (below)
var redirect_uri = "&redirect_uri=" + ABSOLUTE_URI + "fbjscomplete";
var scope = "&scope=public_profile,email,user_friends";
var url = "https://www.facebook.com/dialog/oauth?client_id=" + FB_ID + redirect_uri + scope;