Skip to content

Instantly share code, notes, and snippets.

View Osrepnay's full-sized avatar
🙂
Edit status

Name Osrepnay

🙂
Edit status
View GitHub Profile
@Osrepnay
Osrepnay / cd
Last active October 7, 2022 02:15
gruvbox material theme + patch
./change_color.sh -o Grateria <(echo -e "BG=1d2021\nFG=ebdbb2\nMATERIA_VIEW=32302f\nMATERIA_SURFACE=504945\nHDR_BG=282828\nHDR_FG=282828\nSEL_BG=d79921\n")
@Osrepnay
Osrepnay / magics.rs
Created September 14, 2022 02:02
chess magic generator in rust
use rand_core::RngCore;
use rand_core::SeedableRng;
use rand_xoshiro::Xoshiro256StarStar;
use std::time::{Duration, SystemTime, UNIX_EPOCH};
static BISHOP_BITS: [u32; 64] = [
6, 5, 5, 5, 5, 5, 5, 6, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 7, 7, 7, 7, 5, 5, 5, 5, 7, 9, 9, 7, 5, 5,
5, 5, 7, 9, 9, 7, 5, 5, 5, 5, 7, 7, 7, 7, 5, 5, 5, 5, 5, 5, 5, 5, 5, 5, 6, 5, 5, 5, 5, 5, 5, 6,
];