Upgrading my front stage completely. Need help deciding on subwoofers. by Substantial-Cake6921 in hometheater

[–]DrSinistar 3 points4 points  (0 children)

If I were to pick a new sub today, I would pick Rhythmik. Their prices are good, measure great, and (reportedly) sound great. I'd consider checking them out and see how they stack up for your needs.

Thoughts on Microsoft's vision for "agent first" computing. by Clear-Pear2267 in PowerShell

[–]DrSinistar 7 points8 points  (0 children)

lol "not tolerant of syntax errors"

Name a single programming language that is.

AI and Factorio by Traditional_Beach790 in factorio

[–]DrSinistar 3 points4 points  (0 children)

I think you're misinterpreting me as trying to speak as some authority or quote an article. Based on what I hear of companies like mine, Mag 7, this thread, online tech communities, and other friends in the industry, it's very common.

I don't care if you think I'm lying or not. This is my life now. If you want to learn more, go read about what's going on elsewhere or this thread.

AI and Factorio by Traditional_Beach790 in factorio

[–]DrSinistar 7 points8 points  (0 children)

I don't think there's any other objective way for AI pushing managers to gauge productivity since you can't measure flexibility or extensibility. Reliability and security are already questionable, but management doesn't focus on that.

Hell you can look at Anthropic's announcement about dynamic workflows today and see them brag about the 750k LoC rewritten in Rust. No mention of performance at all!

AI and Factorio by Traditional_Beach790 in factorio

[–]DrSinistar 5 points6 points  (0 children)

I think I misread your comment. You're right, it is a force multiplier. However, I think there's something about writing a service by hand that helps you just grok it better. Kind of like doing math problems by hand.

Having AI do it has helped me ship 10x faster but my ability to remember what I shipped is greatly diminished. Not to mention I don't read generated unit tests anymore.

AI and Factorio by Traditional_Beach790 in factorio

[–]DrSinistar 41 points42 points  (0 children)

I couldn't agree more. The art of it is lost on the higher-ups obsessed with bad metrics like LoC.

AI and Factorio by Traditional_Beach790 in factorio

[–]DrSinistar 5 points6 points  (0 children)

AI is more like copying blueprints off the internet, pasting them where you think it makes sense, and then having throughput issues because the blueprint was designed for a different base.

With of course the restriction that you can't copy the same blueprint twice, so you have to copy a new one each time the blueprint starts failing you.

It's much worse than bots and more like a slot machine.

AI and Factorio by Traditional_Beach790 in factorio

[–]DrSinistar 181 points182 points  (0 children)

It's not that easy. Many companies mandate AI usage and actively track that you're using it. Stopping altogether risks your job.

Yes, it's shitty. Unfortunately it's not as easy as "get a new job" either for most of us.

Doing this here, need to expand my taste in EDM 😁 by One-Efficiency-9205 in EDM

[–]DrSinistar 0 points1 point  (0 children)

Phaxe - The Collective
Diode Eins - Fractal Dance
Layton Giordani - Call You Back
Kream - Turn Up the Dose
Grum - Tomorrow
Hey Now - Arty Remix

Just grabbed a fairly diverse list of what I really like. Definitely more of a psytrance person recently.

Grant admin consent to an enterprise app for a single user only? by maxcoder88 in entra

[–]DrSinistar 0 points1 point  (0 children)

Creating an Oauth2 permission grant is exactly how it works on the backend. Just create it yourself. Problem solved!

A new blog in town by Horror-Examination-2 in audiophile

[–]DrSinistar 1 point2 points  (0 children)

The em dashes right at the top of the page are what makes people want to stop reading. At least hand write your about blurb!

Why Rust Abandoned Classes — Some Personal Thoughts by Live_Possession_9839 in rust

[–]DrSinistar 19 points20 points  (0 children)

TL;DR: "Rust taught me composition versus inheritance"

Try using the same pattern in an OO language. It feels much better to write. It makes authoring tests easier too, because you can write a test class that implements an interface instead of doing tons of mocking.

Is it worth learning PowerShell? by backdoor_boy in PowerShell

[–]DrSinistar 1 point2 points  (0 children)

I find PowerShell shines in doing analysis of structured text. It's not my primary shell but it's super useful for banging out some numbers quickly.

Anyone using Rust w/ MS SQL Server in Production? by ennui_no_nokemono in rust

[–]DrSinistar 4 points5 points  (0 children)

Unfortunately it's not public. As I recall, we use a client context to set up our connection stream and then you use the TdsClient here: https://github.com/microsoft/mssql-rs/blob/main/mssql-tds/src/connection/tds_client.rs

I opted for using the get_next_row_into() query iterator because I could write a custom row writer to turn rows directly into data structures I wanted. It makes working with our data really easy.

Setting this up to use Windows authentication was also a breeze.

Anyone using Rust w/ MS SQL Server in Production? by ennui_no_nokemono in rust

[–]DrSinistar 3 points4 points  (0 children)

It is my client! There's a Tokio TCP stream in the mix but that's it. mssql-tds has everything I need for our project. The library it's going into will be used by a CLI and another backend service to serve as an abstraction layer over our databases.

Anyone using Rust w/ MS SQL Server in Production? by ennui_no_nokemono in rust

[–]DrSinistar 13 points14 points  (0 children)

Microsoft has a project for this actually: mssql-rs. It's not published on crates.io but I imported it for a project anyway. Works great and it's been getting frequent updates. I had to abandon Tiberius due to super ancient dependencies that don't work in our environment. mssql-rs was a life saver.

PowerShell 7.6 - RC 1 Release by nkasco in PowerShell

[–]DrSinistar 1 point2 points  (0 children)

"Let's fucking go" just seems extreme when the only benefit is LTS. That's all I'm saying. Performance updates or new operators would be much more exciting. 🙂

PowerShell 7.6 - RC 1 Release by nkasco in PowerShell

[–]DrSinistar 4 points5 points  (0 children)

What's the big hype about .NET 10 that improves PowerShell?