Skip to content

Instantly share code, notes, and snippets.

@jbolster
jbolster / himawari.ps1
Created February 4, 2016 10:22 — forked from MichaelPote/himawari.ps1
Windows Powershell Script to download the latest image from the Himawari-8 satelite, combine the tiles into a single image, convert to jpg and then set as the desktop background.
#
# Himawari-8 Downloader
#
#
#
# This script will scrape the latest image from the Himawari-8 satellite, recombining the tiled image,
# converting it to a JPG which is saved in My Pictures\Himawari\ and then set as the desktop background.
#
# http://himawari8.nict.go.jp/himawari8-image.htm
#
@jbolster
jbolster / autocompleteon.bookmarklet.js
Created April 7, 2014 09:54
Enable all the autocompletes!
javascript:[].forEach.call(document.querySelectorAll("form,input"), function(e){ e.removeAttribute("autocomplete")})
@jbolster
jbolster / contenteditable.bookmarklet.js
Created April 7, 2014 09:27
Edit all the things!
javascript:[].forEach.call(document.querySelectorAll("*"),function(e){e.setAttribute("contenteditable","true")})