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
import random | |
import statistics | |
from collections import Counter | |
from dataclasses import dataclass | |
from enum import Enum | |
from multiprocessing import Pool | |
from typing import Dict, List | |
from tqdm import tqdm |
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
# ██╗ ██╗ █████╗ ██╗ ███████╗███╗ ██╗████████╗██╗███╗ ██╗███████╗ ██╗ ███████╗ | |
# ██║ ██║██╔══██╗██║ ██╔════╝████╗ ██║╚══██╔══╝██║████╗ ██║██╔════╝ ██║ ██╔════╝ | |
# ██║ ██║███████║██║ █████╗ ██╔██╗ ██║ ██║ ██║██╔██╗ ██║█████╗ ╚═╝ ███████╗ | |
# ╚██╗ ██╔╝██╔══██║██║ ██╔══╝ ██║╚██╗██║ ██║ ██║██║╚██╗██║██╔══╝ ╚════██║ | |
# ╚████╔╝ ██║ ██║███████╗███████╗██║ ╚████║ ██║ ██║██║ ╚████║███████╗ ███████║ | |
# ╚═══╝ ╚═╝ ╚═╝╚══════╝╚══════╝╚═╝ ╚═══╝ ╚═╝ ╚═╝╚═╝ ╚═══╝╚══════╝ ╚══════╝ | |
# ██████╗ ██████╗ ██████╗ ███████╗ ██████╗ ██████╗ ██╗ ███████╗ | |
# ██╔════╝██╔═══██╗██╔══██╗██╔════╝ ██╔════╝ ██╔═══██╗██║ ██╔════╝ | |
# ██║ ██║ ██║██║ ██║█████╗ ██║ ███╗██║ ██║██║ █████╗ |
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
javascript:window.open('http://isup.me/'+loadTimeData.data_.summary.failedUrl) |
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
package yours.here; | |
import android.content.Context; | |
import android.os.Build; | |
import android.support.annotation.Nullable; | |
import android.support.annotation.RequiresApi; | |
import android.support.v4.view.OnApplyWindowInsetsListener; | |
import android.support.v4.view.ViewCompat; | |
import android.support.v4.view.WindowInsetsCompat; | |
import android.util.AttributeSet; |
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
(() => { | |
$("tr.student_assignment.assignment_graded.editable").each(function() { | |
var mean = $(this).next().find("tbody td").first().text().replace("Mean:",""); | |
$(this).find(".what_if_score").text(mean); | |
$(this).find(".assignment_score .tooltip").trigger("score_change"); | |
}); | |
})() |