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 dbdata: Vec = 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::("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 Date time 😭😭😭
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
oh look they care about it now it’s affecting them
“waaaaah please give us exemption so we can profit off of stolen works waaaaaaaahhhhhh”
You can find utterly vile replies from blue checks on that site now, even on the most heavenly, innocent, morally correct tweet. It’s insane.
profiting off of user generated content 😒
AGI coming tomorrow! (tomorrow never comes)
over the time of chatgpt’s existence I’ve seen so many people hype it up like it’s the future and will change so much and after all this time it’s still just a chatbot
“the bomb has been planted” - the intern that pushed the update at crowd strike or whatever
cloudstrike crowdstrike should be sued into hell
GOOD
You have backup and tape but not shared storage‽ Wut‽
I meaaannn we have one shared drive on the network when we want to share database backups and stuff with each other but for the kind of work we do we only really need to store the important stuff on git repos and external servers with a bunch of virtual machines
my brain tired now, I stop talking about this
Yes, of course. IMO OneDrive is much easier for the end user instead of having to remember to store files in a share or using folder redirection which is prone to fail sometimes. Because using OneDrive they only have to store files where they normally store them and they get automatically synced and backed up to OneDrive. Something being easy is a huge benefit because it will ensure documents and everything else is backed up properly and it reduces support load.
fair fair
Please tell me you have some kind of backup of those computers where you don’t use shared storage or apparently anything “proper”.
many backups and tape drives when we max out storage. we’re good
Btw, GPOs only work using a domain. You are probably using local policies and those are sometimes not as likely to work.
our user accounts are on a domain
You don’t use Windows home too, right?
no ew
pretty small company so the accounts are all local, we don’t need to go as crazy as setup workstations and shared storage and all that.
It’s much better than the old way of home folders in a file share.
arguably subjective
not the point of my comment
PHP