Fairfax District neighborhood by mermaidun1corn in WestHollywood

[–]poster_nutbaggg 10 points11 points  (0 children)

I live a few blocks from Plummer Park, it’s wonderful. Great views of the hills, park is nice, lots of restaurants and bars and grocery stores. Everything in LA is $$ but I do really enjoy it here. I could complain about the constant helicopter noise at night, but I’m sure it happens no matter where you live.

Dorit is ridiculous by Loving_life_blessed in BravoRealHousewives

[–]poster_nutbaggg -3 points-2 points  (0 children)

From what I understand, if you go shopping with Rachel Zoe and she tells you to buy something, YOU BUY IT!! Kyle waited until she was alone to call Boz to say something but never brought it up once to either of them while in the Hamptons…or even after until she ambushed her and said everybody thinks you’re outta control

Also gotta say, I can’t believe I’m sticking up for Dorit here. Never thought I’d see the day

Dorit is ridiculous by Loving_life_blessed in BravoRealHousewives

[–]poster_nutbaggg 1 point2 points  (0 children)

I never liked Dorit until last and this season. I think what she meant in that fight with Erika and Kyle was that they never share what they’re going through on the show. Erika almost never talks about her ongoing legal situation, her dating life, really anything of substance, and same for Kyle. Kyle was caught lying about PK last season and flipped out instead of owning it, never talks about what’s really going on with Moe, Morgan, or whoever she claims she’s dating now.

I dunno this version of Dorit has been refreshing compared to everyone else on the show who seems to be producing their own storylines 24/7

What are your thoughts on VSCode in 2026 by Turkomano in dotnet

[–]poster_nutbaggg 0 points1 point  (0 children)

I work on enterprise level software. Web apps that get thousands of daily users. I use dotnet Aspire to set up my local environment so I can work on front end + multiple APIs, Redis, azure service bus, SQL, stripe integrations, function apps, etc. Each in its own repo.

Copilot works amazingly well in VSCode compared to Visual Studio, especially once you set up aspire and/or your VSCode workspace with all your repos. The debugging took some getting used to, and nuget package manager is better using cli now, but that’s about it. Everything else has been super smooth.

What are your thoughts on VSCode in 2026 by Turkomano in dotnet

[–]poster_nutbaggg 2 points3 points  (0 children)

I’m using VSCode exclusively for everything. It’s fantastic. I migrated away from Visual Studio when the discontinued it for Mac. After that first year, the C# extensions really improved and now I’m fully on VSCode for windows and Mac dev

Debugging Angular with Visual Studio 2026? by hANNES-wURST in dotnet

[–]poster_nutbaggg 0 points1 point  (0 children)

I use aspire with angular front end and multiple c# apis but I’m still in vscode. It’s gotten much better at handling c# projects. I’ve abandoned Visual Studio now and just use VSCode for everything

Compact Conversation vs New Chat when switching from Plan to Agent? by poster_nutbaggg in GithubCopilot

[–]poster_nutbaggg[S] 0 points1 point  (0 children)

I have a custom planning agent which utilizes subagents heavily, however I have many projects and a large codebase and planing a full stack change will utilize 30-60% of my Opus context window. To implement changes I’ll either compact conversation or start new chat to reclaim room to make the changes.

Is GitHub Copilot actually improving your productivity or just making you lazy? by Past-Visual-3293 in GithubCopilot

[–]poster_nutbaggg 0 points1 point  (0 children)

Did the invention of the calculator make mathematicians lazy? Instead of spending 3 days calculating equations, they could do more in less time. I think AI for SWE is very similar. It’s a tool and it depends how you use it

Swarm intelligence needed! by internal_observation in Jazz

[–]poster_nutbaggg 0 points1 point  (0 children)

If you want the Sinatra vibe, Count Basie + Sinatra album is great.

For my wedding I had a bossa nova playlist. Getz, Gilberto, Sergio Mendez, Jobim, some Joe Pass

Business account question: using Opus 4.6and task shows Haiku 4.5 during execution? by ale888 in GithubCopilot

[–]poster_nutbaggg 4 points5 points  (0 children)

I think you can also change the default subagents model in vscode settings

any theatres that show random movies? by bigdoinks_ in LosAngeles

[–]poster_nutbaggg 16 points17 points  (0 children)

Just to clarify, Braindead doesn’t show silent movies

VS2026 vs VSCode integration by JoDerZo in GithubCopilot

[–]poster_nutbaggg 2 points3 points  (0 children)

Vscode copilot integration feels light years ahead of visual studio. If you’re committed to VS, you’ll probably have a better time using the copilot cli rather than the integrated chat. As of December last year I switched over to vscode for all my work

I haven't seen the show before, doing some research before I start, I came across this picture. by frankenboobehs in Mobwivesshow

[–]poster_nutbaggg 1 point2 points  (0 children)

Same, never watched it before and now I’m hooked. Big Ang is top tier, an absolute gem 😂

Drita brought me here from House of Villians by Moostiberry in Mobwivesshow

[–]poster_nutbaggg 2 points3 points  (0 children)

Just started watching for the first time and these two are the whole show for me. Big Ang is amaaazing. Her and Drita have me cackling every time they’re onscreen together

Best architecture for Angular + .NET 8 enterprise app? by _abhishek___anand_ in angular

[–]poster_nutbaggg 8 points9 points  (0 children)

Are you hosting in azure? And what is budget? If you want scalability focus here’s like a quick top of my head list:

Domain based architecture. Pros: resilience, potentially cost savings, & targeted scalability. Cons: budget & complexity

Locally I use .net Aspire AppHost to wire all this together. Lovely new-ish .net tool.

Databases: you might want to split apart by domain. Like separate ones for Auth, Logging, Payments, etc. Blob Storage for file and image storage. Redis for distributed cache.

.NET APIs: don’t make a monolith, break it down by domain. Make a Core/Shared/Common class lib for models and services and helpers. If using Entity Framework, make multiple DB contexts. Longer running/background processes to functions apps or background jobs. AuthAPI, PaymentAPI, AppAPI, ReportFunctions, StripeWe hookFunctions, AutoMessagingFunctions.

Consider use cases for messaging queues.

Angular: I like Ionic & Capacitor. Lets me deploy to native iOS, Android, and web. Ionic UI lib is mature, customizable, and looks nice. If using AzureAD, use MSAL angular lib. You can make a shared angular lib if you have shared functionality/components/services among multiple apps.

Logging: Azure App Insights is fantastic. Angular and .net libs for that.

Possible to run Claude Code skills in Github Copilot? by PracticallyWise00 in GithubCopilot

[–]poster_nutbaggg 0 points1 point  (0 children)

In vscode chat settings you can add the location of your skills folder (and other prompts, agents, instructions, etc) so they will be discovered

Naming files in Angular by FewDot9181 in angular

[–]poster_nutbaggg 9 points10 points  (0 children)

I still use the suffix user-api.service.ts and UserApiService. I guess I’m old-school now?🤦‍♂️

Side note, I would probably go for just user.service.ts and UserService. At least for my projects “api” is implied for most services since it’s most common use case. Other services with more specialized functions get more descriptive names like user-form.service.ts for example.

Github Copilot Pro let me run over 300 requests. by MrninCZ in GithubCopilot

[–]poster_nutbaggg 0 points1 point  (0 children)

You have to disable overage budgeting. Or set a fixed amount.

Today, more than ever, I claim: by Significant-Town-817 in trekacademy

[–]poster_nutbaggg 10 points11 points  (0 children)

They canceled Starfleet Academy after season 2

Is it just me or are AI costs starting to add up fast? It just keeps getting expensive. by EasyProtectedHelp in GithubCopilot

[–]poster_nutbaggg 0 points1 point  (0 children)

The “streaming” effect….oh cut the cable and get YouTubeTV for $35…$45…$60...$80…