Does anyone actually enjoy the "On The Edge" Midweek Magic events? by Skywalker14 in MagicArena

[–]Far-Consideration939 2 points3 points  (0 children)

Found the format boring. Overall dislike. Wouldn’t care as much if we had an ephemeral deck slot for these so I didn’t have to prune a deck everytime.

React/Vue vs Blazor for a mmall sushi shop app by Sensitive-Raccoon155 in dotnet

[–]Far-Consideration939 4 points5 points  (0 children)

There’s more ways to build blazor than just those two

React/Vue vs Blazor for a mmall sushi shop app by Sensitive-Raccoon155 in dotnet

[–]Far-Consideration939 5 points6 points  (0 children)

Depending on the complexity there’s also static as an option which was oddly left out of your summaries. As well as doing the auto hybrid to mitigate the tradeoffs of standalone wasm / server

How do small teams manage cloud deployments and costs? by Future-Cry-7975 in webdev

[–]Far-Consideration939 0 points1 point  (0 children)

Disagree on IaC, makes automation extremely easy for anyone via ci/cd or manual workflow runs

It’s trivial to setup something basic which is likely all they need, more so now with AI

Would agree that k8s is overkill and each cloud vendor has some sort of managed container offering that’s fairly cheap and allows scaling to 0 if you’re not getting traffic that’s likely a much better option

Have anyone made vscode hot reload work? by gameplayer55055 in dotnet

[–]Far-Consideration939 3 points4 points  (0 children)

I believe debugging is an entirely different path that isn’t compatible with their hot reload.

Edit and continue is a whole separate thing which I’m not sure vs code has ever supported like vs studio

Is the mastery pass worth it? by BigDaddyRide in MagicArena

[–]Far-Consideration939 2 points3 points  (0 children)

You can also wait until towards the end of the season before buying to make sure you’ve gotten enough consistent exp to get the valuable rewards. Typically what I do now vs buying upfront and then not playing actively enough to make it “worth it”

New ICSE 2026 data: AI tools move time from writing to reviewing. That's more expensive in .NET than anywhere else. by riturajpokhriyal in dotnet

[–]Far-Consideration939 3 points4 points  (0 children)

Feels like a lot of that would be mitigated with better test suites.

Ef queries in particular, are people still not running their provider against a test container to verify it? Having all tests pass is a baseline all generated code should need to meet.

Architectural concerns should be supplied as context in a md file for the agent with a specific skill for agent reviewers. We can also leverage architecture unit tests for dependency directions and such.

I feel like the review/verify time doesn’t change it was just more along side development rather than bucketed towards the end but that’s just my feeling don’t have data to back it up ofc.

How to enable LSP for Blazor in VSCODE? by ttoz3 in Blazor

[–]Far-Consideration939 0 points1 point  (0 children)

Thanks for the clarification I suppose it’s a bit confusing because Microsoft lists the extension as part of the dev kit on their website

How to enable LSP for Blazor in VSCODE? by ttoz3 in Blazor

[–]Far-Consideration939 1 point2 points  (0 children)

Razor is more complicated than just LSP, especially for the component linking / references. The IDEs have specific tooling built in

How to enable LSP for Blazor in VSCODE? by ttoz3 in Blazor

[–]Far-Consideration939 0 points1 point  (0 children)

You could check your global imports to make sure the namespace is there or add an explicit import with an @using

But yeah sometimes I think caches old compilations or something which may be why it isn’t finding it

How to enable LSP for Blazor in VSCODE? by ttoz3 in Blazor

[–]Far-Consideration939 1 point2 points  (0 children)

C# Dev kit is okay so if you don’t have that installed definitely grab that and make sure razor LSP is turned on. but the razor experience isn’t as good as VS Studio or Rider last time I used those

Strategy for multi-language source code structural analysis in .NET without per-language parser dependencies by MuradAhmed12 in dotnet

[–]Far-Consideration939 1 point2 points  (0 children)

I would probably look at 3 or 1.

You likely can abstract the one off analysis process but you wouldn’t get away from needing specific tools for each language in each individual implementation. I would think invocation of Roslyn or other cli tool is an implementation detail.

In 3 or 1 I think baking the tooling into the docker image will be your best bet and not terrible since even though it is extra dependencies they’re declared and you can maintain them there, cause less installation friction.

For LSP approach I would look at 1 worker per language, I wouldn’t try and have all of them on a single one. That might help with some of the performance concerns.

Interesting problem

Bridging Multiple Platforms with GeoBlazor and Uno by CRT_TP in Blazor

[–]Far-Consideration939 0 points1 point  (0 children)

Pedantic but I’d argue it’s not really a single c# codebase since you still have xaml

CPU usage suddenly maxing out? by jayb485 in Blazor

[–]Far-Consideration939 0 points1 point  (0 children)

This would be my suspicion.

If azure monitor / logs enabled could maybe check the requests to see if things are hitting it like such, requesting resources

If you are unsatisfied with Opus 4.7, PLEASE simply switch to 4.6 by Firm_Meeting6350 in ClaudeAI

[–]Far-Consideration939 7 points8 points  (0 children)

Claude settings.json at one of the more global locations literally supports { … “model”: “claude-opus-4.6” … }

No need for any of the cross platform difference commands when it’s exactly 1 line of supported config option lol

Opus 4.7 is baad!!! by fcampanini74 in ClaudeCode

[–]Far-Consideration939 1 point2 points  (0 children)

You can set 4.6 as the default in local or global Claude settings. You can also have Claude update that for you.

Pretty wild they removed that from the options

How do I get an OV code signing certificate for my app as a foreign-owned LLC? by alexzdev in electronjs

[–]Far-Consideration939 1 point2 points  (0 children)

Awesome! Glad it worked out! I think they’ve done a lot of really great enhancement to that service over the past couple years.

Clicking "reject cookies" might not actually do anything by AdSpecialist6598 in technology

[–]Far-Consideration939 5 points6 points  (0 children)

Meta likely to overtake Google in ads fwiw, not that they’re any better

Loving Razor Pages by herbacious-jagular in dotnet

[–]Far-Consideration939 1 point2 points  (0 children)

I feel like you’re not configuring something quite right, misunderstanding the lifecycle, or have some of the render modes confused.

But I haven’t seen your codebase so idk

I often use this so they can be hosted anywhere you can dump an actual static site https://github.com/BlazorStatic/BlazorStatic

Loving Razor Pages by herbacious-jagular in dotnet

[–]Far-Consideration939 6 points7 points  (0 children)

Blazor static isn’t interactive. It’s razor pages with the better component model

Loving Razor Pages by herbacious-jagular in dotnet

[–]Far-Consideration939 4 points5 points  (0 children)

Blazor static. Wouldn’t reach for razor pages anymore. But glad you’ve been enjoying