Skip to content

Instantly share code, notes, and snippets.

@wITTus
wITTus / organize_files
Created June 1, 2025 16:37
Semi-automatic BASH File Organizer Script
organize_files() {
local maxdepth=1
local model="qwen3"
#local model="qwen3:30b-a3b"
#local model="qwen3:14b"
local OPTIND opt
print_help() {
cat <<EOF
Usage: organize_files [-d N|--depth=N] [-m NAME|--model=NAME] [-h|--help]
@wITTus
wITTus / main.rs
Last active May 5, 2017 11:06
Concurrent search of MD5-hashed IP through the entire IPv4 space in Rust
// [dependencies]
// rust-crypto = "0.2.36"
extern crate crypto;
use std::thread;
use crypto::md5::Md5;
use crypto::digest::Digest;
use std::process;
fn main() {