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
Boot with Windows Install Disk / Recovery Tool USB | |
Advanced Options -> Command Prompt: | |
Enter the following (hashtags are comments, not part of the command): | |
diskpart | |
list disk | |
select disk N # N refers to the disk which contains the deleted the EFI System partition. | |
list partition |
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
Site Updates: | |
- [General] Minor styling improvements. | |
- [General] Disabled automatic 30 day log out. | |
- [Admin] Fixed bug whereby scheduled posts were not sending subscribers notifications. | |
- [Live] Popout menu with options for each comment: | |
Information: Display detailed metadata about the comment and the author, including IP-based geo-location (accurate). | |
Report: Flag an inappropriate comment for moderation. | |
- [Live] Improved comment moderation system. | |
- [Live] Restored toggle button cycle for aspect ratio 4:3 (Cropped). | |
- [Live] New option 'Comment Limit'. Default (256), Max (512) |
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
var fs = require("fs-extra"); | |
(async()=>{ | |
var buffers = []; | |
buffers.push(await fs.readFile("flashplayer_18_sa2.exe")); | |
var swf = await fs.readFile("wrapper.swf"); | |
buffers.push(swf); | |
var end = [0x56, 0x34, 0x12, 0xFA]; | |
var sizeTemp = swf.length; | |
while (sizeTemp>0) { |
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
var fs = require("fs-extra"); | |
function make_title_buffer(s) { | |
return Buffer.from(s.split("").join("\0")); | |
} | |
var flash_player_version = 18; | |
var orig_title = `Adobe Flash Player ${flash_player_version}` | |
var orig_title_buffer = make_title_buffer(orig_title); | |
var new_title = "Wasted Youth, Part 1"; |
OlderNewer