Skip to content

Instantly share code, notes, and snippets.

View anthonybaldwin's full-sized avatar

anthonybaldwin

View GitHub Profile
@anthonybaldwin
anthonybaldwin / anthonybaldwin.id
Last active September 13, 2017 16:20
Blockstack ID Verification
Verifying that "anthonybaldwin.id" is my Blockstack ID. https://onename.com/anthonybaldwin

Keybase proof

I hereby claim:

  • I am anthonybaldwin on github.
  • I am anthonybaldwin (https://keybase.io/anthonybaldwin) on keybase.
  • I have a public key ASDFet-vv5GukByyMbReVg-GaW6eOdJXfI2jcwwS43s19go

To claim this, I am signing this object:

@anthonybaldwin
anthonybaldwin / 1. screenshot
Last active February 17, 2018 13:09
Screenshot (Linux or Mac) > upload to Google Drive > shorten w/ goog.l, bit.ly, or coinhive > copy to clipboard > notify
#!/bin/bash
#############################################################################################################################
# Title: #
# screenshot (Linux or Mac) > upload to Google Drive > shorten w/ goog.l, bit.ly, or coinhive > copy to clipboard > notify #
#############################################################################################################################
##################################################
# Linux requirements: #
# 1. https://github.com/prasmussen/gdrive #
@anthonybaldwin
anthonybaldwin / __OntraportGoogleAnalyticsEcommerceMinified.js
Last active January 23, 2019 01:59
Send ONTRAPORT Order Form Transaction Information to Google Analytics/Ecommerce
<script>
<!---- CONFIGURATION FOR GOOGLE ANALYTICS ECOMMERCE ----->
var googleAnalyticsId = "UA-123456789-1", // replace with your Google Analytics ID
googleAnalyticsCurrency = "USD"; // currency you wish to send purchases in
<!---- DO NOT EDIT BELOW THIS LINE ----->
function gv(e){for(var a=window.location.search.substring(1).split("&"),r=0;r<a.length;r++){var t=a[r].split("=");if(t[0]==e)return decodeURIComponent(t[1]).replace(/\+/g," ")}return!1}function gae(){var e=gv("OrderId");if(e){ga("require","ecommerce");var a=gv("Revenue"),r=gv("Shipping"),t=gv("Tax");ga("ecommerce:addTransaction",{id:e,revenue:a,shipping:r,tax:t,currency:googleAnalyticsCurrency});var i=1,n=1;do{var c=gv("Item"+n+"Id"),o=gv("Item"+n+"Name"),g=c||o;if(c||o){var u=gv("Item"+n+"Price"),l=gv("Item"+n+"Quantity");ga("ecommerce:addItem",{id:e,name:o,price:u,quantity:l,sku:g}),n++}else i=0}while(i);ga("ecommerce:send"),ga("ecommerce:clear")}return!1}!function(e,a,r,t,i,n,c){e.GoogleAnalyticsObject=i,e[i]=e[i]||function(){(e[i].q=e
@anthonybaldwin
anthonybaldwin / crypto-prices.py
Last active June 10, 2019 17:23
Save crypto prices to a text file
import requests
import time, datetime
import sys
# find a home for these
directory = 'C://Users//antho//Downloads//Assets//' # include trailing slash, e.g., 'C://Users//antho//Downloads//Assets//'
# get latest price of desired coin from coinmarketcap.com
def get_latest_price(coin):
response = None
@anthonybaldwin
anthonybaldwin / main.js
Last active June 13, 2019 04:56
DLive/TidyLabs stream overlay (requires electron/electron-quick-start)
// git clone https://github.com/electron/electron-quick-start
// Modules to control application life and create native browser window
const {app, BrowserWindow} = require('electron')
const path = require('path')
// Keep a global reference of the window object, if you don't, the window will
// be closed automatically when the JavaScript object is garbage collected.
let mainWindow
@anthonybaldwin
anthonybaldwin / template.ahk
Created June 23, 2019 01:40
AHK Blank Template by GroggyOtter
;Blank Template written by GroggyOtter
;============================== Start Auto-Execution Section ==============================
; Always run as admin
if not A_IsAdmin
{
Run *RunAs "%A_ScriptFullPath%" ; Requires v1.0.92.01+
ExitApp
}
@anthonybaldwin
anthonybaldwin / convert-video.sh
Last active July 13, 2019 04:58 — forked from kus/convert-video.sh
Convert any video (i.e.: AVI, MOV, MP4) to MP4 or WEBM with FFmpeg. Has option to export MP4 with YUV planar color space so it works with QuickTime and Safari.
#!/bin/bash
# Version 1.0 2016-06-03 https://gist.github.com/kus/318f21b840df0b7a6377563ce717c184
# MIT license
# Prerequisites:
# Homebrew: http://brew.sh/
# Install FFmpeg via Homebrew: brew install ffmpeg --with-fdk-aac --with-ffplay --with-freetype --with-libass --with-libquvi --with-libvpx --with-theora --with-libogg --with-libvorbis --with-opus --with-x265
# Make the script executable: sudo chmod u+x convert-video.sh
# Run: ./convert-video.sh
@anthonybaldwin
anthonybaldwin / follower.html
Created July 22, 2019 08:40
WIP: Follower animations using animate.css and Streamlabs Labels
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
<script type="text/javascript" src="http://localhost:8888/ticker.js"></script>
<link rel="stylesheet" type="text/css" href="http://localhost:8888/animate.css">
@anthonybaldwin
anthonybaldwin / WIP: Browser Based Text Animations for OBS Studio
Last active July 22, 2019 09:05
Browser Based Text Animations for OBS Studio, Using animate.css and Streamlabs Labels (README @ bottom of Gist)
Shitty README.md:
Inspiration: https://www.reddit.com/r/Twitch/comments/6uqhh9/how_to_use_css_to_format_imported_text/
This started because OBS cannot convert "read from file" text to uppercase/lowercase.
"Issue" is fixed in SLOBS, so is possible...maybe next time I'll dive into OBS and see if a bug, or what.
I have cool animations now, so it was worth it anyway. ;)
I didn't write server.py (found somewhere on StackOverflow researching CORS issue),
or most of ticker.js (this came with original post FTMP).