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
| // 32 bit int handling functions | |
| void appendU32ToString(std::string &str, uint32_t value) { | |
| char intchar[4]; | |
| std::memcpy(&intchar, &value, 4); | |
| for (size_t i = 0; i < 4; i++) { // Please tell me there is a less stupid way of doing this | |
| str.push_back(intchar[i]); | |
| } | |
| } |
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
| setTimeout(function(){ killDaGhost(); }, 10); | |
| // amogus wait for drip | |
| function killDaGhost() { | |
| var myobj = document.getElementById("ghostery-count"); | |
| myobj.remove(); | |
| var dababy = document.getElementById("ghostery-box"); | |
| dababy.remove(); | |
| var dababysnek = document.getElementById("ghostery-trackerList"); | |
| // snek!!?!1/!?? | |
| dababysnek.remove(); |