viceroypenguin
viceroypenguin
CC#
Created by Shiv on 11/12/2024 in #help
Hangfire recurring-jobs struck in queue
keep in mind adding it to the queue doesn't mean it happened at 9:30pm. it could have happened when you went to the website (which triggered starting the app up, which triggered hangfire to look for any jobs in the past it should have run and triggering those)
7 replies
CC#
Created by Shiv on 11/12/2024 in #help
Hangfire recurring-jobs struck in queue
that said, i haven'nt personally touched iis in several years, and (intentionally) forgotten everything i knew about it
7 replies
CC#
Created by Shiv on 11/12/2024 in #help
Hangfire recurring-jobs struck in queue
7 replies
CC#
Created by rocco on 10/2/2024 in #help
✅ vs code community don't start my code
why does your friend care, then?
65 replies
CC#
Created by rocco on 10/2/2024 in #help
✅ vs code community don't start my code
also, why are you using C# if you're that concerned - use a compiled language if you're that concerned
65 replies
CC#
Created by rocco on 10/2/2024 in #help
✅ vs code community don't start my code
if you're making it for your friend, why do you care whether it gets cracked?
65 replies
CC#
Created by rocco on 10/2/2024 in #help
✅ vs code community don't start my code
it's been at least 10 years since i've seen a pc optimizer that did anything valuable in the first place. there are plenty of oss ones anyway. are you selling this optimizer? if so, how are these "old acquaintances" getting it in the first place? are they paying you for the optimizer, and then cracking it?
65 replies
CC#
Created by ABp16 on 9/6/2024 in #help
Help me understand the GC in depth
10 replies
CC#
Created by ABp16 on 9/6/2024 in #help
Help me understand the GC in depth
For this, you'll find best results reading the GC code https://github.com/dotnet/runtime/tree/main/src/coreclr/gc or opening a discussion on the dotnet/runtime repo
10 replies
CC#
Created by ADogShit on 8/24/2024 in #help
✅ Infinite Bandwidth Work-around?
where do i sign up for the "laugh at acat when they kick him off" newsletter?
396 replies
CC#
Created by ADogShit on 8/24/2024 in #help
✅ Infinite Bandwidth Work-around?
@ACat are you still trying to figure out a way to cheat the system?
396 replies
CC#
Created by steven preadly on 8/15/2024 in #help
✅ Use() Extension Overload
yes. and again, you really shouldn't need to worry about it for most applications. get something working first, then if you identify a performance issue, address it at that time.
7 replies
CC#
Created by steven preadly on 8/15/2024 in #help
✅ Use() Extension Overload
short-hand for "performance"
7 replies
CC#
Created by steven preadly on 8/15/2024 in #help
✅ Use() Extension Overload
The extra allocations are due to how a Func<> is created dynamically. Extra allocations means more work allocating the object and for the GC later. That said, the difference is negligible for most applications. Use whichever is easiest for you and don't worry about perf issues until you have identified that there is one.
7 replies
CC#
Created by Avaray on 8/7/2024 in #help
How to prevent GitHub from building executables for all platforms?
jinx
8 replies
CC#
Created by Avaray on 8/7/2024 in #help
How to prevent GitHub from building executables for all platforms?
if you only want it to run on linux, then only specify it to run on linux.
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
arch: [x64, x86]
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
arch: [x64, x86]
you're telling it to run on linux, windows, and macos in your workflows.yml file
8 replies
CC#
Created by NeRooN on 7/12/2024 in #help
My NuGet packages are not created
also, why are you trying to support netcoreapp3.1? it is long out of support.
134 replies
CC#
Created by NeRooN on 7/12/2024 in #help
My NuGet packages are not created
note, you cannot use the dotnet build system to put it into a shared folder for consumption. you have to build it, and then use nuget install to put it into the shared location. otherwise, it will not end up in the proper subfolder of the shared location.
134 replies
CC#
Created by NeRooN on 7/12/2024 in #help
My NuGet packages are not created
the best way to get a nuget package is to do dotnet pack from the command line. if you do this, then the package should be generated in the expected location.
134 replies
CC#
Created by NeRooN on 7/12/2024 in #help
My NuGet packages are not created
look. tebe has told you several times. the proper value to go into TargetFramework and TargetFrameworks is net6.0.
134 replies