Skip to content

Instantly share code, notes, and snippets.

View Sunlis's full-sized avatar

Sean Dohring Sunlis

View GitHub Profile
@Sunlis
Sunlis / mounts.md
Last active February 6, 2024 03:26
Palworld Mounts

Mounts

Flying

By stamina:

Name Walk Sprint Stamina
Suzaku 200 1100 350
Suzaku Aqua 200 1100 350
@Sunlis
Sunlis / manifest.json
Created April 23, 2022 17:14
custom pack
{
"minecraft": {
"version": "1.18.2",
"modLoaders": [
{
"id": "forge-40.0.42",
"primary": true
}
]
},
@Sunlis
Sunlis / markov.js
Created January 28, 2020 17:16
Markov
START_TOKEN = '$START';
END_TOKEN = '$END';
const tokenify = (msg) => {
return msg.split(' ');
};
function markovify(messages, stateLen) {
let graph = {};
for (message of messages) {