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 | |
# requires 'sox' package for 'play' | |
# alarm parameters | |
ALARM_DURATION=.8 | |
SINE_LOW=300 | |
SINE_HIGH=3000 | |
# target IP to watch |
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
// this script is meant to be pasted into a MyAnimeList Anime page console | |
// it will accumulate the total number of recommendations for each recommendation | |
// it will copy this to clipboard to be pasted into another page | |
// then paste the script again to accumulate that page's recommendations | |
// and so on... | |
if (typeof totals === 'undefined') totals = {} | |
Array.from(document.querySelectorAll('.fs10')) | |
.map(i=>i.parentNode) | |
.map(e => { |
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
(() => { | |
let listItemsElem = document.querySelector('.discussionListItems') | |
let listItems = [...listItemsElem.querySelectorAll('.discussionListItem')] | |
listItems = listItems.map(listItem => { | |
let elems = {} | |
elems.listItem = listItem | |
elems.date = listItem.querySelector('.DateTime') | |
elems.replies = listItem.querySelector('.stats .major dd') | |
elems.views = listItem.querySelector('.stats .minor dd') | |
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
""" | |
This tool calculates hashes for ISO files using 7z's hashing capabilities. | |
Optionally it prompts the user to verify that the hash is valid (usually by checking Google). | |
TODO: | |
- Gather info from user on the ISO file | |
- Distribution, Version, Architecture, URL Source(s), Hashes (Computed), Notes (Specifically, How Was Verified?) | |
[s] skip | |
[l] mark legacy | |
[d] set Distro | |
[v] set Version |
OlderNewer