Skip to content

Instantly share code, notes, and snippets.

View j0lol's full-sized avatar
boo!

jo! j0lol

boo!
View GitHub Profile
@mxve
mxve / .zshrc
Last active March 20, 2026 18:30
cutesy prompt PS1 (zsh)
autoload -Uz vcs_info
orange1=$'%{\e[38;2;254;191;86m%}'
orange2=$'%{\e[38;2;254;209;134m%}'
green1=$'%{\e[38;2;168;240;125m%}'
green2=$'%{\e[38;2;191;240;161m%}'
purple=$'%{\e[38;2;181;116;218m%}'
red1=$'%{\e[38;2;230;131;131m%}'
red2=$'%{\e[38;2;236;96;96m%}'
gray=$'%{\e[38;2;199;190;200m%}'
@OverHash
OverHash / main.rs
Created July 10, 2022 23:22
Minecraft OAuth Authentication Rust Example
use std::{
collections::HashMap,
fs,
io::{self, Write},
};
use reqwest::Client;
use serde::{Deserialize, Serialize};
use serde_json::json;