Skip to content

Instantly share code, notes, and snippets.

@dakotahp
dakotahp / filter.go
Created July 3, 2019 04:14
Filter out useless bundler output from std-in
package main
import (
"os"
"bufio"
"fmt"
"regexp"
)
func main() {
@dakotahp
dakotahp / readableBookmarklet.js
Last active November 8, 2016 20:40
Bookmarklet increase readability (by increasing line height) on websites designed by robots. Purpose is for all pages to be more readable but not not a replacement for Safari Reader, or Readability and Instapaper bookmarklets
javascript:document.getElementsByTagName("body")[0].style.lineHeight = "1.5em";if($){ $("p, .post-content").attr("style", "line-height: 1.5em") }
@dakotahp
dakotahp / anonymousQuora.js
Last active December 16, 2015 16:29
Bookmarklet to allow anonymous browsing of Quora threads. http://www.dakotah.pena.name/blog/2013/5/anonymous-quora-bookmarklet
javascript:(function(){window.location=window.location.href+'?share=1'})();