Skip to content

Instantly share code, notes, and snippets.

View vikranth22446's full-sized avatar

Vikranth Srivatsa vikranth22446

View GitHub Profile
@vikranth22446
vikranth22446 / CalculateBioGradesCSV.js
Last active November 4, 2017 06:17
Downloads an Excel Spreadsheet for badly formatted Bio Scores.
/**
- Run via pasting into inspect element in the console tab on the Bio Progress Report.
- Check the CSV for a SUM Function, and click the function button.
**/
if (document.title.match(/Progress/g) != null) {
function generateBioCSV() {
var csv_data = "Assignment Type, Title, Your Score :(, Total Score :), SUM(C:C), SUM(D:D), SUM(C:C)/SUM(D:D) \n"
$('td.home_left tr').each(function() {
var $grade = $(this).find('td:nth-child(5):not(th)');
$grade = $grade.prop('outerHTML')