Skip to content

Instantly share code, notes, and snippets.

@atharvakadlag
Last active March 18, 2024 11:14
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save atharvakadlag/efa7586a95cc68d372f946434fbb6228 to your computer and use it in GitHub Desktop.
Save atharvakadlag/efa7586a95cc68d372f946434fbb6228 to your computer and use it in GitHub Desktop.
For educational purposes only. Don't be lazy. I swear I never use this to slack-off from filling the feedback form. I like selecting a value for 80 drop-downs and i do it sincerely every time.
let range = [9,10] // range of points you wanna give
document.querySelectorAll("table select").forEach((e, i)=>{
if (i >= 60 && i < 75) { // some special faculty
e.value = "10" // or could be 1
} else {
var random_index = Math.floor(Math.random() * range.length)
e.value = range[random_index]
}
})
@atharvakadlag
Copy link
Author

atharvakadlag commented Sep 27, 2021

  1. copy the code above
  2. go to the not colleges feedback page
  3. right-click, click inspect, click console
  4. paste the code there and press enter
  5. it should fill all the cells
134845645-e6333a6f-95d9-4620-a386-0bed7811efb7.mov

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment