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
| package xml; | |
| import java.io.BufferedWriter; | |
| import java.io.File; | |
| import java.io.IOException; | |
| import java.nio.charset.StandardCharsets; | |
| import java.nio.file.Files; | |
| import java.nio.file.Path; | |
| import java.nio.file.Paths; | |
| import java.text.SimpleDateFormat; |
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
| javascript:function checkField (field, rangeStart, rangeEnd) { | |
| for (i = rangeStart-1; i < field.length && i <= rangeEnd-1; i++) | |
| field[i].checked = true; | |
| } | |
| episodeCheckBox = document.getElementsByName('episode_selected[]'); | |
| checkField(episodeCheckBox, prompt("Enter the first episode to check", "1"), prompt("Enter the last episode to check", episodeCheckBox.length)); |
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
| javascript:function unlockAd () { | |
| var el = document.getElementsByClassName('ayl_response_input')[0]; | |
| el.removeAttribute('disabled'); | |
| el.removeAttribute('value'); | |
| el.focus(); | |
| } | |
| unlockAd(); |
NewerOlder