Jump to content

Main public logs

Combined display of all available logs of JOHNWICK. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 17:49, 15 November 2025 PC talk contribs created page RustIs it possible to use global variables in Rust? (Created page with "You’re wiring up a little Rust app to poke at a SQLite database. You open a Connection in main, and then… you start passing &db into function after function after function. Before long, half your code looks like this: fn create_table(db: &sqlite::Connection) { ...: } fn insert_user(db: &sqlite::Connection, user: &User) { ...: } fn delete_all_the_things(db: &sqlite::Connection) { ...: } // etc... At some point you think: “Can’t I just make the...")