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
// JS hooks for toggling style (think a wordy `$('.toggle-source a').click(function() { ... });`) | |
[].forEach.call(document.querySelectorAll('.toggle-source a'), function(element) { | |
element.onclick = function() { | |
document.body.className = this.getAttribute('id').replace('view-', ''); | |
return false; | |
}; | |
}); | |
// a slightly Markdown parser | |
var xhr = new XMLHttpRequest(); |
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
alias drop-caches='echo 3 | sudo tee /proc/sys/vm/drop_caches' |
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
'hello world' | |
fusk.js: (1458 bytes) | |
(+(-~[]+[+[]]+[-~[]]))[([]+!![])[+[]]+([]+{})[-~[]]+(+[]+([]+{})[([]+{})[!![]-~[]-~[]-~[]-~[]]+([]+{})[-~[]]+([]+{}[[]])[-~[]]+([]+![])[!![]-~[]-~[]]+([]+!![])[+[]]+([]+!![])[-~[]]+([]+{}[[]])[+[]]+([]+{})[!![]-~[]-~[]-~[]-~[]]+([]+!![])[+[]]+([]+{})[-~[]]+([]+!![])[-~[]]])[-~[]+[+[]]]+([]+!![])[+[]]+([]+!![])[-~[]]+([![]]+{}[[]])[-~[]+[+[]]]+([]+{}[[]])[-~[]]+(+[]+[![]]+([]+{})[([]+{})[!![]-~[]-~[]-~[]-~[]]+([]+{})[-~[]]+([]+{}[[]])[-~[]]+([]+![])[!![]-~[]-~[]]+([]+!![])[+[]]+([]+!![])[-~[]]+([]+{}[[]])[+[]]+([]+{})[!![]-~[]-~[]-~[]-~[]]+([]+!![])[+[]]+([]+{})[-~[]]+([]+!![])[-~[]]])[!![]-~[]+[+[]]]](!![]-~[]+[-~[]])[-~[]]+([]+!![])[!![]-~[]-~[]]+([]+![])[!![]-~[]]+([]+![])[!![]-~[]]+([]+{})[-~[]]+([]+{})[+(-~[]+[+[]])+~[]+~[]+~[]]+(+(!![]-~[]-~[]+[!![]-~[]]))[([]+!![])[+[]]+([]+{})[-~[]]+(+[]+([]+{})[([]+{})[!![]-~[]-~[]-~[]-~[]]+([]+{})[-~[]]+([]+{}[[]])[-~[]]+([]+![])[!![]-~[]-~[]]+([]+!![])[+[]]+([]+!![])[-~[]]+([]+{}[[]])[+[]]+([]+{})[!![]-~[]-~[]-~[]-~[]]+([]+!![])[ |
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
console.log((+(-~[]+([]+!![])[!![]-~[]-~[]]+-~[]+[+[]]+[+[]]+[+[]])+[])[+[]]+([]+{})[+(-~[]+[+[]])+~[]+~[]+~[]]+(+([!![]-~[]-~[]]+[!![]-~[]]))[([]+!![])[+[]]+([]+{})[-~[]]+(+[]+([]+{})[([]+{})[!![]-~[]-~[]-~[]-~[]]+([]+{})[-~[]]+([]+{}[[]])[-~[]]+([]+![])[!![]-~[]-~[]]+([]+!![])[+[]]+([]+!![])[-~[]]+([]+{}[[]])[+[]]+([]+{})[!![]-~[]-~[]-~[]-~[]]+([]+!![])[+[]]+([]+{})[-~[]]+([]+!![])[-~[]]])[-~[]+[+[]]]+([]+!![])[+[]]+([]+!![])[-~[]]+([![]]+{}[[]])[-~[]+[+[]]]+([]+{}[[]])[-~[]]+(+[]+[![]]+([]+{})[([]+{})[!![]-~[]-~[]-~[]-~[]]+([]+{})[-~[]]+([]+{}[[]])[-~[]]+([]+![])[!![]-~[]-~[]]+([]+!![])[+[]]+([]+!![])[-~[]]+([]+{}[[]])[+[]]+([]+{})[!![]-~[]-~[]-~[]-~[]]+([]+!![])[+[]]+([]+{})[-~[]]+([]+!![])[-~[]]])[[!![]-~[]]+[+[]]]]([!![]-~[]-~[]]+[!![]-~[]-~[]])+([]+!![])[-~[]]+([![]]+{}[[]])[-~[]+[+[]]]+([]+!![])[+[]]+([]+!![])[!![]-~[]-~[]]+([]+{})[+(-~[]+[+[]])+~[]+~[]+~[]]+([]+!![])[+[]]+(+(-~[]+[+[]]+[-~[]]))[([]+!![])[+[]]+([]+{})[-~[]]+(+[]+([]+{})[([]+{})[!![]-~[]-~[]-~[]-~[]]+([]+{})[-~[]]+([]+{}[[]])[-~[]]+([] |
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
server { | |
server_name example.com; | |
return 301 http://www.example.com$uri; | |
} | |
server { | |
server_name www.example.com; | |
root /var/www/example.com; | |
try_files $uri /index.php?$args; |
NewerOlder