Skip to content

Instantly share code, notes, and snippets.

@vaindil
vaindil / firefox_youtube_media_keys.ahk
Last active October 17, 2018 13:17
Enables media keys for YouTube with Firefox
; This script requires the Acc.ahk standard library. You can get it (and this script) from the link below.
; https://gist.github.com/vaindil/a223fe82ec2122e02bf0062c82a20186
#Include C:\fakepath\Acc.ahk
Media_Play_Pause::
HandleKey("k")
return
Media_Prev::
HandleKey("0")
@vaindil
vaindil / nimages.py
Created February 3, 2016 03:27
watches for new Nexus factory images, pushes to the appropriate Pushbullet channel if detected
#!/usr/bin/python3
import os
import re
import json
import pickle
from bs4 import BeautifulSoup
import requests
from time import strftime