Skip to content

Instantly share code, notes, and snippets.

View 5w14's full-sized avatar
:shipit:

max tomashevsky 5w14

:shipit:
View GitHub Profile
@5w14
5w14 / mcacc.ts
Created December 30, 2025 11:31
bun js script to get a online minecraft launch string from prismlauncher on linux
#!/usr/bin/env bun
import fs from 'fs';
const args = [...process.argv].splice(2);
let filter = (username: string) => true;
if (args.length > 0) {
filter = (username: string) => username.toLowerCase().startsWith(args[0].toLowerCase());
}