This file contains 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
from Crypto.Cipher import AES | |
from Crypto.Util import Counter | |
import struct | |
""" | |
typedef struct boot_dat_hdr | |
{ | |
unsigned char ident[0x10]; | |
unsigned char sha2_s2[0x20]; | |
unsigned int s2_dst; |
This file contains 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
// <rant> to actual rant | |
// (requires modern browsers) | |
var rants = document.getElementsByTagName('rant'); | |
for (i=0;i<rants.length;i++) { | |
var rant = new SpeechSynthesisUtterance(rants[i].innerHTML); | |
window.speechSynthesis.speak(rant); | |
} |