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
| # Jimb - Havoc - 2020-04-16 13:01 - US/Doomhammer | |
| # SimC Addon 1.12.5 | |
| # Requires SimulationCraft 820-01 or newer | |
| demonhunter="Jimb" | |
| level=120 | |
| race=night_elf | |
| region=us | |
| server=doomhammer | |
| role=attack |
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
| // Lifted partially from https://gist.github.com/orion-v/95cb48fa73808cdc5c589fe415cc65f1 | |
| // and https://github.com/vegeta897/snow-stamp/blob/main/src/convert.js#L2 | |
| const DISCORD_EPOCH = 1420070400000 | |
| function dateToPostId(date) { | |
| return (date - DISCORD_EPOCH) * 4194304 | |
| //return new Date(snowflake / 4194304 + epoch) | |
| } |
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
| import xml.etree.ElementTree as ET | |
| import logging | |
| import re | |
| import json | |
| import csv | |
| from dateutil import parser as date_parser | |
| from datetime import datetime | |
| def extract_body_weight_records(xml_path): | |
| weights = {} |
OlderNewer