Skip to content

Instantly share code, notes, and snippets.

View Noxville's full-sized avatar
🎮
esports

Ben Steenhuisen Noxville

🎮
esports
View GitHub Profile
Best Picture Once Upon A Time In Hollywood
Best Director Sam Mendes - 1917
Best Actor (6 pts) Joaquin Phoenix – Joker
Best Actress (6 pts) Renée Zellweger – Judy
Best Supporting Actor Brad Pitt – Once Upon a Time in Hollywood
Best Supporting Actress Laura Dern – Marriage Story
Best Original Screenplay Once Upon a Time in Hollywood – Quentin Tarantino
Best Adapted Screenplay The Irishman – Steven Zaillian
Best Animated Feature Film Toy Story 4
Best International Feature Film Parasite (South Korea)
class LeagueMatchup {
League l
Team a
Team b
Date lastGameEnd
List<Team> getTeams() {
return [a,b]
}
import requests
import random
class Team:
def __init__(self, name, team_id):
self.name = name
self.team_id = team_id
def __repr__(self):
return self.name
patch_name | rad_wins | dire_wins | rad_win_perc
------------+----------+-----------+--------------
7.14 | 74 | 48 | 0.607
7.12 | 123 | 92 | 0.572
7.10 | 112 | 84 | 0.571
7.21 | 1062 | 843 | 0.557
7.17 | 137 | 110 | 0.555
7.15 | 99 | 80 | 0.553
7.19 | 649 | 532 | 0.550
7.08 | 248 | 204 | 0.549
Between 4243965384 and 4742322610 (100 games), Nisha had 8.5053763441 KDA (K: 732/ D: 186/ A: 850)
Between 4244186412 and 4742700480 (100 games), Nisha had 8.3743315508 KDA (K: 719/ D: 187/ A: 847)
Between 4254541006 and 4515358938 (100 games), Daxak had 8.3678756477 KDA (K: 781/ D: 193/ A: 834)
Between 4225872520 and 4739243305 (100 games), Nisha had 8.3617021277 KDA (K: 732/ D: 188/ A: 840)
Between 4254629729 and 4515714455 (100 games), Daxak had 8.3056994819 KDA (K: 769/ D: 193/ A: 834)
Between 4254454904 and 4512446590 (100 games), Daxak had 8.2886597938 KDA (K: 778/ D: 194/ A: 830)
Between 4244074485 and 4742546162 (100 games), Nisha had 8.2804232804 KDA (K: 723/ D: 189/ A: 842)
Between 4244302437 and 4745740115 (100 games), Nisha had 8.2328042328 KDA (K: 709/ D: 189/ A: 847)
Between 2770722314 and 3646255696 (100 games), Another had 8.21875 KDA (K: 896/ D: 224/ A: 945)
Between 2768758122 and 3643911774 (100 games), Another had 8.1785714286 KDA (K: 890/ D: 224/ A: 942)
Creatures 13
4 Slippery Bogle
4 Gladecover Scout
4 Kor Spiritdancer
1 Dryad Arbor
Spells 28
3 Path to Exile
@Noxville
Noxville / ridgeline_joyplot.py
Created February 13, 2019 16:28
Simple Ridgeline Plot of Monthly Elo 32 Distributions for Pro Dota 2 teams.
#!/usr/bin/python3
import requests
import joypy
import pandas as pd
import numpy as np
from matplotlib import pyplot as plt
from datetime import date, timedelta
from dateutil.relativedelta import relativedelta
slots_available = 12
total_points_available = 5 * 13475.0 # minor + major
threshold = total_points_available / slots_available
# Fill in current points
tp = {
'Virtus.pro': 7050,
'Team Secret': 5100,
4x Blood Crypt (Ravnica Allegiance) - R - English - NM 6,34 EUR
4x Breeding Pool (Ravnica Allegiance) - R - English - NM 6,04 EUR
4x Godless Shrine (Ravnica Allegiance) - R - English - NM 5,96 EUR
4x Hallowed Fountain (Ravnica Allegiance) - R - English - NM 5,69 EUR
4x Stomping Ground (Ravnica Allegiance) - R - English - NM 6,01 EUR
16x Tithe Taker (Ravnica Allegiance) - R - English - NM 1,54 EUR
8x Absorb (Ravnica Allegiance) - R - English - NM 1,08 EUR
4x Deputy of Detention (Ravnica Allegiance) - R - English - NM 2,03 EUR
4x Electrodominance (Ravnica Allegiance) - R - English - NM 5,40 EUR
4x Prime Speaker Vannifar (Ravnica Allegiance) - M - English - NM 8,25 EUR
for i in range(10):
num = int('53013180176278773980288979275410970' + str(i) + '139358547710066257652050346294484433323974747960297803292989236183040000000000')
print("num (_ = {}): {}".format(i, num))
divides = []
for fac in range(99, 1, -1):
if num % fac == 0:
divides.append(fac)
num /= fac