Skip to content

Instantly share code, notes, and snippets.

{"33":[0,0,0,0,0,12,12,12,12,12,0,12,0,0,0,0],"34":[0,0,0,0,0,108,108,0,0,0,0,0,0,0,0,0],"35":[0,0,0,0,0,0,72,252,72,72,252,72,0,0,0,0],"36":[0,0,0,0,0,48,248,12,120,192,124,48,0,0,0,0],"37":[0,0,0,0,0,204,204,96,48,24,204,204,0,0,0,0],"38":[0,0,0,0,0,120,12,12,504,204,204,120,0,0,0,0],"39":[0,0,0,0,0,12,12,0,0,0,0,0,0,0,0,0],"40":[0,0,0,0,48,24,12,12,12,12,12,24,48,0,0,0],"41":[0,0,0,0,12,24,48,48,48,48,48,24,12,0,0,0],"42":[0,0,0,0,0,0,408,240,1020,240,408,0,0,0,0,0],"43":[0,0,0,0,0,0,48,48,252,48,48,0,0,0,0,0],"44":[0,0,0,0,0,0,0,0,0,0,24,24,12,0,0,0],"45":[0,0,0,0,0,0,0,0,252,0,0,0,0,0,0,0],"46":[0,0,0,0,0,0,0,0,0,0,12,12,0,0,0,0],"47":[0,0,0,0,96,96,48,48,24,24,12,12,0,0,0,0],"48":[0,0,0,0,0,120,204,236,220,204,204,120,0,0,0,0],"49":[0,0,0,0,0,24,28,24,24,24,24,24,0,0,0,0],"50":[0,0,0,0,0,120,204,192,96,48,24,252,0,0,0,0],"51":[0,0,0,0,0,120,204,192,112,192,204,120,0,0,0,0],"52":[0,0,0,0,0,96,112,104,108,252,96,96,0,0,0,0],"53":[0,0,0,0,0,252,12,12,124,192,204,120,0,0,0,0],"54":[0,0,0,0,0,120,204,12,124,
@andraaspar
andraaspar / deezer-ratings.user.js
Last active December 13, 2018 11:25
Tampermonkey: Deezer ratings
// ==UserScript==
// @name Deezer ratings
// @namespace 4323ce44-7d05-b4a3-426f-730a25aa1f76
// @version 0.5.2
// @description Loads my ratings for an album.
// @author AP
// @match https://www.deezer.com/*
// @grant GM.xmlHttpRequest
// @run-at document-idle
// @require http://code.jquery.com/jquery-3.2.1.slim.min.js
@andraaspar
andraaspar / deezer-playlist-sort-by-added-desc.js
Last active December 17, 2015 15:59
Tampermonkey: Deezer playlist sort by added, descending
// ==UserScript==
// @name Deezer playlist sort by added, descending
// @namespace https://gist.github.com/andraaspar/c17dff245a3842c57890
// @version 0.2
// @description Sets the sort in Deezer playlists to added, descending.
// @author AP
// @match http://www.deezer.com/*
// @grant none
// ==/UserScript==
@andraaspar
andraaspar / magyar-abc.txt
Last active August 4, 2016 13:29
magyar abc – ahogy lennie kéne (és felejtsd el a nagy betűket)
a
á
b
c
cs ċ
d
dz q
dzs w
e
é
@andraaspar
andraaspar / magyar-hejes-írás.txt
Last active August 4, 2016 13:32
magyar hejes írás – ahoġ lennie kéne
sertés żírral ċak a hüje főz | ? miért nem haṡnálṡ inkább olajat | jobb a ṡívednek is | ! öṡṡefut a ṅál a ṡámban
az eqőm tanáċára lánwával fogtam halat | de a jukas kondérból mind kiúṡott
@andraaspar
andraaspar / jira.js
Last active January 3, 2023 13:20
Tampermonkey: Sets JIRA comment order to ascending & loads all comments.
// ==UserScript==
// @name JIRA
// @namespace andraaspar
// @version 0.10.2
// @description Reverses JIRA comment order & loads all comments, tweaks issue list.
// @author AP
// @match https://ovitas.atlassian.net/*
// @run-at document-idle
// ==/UserScript==
{
"indent_with_tabs": true,
"indent_size": 4,
"preserve_newlines": true,
"max_preserve_newlines": 1,
"indent_inner_html": true,
"wrap_line_length": 110,
"_default_unformatted": [
"a", "span", "img", "bdo", "em", "strong", "dfn", "code", "samp", "kbd", "var", "cite", "abbr", "acronym", "q", "sub", "sup", "tt", "i", "b", "big", "small", "u", "s", "strike", "font", "ins", "del", "pre", "address", "dt", "h1", "h2", "h3", "h4", "h5", "h6"
],
@andraaspar
andraaspar / .htaccess
Created May 6, 2016 09:12
Serving web fonts such that even Microsoft Edge browser can print them
<IfModule mod_headers.c>
<filesMatch "\\.(woff|woff2|eot)$">
Header set access-control-allow-origin "*"
</filesMatch>
</IfModule>
@andraaspar
andraaspar / keybindings.json
Last active March 20, 2017 11:03
Visual Studio Code settings
// Place your key bindings in this file to overwrite the defaults
[
{ "key": "ctrl+d", "command": "editor.action.copyLinesDownAction", "when": "editorFocus" },
{ "key": "ctrl+shift+d", "command": "editor.action.deleteLines", "when": "editorFocus" },
{ "key": "ctrl+shift+k", "command": "workbench.action.tasks.runTask" },
{ "key": "ctrl+alt+right", "command": "workbench.action.compareEditor.nextChange", "when": "editorFocus" },
{ "key": "ctrl+alt+left", "command": "workbench.action.compareEditor.previousChange", "when": "editorFocus" },
{ "key": "shift+alt+w", "command": "editor.emmet.action.wrapWithAbbreviation", "when": "editorFocus" },
{ "key": "ctrl+shift+n", "command": "workbench.files.action.showActiveFileInExplorer", "when": "editorFocus" },
{ "key": "ctrl+-", "command": "editor.action.commentLine", "when": "editorFocus" },
@andraaspar
andraaspar / albums-0-of-3.json
Last active April 25, 2024 09:50
Favourite albums & tracks
[
{
"artistName": "",
"albumTitle": ""
},
{
"artistName": "Blut Aus Nord",
"albumTitle": "Disharmonium - Nahab"
},
{