This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[{ | |
"rank": 1, | |
"title": "This Is What It Feels Like", | |
"artist": "Armin van Buuren feat. Trevor Guthrie" | |
}, { | |
"rank": 2, | |
"title": "Thunderstruck", | |
"artist": "AC/DC" | |
}, { | |
"rank": 3, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
void function() { | |
var chars = document.body.innerText.split('').sort().filter(function(char, i, arr) { | |
return i === 0 || arr[i - 1] !== char; | |
}).join(''); | |
var textarea = document.createElement('textarea'); | |
textarea.innerHTML = chars; | |
textarea.setAttribute('style','position:fixed;top:5vh;left:5vw;height:90vh;width:90vw;box-shadow:0 0 5vmax black;background:white'); | |
document.body.appendChild(textarea); | |
}(); |