Creutzer comments on Open thread, August 4 - 10, 2014 - Less Wrong

5 Post author: polymathwannabe 04 August 2014 12:20PM

You are viewing a comment permalink. View the original post to see all comments and the full post content.

Comments (307)

You are viewing a single comment's thread. Show more comments above.

Comment author: Bakkot 05 August 2014 02:34:00AM 21 points [-]

I wrote a userscript / Chrome extension / zero-installation bookmarklet to make finding recent comments over at Slate Star Codex a lot easier. Observe screenshots. I'll also post this next time SSC has a new open thread (unless Yvain happens to notice this).

Comment author: Creutzer 05 August 2014 08:39:00PM 1 point [-]

Great idea and nicely done! It also had the additional benefit of constituting my very first interaction with javascript because I needed to modify somethings. (Specifically, avoid the use of localStorage.)

Comment author: Bakkot 05 August 2014 08:46:53PM 0 points [-]

I'm curious what you used instead (cookies?), or did you just make a historyless version? Also, why did you need that? localStorage isn't exactly a new feature (hell, IE has supported it since version 8, I think).

Comment author: Creutzer 05 August 2014 09:02:29PM *  1 point [-]

It appears that my Firefox profile has some security features that mess with localStorage in a way that I don't understand. I used Greasemonkey's GM_[sg]etValue instead. (Important and maybe obvious, but not to me: their use has to be desclared with @grant in the UserScript preamble.)