Skip to content

Instantly share code, notes, and snippets.

View NateLevin1's full-sized avatar

Nate Levin NateLevin1

View GitHub Profile
@BlueZeeKing
BlueZeeKing / main.rs
Last active March 13, 2023 18:39
Comp sci club challenge
fn main() {
println!("{}", how_many_in_common("january february march"));
}
fn how_many_in_common(input: &str) -> u32 {
let words = input.split(" ");
let mut combined = 0x3ffffff;
for word in words {
@gmoraiz
gmoraiz / rm_emulator5562_offline.sh
Last active August 22, 2025 07:08
remove emulator-5562 offline from adb devices
#Native Instruments software uses PORT 5562 ON TCP (NTKDaemon)
#Run CMD as Administrador and write:
netstat -ano | findstr :5563
taskkill /PID <PID> /F