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
$originalFile = "C:\Users\luenw\Downloads\original.img" | |
$downloadedFile = "C:\Users\luenw\Downloads\downloaded.img" | |
$originalHash = Get-FileHash -Path $originalFile -Algorithm MD5 | |
$downloadedHash = Get-FileHash -Path $downloadedFile -Algorithm MD5 | |
if ($originalHash.Hash -eq $downloadedHash.Hash) { | |
Write-Output "Checksum: The files are identical." | |
} else { | |
Write-Output "Checksum: The files are different." |
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
// 1. Go to the asset page you want to download | |
// 2. Command+Option+I to open Chrome Inspector | |
// 3. Code the following code into the console and press enter: | |
document.querySelectorAll("button.primary").forEach((button, index) => setTimeout(() => button.click(), index * 1000)); | |
// 4. The next download will start every 1 second until all are downloaded |
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
<script> | |
const timerSequence = [6, 2, 2, 2, 2, 2, 2, 4]; // in minutes | |
let currentTimerIndex = 0; | |
function beep() { | |
const audioContext = new (window.AudioContext || window.webkitAudioContext)(); | |
const oscillator = audioContext.createOscillator(); | |
const gainNode = audioContext.createGain(); | |
oscillator.connect(gainNode); |
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
(function() { | |
const selector = 'div[id] > span > div > div > div > i[data-visualcompletion="css-img"]'; | |
const clickElement = () => { | |
const element = document.querySelector(selector); | |
if (element) { | |
element.click(); | |
} else { | |
console.error('Element not found:', selector); | |
} | |
}; |
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
@import url("https://fonts.googleapis.com/css2?family=Fugaz+One&family=Monoton&family=Righteous&display=swap"); | |
html, body { | |
padding: 0; | |
height: 100%; | |
display: grid; | |
place-content: center; | |
background: #0A0A27; | |
} |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>404 not found</title> | |
<link rel="icon" /> | |
<meta name="viewport" content="width=device-width,initial-scale=1" /> | |
<script type="text/javascript"></script> | |
<link |