View triangle_square_number.py
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 math | |
import itertools | |
from collections import OrderedDict | |
""" | |
Output: | |
(36.0, 6, 8) | |
(1225.0, 35, 49) | |
(41616.0, 204, 288) |
View combat_log_splitter.py
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
############################ | |
## Made to split WoW combat log by day | |
## can also split any space-delimited file by the first line | |
## | |
## Written by Salvatore Lopiparo | |
## 2008 | |
import tkFileDialog, threading | |
from Tkinter import * |