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
export const consolidateListsOfObjects = <Obj>(args: { | |
readonly objectLists: ReadonlyArray<ReadonlyArray<Obj>>; | |
readonly objectKeyFn: (obj: Obj) => string; | |
}): ReadonlyArray<ReadonlyArray<Obj>> => { | |
const parentMap = new Map<string, string>(); | |
const find = (objKey: string): string => { | |
const parent = parentMap.get(objKey); | |
if (parent === undefined) { | |
return objKey; | |
} |
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
benchmarkFilesDir = "/Users/georgepetrou/Desktop/431_pe3/raw" | |
outputExcelFilePath = "/Users/georgepetrou/Desktop/431_pe3/output.xlsx" | |
## Dont edit below here | |
import os | |
import mmap | |
import xlsxwriter | |
def processData(): | |
processedData = {} |
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
--[[ | |
A simple animations API | |
Written by Stalker (http://steamcommunity.com/profiles/76561197996451757/) | |
For Kuma (http://steamcommunity.com/profiles/76561198061335920/) | |
Documentation: | |
All of the functions are serverside only. | |
Player:StartAnimation(number or string, boolean, function, number) |