Skip to content

Instantly share code, notes, and snippets.

@Akkiesoft
Akkiesoft / haiku_downloader.user.js
Last active March 25, 2019 22:51
やったー!はてなハイクのエントリーをJSONで取得してZIPで落とせるグリモンだよー!
// ==UserScript==
// @name Haiku Downloader
// @namespace https://kokuda.org/
// @version 0.1.1
// @description 無茶しやがって
// @author Akkiesoft
// @match http://h.hatena.ne.jp/*
// @require https://cdnjs.cloudflare.com/ajax/libs/jszip/3.1.5/jszip.min.js
// @grant none
// ==/UserScript==
@noromanba
noromanba / zalgolf-js.md
Last active November 29, 2017 04:09
js Zalgo Scrambled Text + slightly code-golf

Zalgolf / Re:Zalgo

js Zalgo Scrambled Text + slightly code-golf

original code and description by @aTakaakiSeki

[].concat(...[...document.all].map(e => [...e.childNodes])).filter(n => n.nodeType === Node.TEXT_NODE).map(n => n.textContent = n.textContent.replace(/([a-zA-Z])/g, (_, c) => c + [...Array(Math.floor(Math.random()*30))].map(() => String.fromCharCode(0x300 + Math.floor(Math.random()*79))).join('')))

@noromanba
noromanba / gd-title-expander.user.js
Last active April 27, 2016 01:37
expand title on drive.google.com for UserScript
// ==UserScript==
// @name GD title expander
// @namespace http://noromanba.flavors.me
// @description expand title on drive.google.com for UserScript
// @include https://drive.google.com/folderview?id=*
// @grant none
// @noframes
// @run-at document-start
// @version 2016.04.18.2
// @homepage https://gist.github.com/noromanba/c5cd8134b95fda87daaa96d64f443531