Skip to content

Instantly share code, notes, and snippets.

View jaredkoontz's full-sized avatar
:bowtie:

jared jaredkoontz

:bowtie:
  • 20:03 (UTC -06:00)
View GitHub Profile
// ==UserScript==
// @name remove youtube buttons
// @description removes buttons from the yt ui that are annoying to me
// @version 1.0.0
// @author Jared Koontz
// @match https://www.youtube.com/*
// @grant GM_addStyle
// @run-at document-end
// ==/UserScript==
@jaredkoontz
jaredkoontz / add_intellij_launcer
Created July 21, 2017 15:32 — forked from rob-murray/add_intellij_launcer
Add Intellij launcher shortcut and icon for ubuntu
// create file:
sudo vim /usr/share/applications/intellij.desktop
// add the following
[Desktop Entry]
Version=13.0
Type=Application
Terminal=false
Icon[en_US]=/home/rob/.intellij-13/bin/idea.png
Name[en_US]=IntelliJ
@jaredkoontz
jaredkoontz / throttle.py
Last active August 1, 2016 22:59 — forked from ChrisTM/throttle.py
Python decorator for throttling function calls.
from datetime import timedelta
from datetime import datetime
import time
class Throttle:
'''
A way to achieve rate limiting without a decorator. Prevents a function from being called more than once every
time period.