Skip to content

Instantly share code, notes, and snippets.

View miripiruni's full-sized avatar

Slava Oliyanchuk miripiruni

View GitHub Profile
@miripiruni
miripiruni / wishlist.md
Last active October 12, 2015 03:47 — forked from pepelsbey/wishlist.md
Список желаний
@miripiruni
miripiruni / bookmarklet.js
Last active October 23, 2015 15:20 — forked from shinypb/gist:4485878
Bookmarklet to reload CSS without reloading the entire page
// Bookmarklet version (made using http://userjs.up.seesaa.net/js/bookmarklet.html)
javascript:(function(){$('link[rel="stylesheet"]').each(function(i,elem){var anchorTag=$('a').attr('href',elem.getAttribute('href'))[0];anchorTag.search="ts="+(+new Date);elem.href=anchorTag.href;})})()