Skip to content

Instantly share code, notes, and snippets.

@doyousketch2
doyousketch2 / ! Various.PNG's
Last active January 1, 2017 17:28
Just a collection of images I'll use on GitHub
Nothing to see here...
@doyousketch2
doyousketch2 / m.fb.Dim.user.js
Last active November 10, 2016 16:51
Dims facebook's mobile page, blocks ads, filters posts with keywords for you, and makes images click-to-fullsize.
// ==UserScript==
// @name m.fb.Dim
// @namespace Sketch2
// @description mobile.facebook.Dimmer
// @include https://m.facebook.*
// @exclude https://m.facebook.com/friends/*
// @version 1.8
// @grant GM_info
// @grant GM_getValue
// @grant GM_setValue
@doyousketch2
doyousketch2 / conky.conf
Last active November 6, 2016 18:24
Includes both WeatherUnderground and ScratchMessages Python scripts.
conky.config = {
alignment = 'top_right',
background = false,
border_outer_margin = 5,
border_width = 1,
cpu_avg_samples = 2,
default_color = white,
default_outline_color = '#555',
default_shade_color = 'black',
draw_borders = false,
@doyousketch2
doyousketch2 / WUtemp.py
Last active January 30, 2018 01:32
Updates Conky with temperature from WeatherUnderground
#!/usr/bin/python
# -*-coding: utf-8 -*-
import requests as rq ## used to access URL's in Python
import time ## used to delay a moment between server retries
"""========================================================"""
## WUtemp.py
## Updates Conky with temperature from WeatherUnderground
##
## by Doyousketch2
## Nov 4, 2016
@doyousketch2
doyousketch2 / ScratchMessages.py
Last active January 30, 2018 01:22
Updates Conky when you have messages on Scratch.mit.edu
#!/usr/bin/python
import requests as rq ## used to access URL's in Python
"""========================================================"""
## ScratchMessages.py
## Updates Conky when you have messages on Scratch.mit.edu
##
## by Doyousketch2
## Oct 30, 2016
##
## GNU GPLv3 - https://www.gnu.org/licenses/gpl-3.0.html