it’s a “Special Military Redirection”
certified woman
it’s a “Special Military Redirection”
more evil, what a suprise
old fashioned sisko
he’s got a point though. From the moment I understood the weakness of my flesh, it disgusted me. I craved the strength and certainty of steel. I aspired to the purity of the Blessed Machine. Your kind cling to your flesh, as though it will not decay and fail you. One day the crude biomass you call a temple will wither, and you will beg my kind to save you. But I am already saved, for the Machine is immortal… Even in death I serve the Omnissiah.
THEY’RE TURNING THE AIR GAY
PHP
she’s thinking, “get a load of this Ad Astra asshole right now”
they made Canadian money free?? count me in
substance painter proprietary file formats. PROPRIETARY FILE FORMATS.
on this point…
I heard from someone in my local area that it’s getting to the point where people don’t even know how to use a mouse and keyboard.
this is the iPad generation…
forced arbitration means you can’t go through the normal court system if you want to sue them, instead resolving it through a private neutral third party.
and before, the waiver meant that you gave up your right to sue them in a class action lawsuit
getting rid of those is a massive W
reasonable response tbh
yeah sure, happy teams start with jira but they end up as angry and sad teams
religion being a cancer on this world example #9636472614364
PARTIALLY SIDED?
I switched to using tiberius
bit different but not too hard don’t have my code on hand atm but this is how I started with it
let mut config = Config::new();
config.host("your_server_name");
config.database("your_database_name");
config.authentication(tiberius::AuthMethod::sql_server("your_username", "your_password"));
config.trust_cert();
let tcp = TcpStream::connect(config.get_addr()).await?;
tcp.set_nodelay(true)?;
let mut client = Client::connect(config, tcp.compat_write()).await?;
then I did something along the lines of
fn main() {
let stream = client.query(&query, &[]).await?;
let rows = stream.into_first_result().await?;
let db_data: Vec<MyObject> = rows.into_iter().map(mapping_function_i_made_for_myobject).collect();
}
fn mapping_function_i_made_for_myobject(row: Row) -> MyObject {
MyObject {
my_date_field: row.get::<NaiveDateTime, _>("my_date_field").map(|dt| Local.from_local_datetime(&dt).unwrap()),
}
}
just started out rust and made a massive thing with sqlx only to find out the latest versions don’t have mssql support anymore and the last version that did doesn’t support decoding DateTime<Utc> 😭😭😭
had to rewrite the whole thing again with Tiberius, painful yet educational
certificates fucking destroy everything in my work for an hour once every year because of expiry
do you have an alternative to Google wallet/other contactless apps not working on grapheneos for some dumb safetynet reason?