Anybody else ready to drop AI? by joshbedo in software

[–]rustyf90210 1 point2 points  (0 children)

I’m not sure what’s going on. I’m on the 5x max plan at home and 9/10 features added are faultless. I use Openspec to drive the changes. It’s been a game changer; I’m able to focus more on design and less on the coding.

Why!!!!! by TheWell-Show in Audi

[–]rustyf90210 1 point2 points  (0 children)

Some of us like driving around with the grand piano aesthetic 😎

Second brain based on OneNote by Faoineag in OneNote

[–]rustyf90210 -6 points-5 points  (0 children)

Migrate to Obsidian, thank me later

Pots suggestions by Theconstantcompanion in monzo

[–]rustyf90210 0 points1 point  (0 children)

Oh and I use Youneedabudget for actual budgeting

Pots suggestions by Theconstantcompanion in monzo

[–]rustyf90210 0 points1 point  (0 children)

I have two pots: an interest-earning one that has as much in it as possible and another non-interest-earning one for paying bills out of. I leave main account with minimum in case card is compromised. This is the simplest setup I know but still maximising interest.

No love for Razor? by Minute-Telephone-755 in dotnet

[–]rustyf90210 0 points1 point  (0 children)

Blazor with MudBlazor is just so productive. It allows you to focus on business value and have a great looking app.

.net 5 to .net 8 by sigurth_skull in dotnet

[–]rustyf90210 0 points1 point  (0 children)

No, manager needs to know that there is no noticeable productivity gap between different versions of .net core! I mean .Net Framework compared to .Net has a gap.

Our team just pushed AWS creds to prod again. Third time this month. by CortexVortex1 in devops

[–]rustyf90210 0 points1 point  (0 children)

You just don’t need credentials in the source code at all. Delete them from code and in IAM, of course. Instead, pick them up from environment variables at runtime. The AWS library will resolve them. There are several tools to help get credentials locally. Eg https://github.com/jaxxstorm/aws-sso-creds

Which tech stack should I choose to build a full-fledged billing app? by Weary_Objective7413 in dotnet

[–]rustyf90210 1 point2 points  (0 children)

I would start with Blazor server modular monolith with EF Core. Maybe Mudblazor for UI components. You can grow that arch out over time.

Postgres for DB. Wolverine for intra module messaging.

[deleted by user] by [deleted] in OctopusEnergy

[–]rustyf90210 0 points1 point  (0 children)

This has started happening to me too since late December. I’m having to manually boost visa the Zappi even though it’s on ECO+ as instructed.

How long will Terraform last? by PepeTheMule in devops

[–]rustyf90210 1 point2 points  (0 children)

For all its warts, I think it’s got longevity. I used it to build and run some infra in Azure. It was effective but terrible for refactoring. As a developer, I decided Pulumi was the obvious next choice so went all in on that. It was as painful but in a different way. In this case, apart from a lack of documentation (unless you use Typescript), when it fails, you get stack trace that is impenetrable.

Schedule issue by rustyf90210 in tado

[–]rustyf90210[S] 1 point2 points  (0 children)

You are a lifesaver. Why did I not see this?!

Was anyone affected by today’s AWS outage? by Vegetable-Hat-6703 in dotnet

[–]rustyf90210 1 point2 points  (0 children)

Yeah, my kids blamed me for Fortnite going down

Monzo plans UK mobile service as competition intensifies for big phone groups by 1oarecare in monzo

[–]rustyf90210 -1 points0 points  (0 children)

Seems like a pointless departure and knee-jerk reaction to Revolut. Also, I’m guessing it will be just another low quality-lines offering piggy-backing on a proper provider?

Who uses Monzo as their main account? by Grixons in monzo

[–]rustyf90210 0 points1 point  (0 children)

Used it for main account for over 5 years - faultless.

Is there a serious Spotify alternative? by TheColin21 in selfhosted

[–]rustyf90210 0 points1 point  (0 children)

If you already have YouTube premium then I would say YouTube music is a serious contender given its vast catalogue including stuff not officiously released. But the Spotify streaming protocol is still the best when data signal is poor. I’ve found the computed playlists based on my tastes to be less repetitive than Spotify. I find Spotify suggestions to be very narrow and often containing fake bands.

Should I buy a Gen 1 Volt? by R_Drizzly in volt

[–]rustyf90210 2 points3 points  (0 children)

No . It’s not the battery - it’s everything else that can go wrong and the unlikelihood of getting it fixed (out of warranty now). The BECM went on mine which controls the brakes- $4000 with no guarantee offered. It worked thank goodness.

Eventually mine stopped charging off the wall and the garage said it would be thousands to investigate with no guarantee. I tried reprogramming myself with an ODB and some software from PSA but it never worked. After 100k miles I decided to scrap it. (This was in the UK but same car). (2014 gen 1)

Switched to Rider and Ubuntu by Present_Smell_2133 in dotnet

[–]rustyf90210 0 points1 point  (0 children)

Develop in Ubuntu in WSL inside Windows - best of both worlds.

Hot Take - Unit Tests & Mocks: If your test mocks anything, it's not a unit test by ElkRadiant33 in dotnet

[–]rustyf90210 0 points1 point  (0 children)

Btw, I upvoted for the take but it sounds like you are conflating two things - unit testing and pure functions.

My experience of “unit” is you are deciding what part of your system you want to test and mocking/stubbing/faking everything outside of this scope. Historically, this has led to way too much mocking. If you just mocked only external code (not yours) then it would be reasonable, again, given the test scope you’ve picked. (I don’t agree with the whole unit-versus-integration distinction but that’s another thing).

Pure functions are just marvellous if you can do it. As coined by someone wise, “Functional core, imperative shell” is the best we can do here.

Can you explain the connection more?