

yeah sure, happy teams start with jira but they end up as angry and sad teams
certified woman
yeah sure, happy teams start with jira but they end up as angry and sad teams
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
I don’t get the appeal of azure because of things like this.
annoying how much they try to push it
highly recommend checking it out! it’s very feature rich!
it enables me leaving open a billion tabs because they’re so easy to switch between and organise with it 😭😭😭
I think the ultimate form of Firefox vertical tabs is sideberry
when they natively have all or most of the features that sideberry has, they would have mastered it
I’m guilty of pushing massive commits with several different changes and just commenting “bump version”
if someone is actually using ai to grade papers I’m gonna LITERALLY drink water
bartender! one TRUNCATE for me please! I don’t want to remember this night
8 JOINS??? ARE YOU TRYING TO DIE
TRUE. the first time I used GitHub, the releases tab being all the way at the bottom in the mobile view confused me for a good while
cap () {
}
nocap () {
}
had to completely replace a component in a massive project at my work recently because we forgor how it worked and had a newer different thing for it. it was so intertwined into that project that I practically had to do a ship of Theseus on it 😭😭😭😭
the pixel phones are great, I had the 7 and now the 8 pro. it pains me to see Google’s business decisions with everything else
I would always pronounce it Codding if this were real
PHP