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
# List of plugins | |
set -g @plugin 'tmux-plugins/tpm' | |
set -g @plugin 'tmux-plugins/tmux-sensible' | |
set -g @plugin 'tmux-plugins/tmux-resurrect' | |
# rebind prefix to ctrl+s | |
unbind C-b | |
set -g prefix C-s | |
bind C-s send-prefix |
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
const slp = require('slp-parser-js'); | |
const SlippiGame = slp.default; | |
const path = require('path'); | |
const fs = require('fs'); | |
const _ = require('lodash'); | |
const cliProgress = require("cli-progress"); | |
const inputFolder = "./Slippi"; | |
const outputFolder = "./sorted"; |
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
const fs = require('fs'); | |
const _ = require('lodash'); | |
const path = require('path'); | |
const crypto = require('crypto'); | |
const moment = require('moment'); | |
const slp = require('@slippi/slippi-js'); | |
const SlippiGame = slp.SlippiGame; // npm install @slippi/slippi-js | |
const basePath = path.join(__dirname, 'slp/'); // this var is "<directory your script is in>/slp" |
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
const { default: SlippiGame } = require('slp-parser-js'); | |
const path = require('path'); | |
const fs = require('fs'); | |
var inputPath = './input/'; | |
var outputPath = './output/'; | |
function sortSLP() { | |
files = fs.readdirSync(inputPath); | |
files.forEach((file) => { |
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
#!/usr/bin/env python3 | |
import sys | |
import tbapy # pip install tbapy | |
import collections as col # for OrderedDict | |
tba = tbapy.TBA("pI9kcg6VHPj7qySj5j467oOvmXlPPAbjF8n96CComaJod4mBxeCNRW5QE9i6YYh9") | |
def regionalStats(year): |