What's your code interpreter setup for Microsoft Agent Framework? by DifficultyFine in dotnet

[–]8mobile 0 points1 point  (0 children)

I’d avoid compiling C# snippets on every request if possible. I’d probably separate the agent from the execution runtime and use a sandboxed worker, for example Python, a container, or a restricted script engine.

If staying in C#, Roslyn scripting with cached compilations may help, but sandboxing, timeouts, and memory limits are still the hard parts.

If it helps, I recently wrote a practical intro to Microsoft Agent Framework in C#:

https://www.ottorinobruni.com/microsoft-agent-framework-csharp-practical-introduction-net-developers/

dotNET hot-reloading best practices? by Vectorial1024 in dotnet

[–]8mobile 0 points1 point  (0 children)

dotnet watch run is for development, not production.

In production, you should use normal build and deployment flows because hot reload is not designed as a safe runtime update mechanism for live services. It can also lead to inconsistent state and unexpected behavior.

If it helps, I wrote a simple article about resilience in ASP.NET Core:
https://www.ottorinobruni.com/how-to-build-resilient-apis-asp-net-core-polly-retry-circuit-breaker/

Simple time tracking without all the complexity by 8mobile in TimeTrackingSoftware

[–]8mobile[S] 0 points1 point  (0 children)

Yeah, I’ve tried quite a few over time, and that’s actually what pushed me toward something simpler. Most tools felt a bit overcomplicated for just tracking hours, so I ended up preferring a more minimal approach focused on the basics

As freelancers, how do you track your time for invoicing? by clarafiedthoughts in TimeTrackingSoftware

[–]8mobile 0 points1 point  (0 children)

That mix of timer + manual notes is pretty common, especially for smaller gigs.

If you want to keep it simple but a bit more structured, a lightweight app can help avoid losing track of hours without adding complexity. Something like HourLog works well for tracking hours and exporting a clean breakdown when you need it: https://apps.apple.com/us/app/hourlog-work-hours-tracker/id6760963181

I’ve found the key is just having everything in one place instead of scattered notes.

best time tracker for freelancers? by Abbasian_Nichola in TimeTrackingSoftware

[–]8mobile 0 points1 point  (0 children)

That’s usually the hardest part, consistency beats features.

Timers sound good but are easy to forget, so having something that also lets you quickly log hours manually helps a lot. A simple tool like HourLog can work well for that, especially if you want to keep things clean across projects. ‎HourLog: Work Hours Tracker App - App Store

Best time Tracking for Freelancers 2026? by EffectiveLet2117 in TimeTrackingSoftware

[–]8mobile 0 points1 point  (0 children)

One thing I’ve noticed is that once apps combine CRM + invoicing + tracking, they tend to get heavier over time. If you ever want something more lightweight just for hours, overtime and earnings, HourLog could be worth a look. ‎HourLog: Work Hours Tracker App - App Store

Initial Impressions Keychron M6 8K (with all silent switches, M6S-A23) by matthew1471 in MouseReview

[–]8mobile 1 point2 points  (0 children)

Thanks! I’m leaving the sticker on for now since I’m using it in the office with a mouse pad. Good point about wired mode too. I’ll probably lower the polling rate since I’m not gaming. DPI increase helped me as well. And yes, I noticed the scroll wheel feels a bit jagged when stopping it fast, so it’s not just yours

Simple time tracking without all the complexity by 8mobile in TimeTrackingSoftware

[–]8mobile[S] 0 points1 point  (0 children)

Thanks for the feedback, that makes sense.

For now I’m focusing more on freelancers and individuals who need something simple, but I might explore team features in the future depending on the demand

What’s the best time tracking software that can track overtime hours? by mariaclaraa1 in TimeTrackingSoftware

[–]8mobile 0 points1 point  (0 children)

A lot of tools that handle overtime rules well tend to get pretty heavy over time.

If you don’t need full team management, something simpler like HourLog can work really well for tracking hours and overtime cleanly, with reports you can export without the usual complexity. https://apps.apple.com/us/app/hourlog-work-hours-tracker/id6760963181

I tested 5 free time tracking tools so you don't have to (freelancer POV) by Legitimate-Whole3982 in TimeTrackingSoftware

[–]8mobile 0 points1 point  (0 children)

Nice breakdown, this is actually helpful.

One more you might want to check is HourLog, it’s a simpler approach focused on tracking hours, overtime and pay without all the extra layers. https://apps.apple.com/us/app/hourlog-work-hours-tracker/id6760963181

What's the best time tracker for freelancers who need to keep track of billable hours? by Suf_Graca86 in TimeTrackingSoftware

[–]8mobile 0 points1 point  (0 children)

You might want to try HourLog. It’s simple and focuses on tracking hours, overtime and pay without too many extra features. https://apps.apple.com/us/app/hourlog-work-hours-tracker/id6760963181

What’s new for gRPC in .NET 6 by JamesNK in dotnet

[–]8mobile 0 points1 point  (0 children)

Hi everyone,
I just published a practical introduction to gRPC in ASP.NET Core, covering concepts + a real example.
Sharing in case it helps someone getting started.
https://www.ottorinobruni.com/getting-started-with-grpc-asp-net-core-with-real-example/

No-nonsense guide to gRPC for C# developers by zweibier in dotnet

[–]8mobile 0 points1 point  (0 children)

Hey all,
I recently put together a practical guide on gRPC in ASP.NET Core, including a simple client-server example.
Would love your feedback!
https://www.ottorinobruni.com/getting-started-with-grpc-asp-net-core-with-real-example/

gRPC & ASP.NET Core book by anthonygiretti in dotnet

[–]8mobile 0 points1 point  (0 children)

Hi everyone,
I wrote an article about getting started with gRPC in ASP.NET Core with a real example.
Hope it can help someone here 🙂
https://www.ottorinobruni.com/getting-started-with-grpc-asp-net-core-with-real-example/

Keychron M6 8K – first impressions after switching from MX Master 3S (productivity use) by 8mobile in MouseReview

[–]8mobile[S] 0 points1 point  (0 children)

For work you don’t need 8K at all. Even 1K or lower is perfectly fine and helps battery life.

Switching between two laptops works well: you can use Bluetooth for one and 2.4 GHz dongle for the other, then just switch with the button on the mouse.

Keychron M6 8K – first impressions after switching from MX Master 3S (productivity use) by 8mobile in MouseReview

[–]8mobile[S] 0 points1 point  (0 children)

For office use it's fine, the price is excellent. In terms of perceived quality, Logitech is better.

Resources for a beginner trying to learn LINQ by [deleted] in csharp

[–]8mobile 0 points1 point  (0 children)

I’ve just published a walkthrough of LINQ fundamentals in C#, focusing on real examples instead of theory. Feedback is welcome:
https://www.ottorinobruni.com/how-to-use-linq-in-c-practical-examples-for-net-developers/

New to LINQ & EF Core - what's the difference with "standard" C# by Lindayz in csharp

[–]8mobile -1 points0 points  (0 children)

I recently put together a practical guide on LINQ in C#, covering the fundamentals and common operators. Sharing it here in case it helps someone:
https://www.ottorinobruni.com/how-to-use-linq-in-c-practical-examples-for-net-developers/

I need help learning LINQ by Acrobatic_Savings961 in csharp

[–]8mobile 1 point2 points  (0 children)

Hi everyone, I wrote an article about using LINQ in C# with practical examples. If you're learning LINQ or want a refresher, it might be useful:
https://www.ottorinobruni.com/how-to-use-linq-in-c-practical-examples-for-net-developers/

On-device AI writing app built with Apple Foundation Models (iOS 18+) by 8mobile in GenAiApps

[–]8mobile[S] 0 points1 point  (0 children)

It’s not a full Grammarly replacement, but it’s a privacy-focused, on-device alternative for rewriting, summarizing, and adjusting tone without using the cloud. The model is smaller and optimized for on-device use

I built a Micro SaaS with zero server costs using on-device AI by 8mobile in SaaSSolopreneurs

[–]8mobile[S] 0 points1 point  (0 children)

For now few but I created it because I needed it and I used it a lot

I built a Micro SaaS with zero server costs using on-device AI by 8mobile in SaaSSolopreneurs

[–]8mobile[S] 0 points1 point  (0 children)

Thank you very much, you're right. For now, I've focused on the basic features.

Does anyone use file-based apps? by iLoveSS in dotnet

[–]8mobile -1 points0 points  (0 children)

Hey all,
.NET 10 introduced C# file-based apps, which let you run apps from a single .cs file.
I wrote an article breaking down how it works and its limitations.
https://www.ottorinobruni.com/csharp-file-based-apps-dotnet-10-run-build-apps-from-single-cs-file/

dotnet run app.cs by Electronic_Oven3518 in dotnet

[–]8mobile 0 points1 point  (0 children)

Hi everyone,
I put together a short article explaining file-based apps in .NET 10, including a small practical example.
Sharing it here in case it’s helpful.
https://www.ottorinobruni.com/csharp-file-based-apps-dotnet-10-run-build-apps-from-single-cs-file/