๐Ÿ’ป Jaken's Tech Corner ๐Ÿ’ป

โ–ถ Where Code Meets Coffee โ—€

๐Ÿš€ Current Projects

C:\JAKEN\PROJECTS> dir

LEDGERMATE.EXE    15,234  08-29-25  Personal finance manager
            

LedgerMate v0.0.1

Status: Beta Testing

A comprehensive personal finance manager written in Python. Features include:

๐Ÿ› ๏ธ My Development Environment
๐Ÿ’ป Primary Machine: Macbook Pro M1
๐Ÿ’พ Operating System: macOS Monterey
๐Ÿ“ Code Editor: NVIM
๐ŸŒ Web Browser: Firefox

๐Ÿ’ก Code Snippet of the Week

Here's a bit of Rust code I added to the Tauri CLI `tauri-utils` codebase to allow FIPS compliance from the tauri.conf.json files:

fips_compliant: std::env::var("TAURI_BUNDLER_WIX_FIPS_COMPLIANT")
    .ok()
    .map(|v| v == "true")
    .unwrap_or(config.fips_compliant),
            

๐Ÿ“ก Latest Tech Interests