Skip to content

Instantly share code, notes, and snippets.

View taylorwaddell's full-sized avatar

Taylor Waddell taylorwaddell

View GitHub Profile
@antiops
antiops / pixieset-scrape.js
Created November 1, 2020 04:16
pixieset.com dumper
/* pixieset.com full size image scraper
*
* Rips all images in highest quality
*
* To use scroll to the very bottom of the album and press F12 then paste the below snippet in and press enter.
* The full file list will be copied to your clipboard afterwards. You can use jdownloader to easily download the full list.
*/
(() => {
const data = document.querySelectorAll('.masonry-brick img')
  1. Open Automator.app
  2. Create new Quick Action
  3. Select Run AppleScript
  4. Add this:
set inputVolume to input volume of (get volume settings)
if inputVolume = 0 then
	set inputVolume to 100
	display notification "Volume set to 100" with title "✅ Microphone is on"
@AlexAegis
AlexAegis / angular-megalistener.ts
Created April 22, 2019 21:50
Angular Megalistener - When you want to hear everything
@HostListener('abort', ['$event'])
@HostListener('afterprint', ['$event'])
@HostListener('animationend', ['$event'])
@HostListener('animationiteration', ['$event'])
@HostListener('animationstart', ['$event'])
@HostListener('beforeprint', ['$event'])
@HostListener('beforeunload', ['$event'])
@HostListener('blur', ['$event'])
@HostListener('canplay', ['$event'])
@HostListener('canplaythrough', ['$event'])
@zed-dz
zed-dz / offline_mdn_docs.md
Created March 12, 2019 14:01
Offline MDN Docs
@rene-d
rene-d / colors.py
Last active June 18, 2024 02:29
ANSI color codes in Python
# SGR color constants
# rene-d 2018
class Colors:
""" ANSI color codes """
BLACK = "\033[0;30m"
RED = "\033[0;31m"
GREEN = "\033[0;32m"
BROWN = "\033[0;33m"
BLUE = "\033[0;34m"