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
// When executing this code, the form to fill the captcha will appear. After that, the captcha will be filled in automatically and the race will start. | |
// Run the code until all your jetskis races are finished. Tip: with the console open, use the up key on the keyboard and press enter to repeat the last code executed. | |
// At the "Play Game" screen, press F12. Paste the code below in the "Console" tab. | |
// Na página "Play Game" pressione F12. Cole o código abaixo na aba "Console". | |
$(".race_button").first().click(); | |
setTimeout(function() { | |
$("#input_captcha").val($("#raceModal h2").first().html()); | |
$("#race_play").click(); | |
}, 500); |
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
#!/bin/bash | |
for mount_point in $(find /media/samir/ -mindepth 1 -type d); do | |
if ! mountpoint -q ${mount_point}/; then | |
continue | |
fi | |
echo ":: ${mount_point}" | |
rsync --archive --verbose --human-readable --progress \ | |
--delete --delete-excluded --exclude="*Thumbs.db" \ | |
"/home/samir/Downloads/Fortaleza2040/" "$mount_point" & |
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> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Layout Fixo</title> | |
<link href="style.css" rel="stylesheet" /> | |
</head> | |
<body> | |
<div class="container"> |