Cracker
Cracker
CC#
Created by Alp on 10/2/2024 in #help
C# backend vs Java backend
Backend development Java vs Backend development .net/C#
23 replies
CC#
Created by Alp on 10/2/2024 in #help
C# backend vs Java backend
Kankam LinkedIn 🙂
23 replies
CC#
Created by mer on 10/1/2024 in #help
Dealing with HTTPClient metrics
Try http_client_request_duration_seconds_count instead, see if it matches your expectation
5 replies
CC#
Created by mer on 10/1/2024 in #help
Dealing with HTTPClient metrics
that would explain the graph which the pattern like one request at a time and its done in a short period and repeats
5 replies
CC#
Created by mer on 10/1/2024 in #help
Dealing with HTTPClient metrics
"currently active on the client" so its not the total request per some time
5 replies
CC#
Created by mer on 10/1/2024 in #help
Dealing with HTTPClient metrics
No description
5 replies
CC#
Created by Hound on 9/20/2024 in #help
Approaches to get around a big codebase
this way I was able not have to compile whole project and dependencies, just the project I want to debug and change
6 replies
CC#
Created by Hound on 9/20/2024 in #help
Approaches to get around a big codebase
Not sure if its relevant to your case but I used to have that one huge project. I needed to debug some part of if. I could host that project by copy host files from server to my local IIS, then I build the project that I want to debug, I build the project, copy output dll/pdf files to IIS folder and I can attach to debug, make changes and commit
6 replies
CC#
Created by Davaaron on 9/12/2024 in #help
Build order with dotnet build ...?
okay so there is no direct reference between that two project
40 replies
CC#
Created by Davaaron on 9/12/2024 in #help
Build order with dotnet build ...?
is that a project reference in csproj ?
40 replies
CC#
Created by Davaaron on 9/12/2024 in #help
Build order with dotnet build ...?
so project B references project A right ?
40 replies
CC#
Created by Davaaron on 9/12/2024 in #help
Build order with dotnet build ...?
how do you reference your projects eachother ?
40 replies
CC#
Created by Davaaron on 9/12/2024 in #help
Build order with dotnet build ...?
if you use project reference across your csproj files within sln then build order will align with it
40 replies
CC#
Created by ooohmike on 9/10/2024 in #help
✅ Hi guys, please help my interview preparation. Welcome any .NET god.
bruh...
33 replies
CC#
Created by Batuhan on 8/30/2024 in #help
✅ Event-Driven-Architecture Cons Issue
And best option is why not just wait the response on UI ?
16 replies
CC#
Created by Batuhan on 8/30/2024 in #help
✅ Event-Driven-Architecture Cons Issue
One option is polling, UI can fetch the status periodically or signalR where UI will be notified once the event is consumed
16 replies
CC#
Created by Batuhan on 8/30/2024 in #help
✅ Event-Driven-Architecture Cons Issue
So you basically asking that you publish an event triggered from UI but its not request-response model, its just fire the event and its done on UI. You asking how do I notify UI back once the event is consumed ?
16 replies
CC#
Created by Qwerz on 8/26/2024 in #help
✅ How do you handle countdowns of objects?
but you also need to extract elapsed time from the expiration of each item
33 replies
CC#
Created by Qwerz on 8/26/2024 in #help
✅ How do you handle countdowns of objects?
lets say 1 million items are in the list but only 100 of them shown in screen, so you get expiration date of those 100 items and start 100 instance of timer
33 replies
CC#
Created by Qwerz on 8/26/2024 in #help
✅ How do you handle countdowns of objects?
how many items you can show on screen ? Expiration - CurrentDate should be correct approach
33 replies