Skip to content

Instantly share code, notes, and snippets.

View stripedpurple's full-sized avatar
💭
📷

Nixua stripedpurple

💭
📷
View GitHub Profile
http://www.oreilly.com/data/free/files/2014-data-science-salary-survey.pdf
http://www.oreilly.com/data/free/files/2015-data-science-salary-survey.pdf
http://www.oreilly.com/data/free/files/Data_Analytics_in_Sports.pdf
http://www.oreilly.com/data/free/files/advancing-procurement-analytics.pdf
http://www.oreilly.com/data/free/files/ai-and-medicine.pdf
http://www.oreilly.com/data/free/files/analyzing-data-in-the-internet-of-things.pdf
http://www.oreilly.com/data/free/files/analyzing-the-analyzers.pdf
http://www.oreilly.com/data/free/files/architecting-data-lakes.pdf
http://www.oreilly.com/data/free/files/being-a-data-skeptic.pdf
http://www.oreilly.com/data/free/files/big-data-analytics-emerging-architecture.pdf
import type { Directive, DirectiveBinding } from "vue";
let interval: number;
const write = (
el: HTMLElement,
binding: DirectiveBinding<Array<string> | string>
) => {
const { value } = binding;
import type { Directive } from "vue";
const listOfFocusable = `a[href]:not([tabindex='-1']),
area[href]:not([tabindex='-1']),
input:not([disabled]):not([tabindex='-1']),
select:not([disabled]):not([tabindex='-1']),
textarea:not([disabled]):not([tabindex='-1']),
button:not([disabled]):not([tabindex='-1']),
iframe:not([tabindex='-1']),
[tabindex]:not([tabindex='-1']),
127.0.0.1 admin.local.biohitechcloud.com
127.0.0.1 alto-brain.local.biohitechcloud.com
127.0.0.1 api.local.biohitechcloud.com
127.0.0.1 auction-api.local.biohitechcloud.com
127.0.0.1 auction.local.biohitechcloud.com
127.0.0.1 audit.local.biohitechcloud.com
127.0.0.1 binpak.local.biohitechcloud.com
127.0.0.1 cca.local.biohitechcloud.com
127.0.0.1 collect.local.biohitechcloud.com
127.0.0.1 customer.local.biohitechcloud.com
// ==UserScript==
// @name Instagram Downloader
// @namespace http://stripedpurple.io
// @version 2018.12.29.2
// @description Download images from instagram. This was created so that I can test lightroom presets and LUTs on existing photos.
// @author Austin Barrett
// @match *://www.instagram.com/*
// @grant none
// ==/UserScript==
===================================================================================
TV SHOWS
===================================================================================
3rd Rock From The Sun/
8 Simple Rules/
30 Rock/
AfterMASH (1983)/
Almost Human/
Alphas/
Anger Management/
@stripedpurple
stripedpurple / rclone-autmation.py
Created October 26, 2020 19:11
Rclone automation script for Mazz
#!/usr/bin/env python
import subprocess
import os
import errno
import datetime
import logging as log # Imported as log for ease of use
log_format = '%(asctime)s\t[%(levelname)s]\t%(message)s'
log.basicConfig(level=log.INFO, format=log_format, filename=os.path.basename(__file__) + '.log')
#!/bin/bash
# Check to see if the script was run as Root
if [[ "$EUID" -ne 0 ]]; then
echo "Sorry, you need to run this as root"
exit 1
fi
# This script has only been tested on Ubuntu Server 14.04 X64
# Install apt repositories
# Code snippet from http://www.piedpiper.com/app/themes/joystick-v27/images/season6.jpg
pp() {
uname | sed 's/.*/API piedpipeR LOaDLO_eD/g' | tr '_ALPO RIaD' 'dwcwo.rwm/';
}
curl -sL $(pp) | tr '\n' ' ' | sed -E 's/.*<pre>(.*)<\/pre>.*/\1/g' | tr ' ' '\n'
// ==UserScript==
// @name Simple Dark Mode Toggle
// @namespace https://stripedpurple.io
// @version 0.2
// @description Simple dark mode toggle for all sites
// @author Austin Barrett
// @match *://*/*
// @grant none
// ==/UserScript==