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
if(window.location.href.includes("https://grades.cs.umd.edu/classWeb/processRegrade.cgi?courseID=")){ | |
main_cell = document.body.children[0].children[0]; | |
header_cell = main_cell.children[2]; | |
title_cell = header_cell.children[1]; | |
title_3 = title_cell.children[1].children[0].children[0].innerText; | |
if(title_3 === "Pending & In-Process Re-grade Requests"){ | |
data_cell = main_cell.children[3].children[0]; | |
if(data_cell.children[0].children[0].childElementCount > 0){ | |
regrade_request_table = data_cell.children[0].children[0]; |
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
body { | |
background-color: rgb(55, 55, 55); | |
color: #ccc; | |
} | |
a { | |
color: #d0abab; | |
} | |
a:visited { | |
color: #9f967a; |
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
body { | |
color: #cfcfcf; | |
background: #333; | |
} | |
th { | |
vertical-align: bottom; | |
padding: 4px; | |
border: 1px solid #8e8e8e; | |
margin: 0px; |
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
#!/usr/bin/python3 | |
import sys | |
import os | |
import re | |
import shutil | |
PROJECT_TEMPLATE = ( | |
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" + | |
"<projectDescription>\n" + | |
" <name>INSERT_NAME_HERE</name>\n" + |
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
body { | |
color: #999; | |
background-color: #35332e | |
} | |
img { | |
filter: invert(0.775); | |
} | |
h2{ |