😶🌫️
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
// Run in browser's console, and then simply check the agreement bias questions, and then you're ready to go. | |
document.querySelectorAll("div").forEach(div => { | |
const label = div.querySelector("label"); | |
if (label && label.textContent.trim() === "موافق تماماً") div.querySelector('input[type="radio"]').checked = true; | |
}); |
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
''' | |
n = Number | |
b = Base | |
p = Position | |
nb^p = Decimal | |
''' |