SMSatisfactory Modding
Created by leothelion9 on 5/6/2025 in #help-using-mods
My Train System
No description
9 replies
CC#
Created by AK on 5/6/2025 in #help
✅ How do i get .NET 4.x on VS 2022?
No description
10 replies
UBUniversal Blue
Created by Thelnar on 5/6/2025 in #🛟bazzite-help
Issue with a new Drive
Hello I got a new WD 10TB drive (WD103KFBX-68CCLN0) to swap out a failing 3TB one. The problem I am having is that KDE Partition Manager is crash/dying when it is checking available disks after authenticate. I had used a disk dock from work first to try and move stuff over before mounting it in the computer but it was doing the same then (I thought that maybe the dock itself would be the issue) but it is behaving the same now connected as intended. Not really sure what to do or test (fairly new to linux and what tools to even use in these kinds of scenarios)
4 replies
CC#
Created by nevemlaci on 5/6/2025 in #help
ObservableProperty isn't updating on the UI
https://github.com/nevemlaci/Modpack-Autoconfig---CS-Edition I have explicitly subscribed to PropertyChanged ( here ) , and this is actually hit when I place a breakpoint there, but my custom converter is not hit whenever the property changed, so I assume there is some mistake I made that means the UI isn't being notified about the property change.
1 replies
BBuildShip
Created by Oct on 5/6/2025 in #❓・buildship-help
Business Partner Opportunity for Profitable Venture
Hello! I'm looking for a reliable business partner to collaborate on a profitable venture. With my expertise in software engineering, I believe we can combine our strengths to achieve substantial success. Ideal Partner Qualities: - 20+ years old - Based in the US, UK, Canada, or Australia - Basic understanding of computer science (preferred but not required) - Strong communication skills in English - Compensation: $4,000 - $5,000 per month If you're interested or know someone who would be, please reach out! I'll be happy to provide more details. Looking forward to connecting!
4 replies
CC#
Created by C@NYON⭐ONL!NE on 5/6/2025 in #help
How to properly use IMemoryCache?
Hi, all: I'm working on improving latency for a Razor Page page load, which I can immediately do by caching query results. I've read this: https://www.learnrazorpages.com/razor-pages/caching, but I don't entirely understand how to: - Manage the lifetime of the cache disposable - Asynchronously get or create an entry As an example, I have the following:
public List<IndicatorDisplayExternal> IndicatorDisplays { get; set; } = [];
private const string _indicatorDisplayKey = "IndicatorDisplays";
...
IndicatorDisplays = await _memoryCache.GetOrCreateAsync(
_indicatorDisplayKey,
async entry => await _indicatorService.GetProblematicIndicatorDisplaysAsync()
);
public List<IndicatorDisplayExternal> IndicatorDisplays { get; set; } = [];
private const string _indicatorDisplayKey = "IndicatorDisplays";
...
IndicatorDisplays = await _memoryCache.GetOrCreateAsync(
_indicatorDisplayKey,
async entry => await _indicatorService.GetProblematicIndicatorDisplaysAsync()
);
My main questions with this: - I didn't use a using statement like the page instructs with managing cache entries, is this okay? - The compiler is warning me of a possible null reference assignment, but how can GetOrCreateAsync return null if my GetProblematicIndicatorDisplaysAsync will never return null? Once I get this sorted I'd like to set the cache entry to expire after some time. Would that just look like: var options = new MemoryCacheEntryOptions().SetAbsoluteExpiration(DateTime.Now.AddMinutes(10)); Passing that as the last parameter of the GetorCreateAsync call (also, should options become a field of my class?). Any advice or warnings about using the IMemoryCache would be appreciated, thanks!
1 replies
RRCRat Rig Community [Unofficial]
Created by Moestavern on 5/6/2025 in #fix-my-mesh
VC4 500 IDEX
No description
2 replies
CC#
Created by xsainteer on 5/6/2025 in #help
IdentityUser, how to configure OnModelCreating with domain entities
Im trying to follow Clean Architecture I use a custom class, ApplicationUser (inherits IdentityUser), and its implemented in Infrastructure because it relates to DataBase, external source I have other entities, for example, class Vote, that should have one-to-one relationship to ApplicationUser. But i can not use ApplicationUser class in Domain (where Vote and other entities are stored), leading to that i can not make one-to-one relationship between ApplicationUser and Vote (though i really need to). Im asking for a solution that wouldnt violate Clean Architecture and other practices
1 replies
BABetter Auth
Created by je823 on 5/6/2025 in #help
membershipLimit for Organizations
Hi, I can see that it's possible to set a limit for team members but is this possible for Organizations?
5 replies
CC#
Created by TheCyberSniper on 5/6/2025 in #help
Trouble understanding how web.config's location path value works
Hello! I am having some trouble understanding or finding documentation on how the location path value works in web.config. My goal: to lock down a single API endpoint/URL or the respective controller's function to a location path. The API call itself looks like this: mywebsite.com/rpc/associated-members/add-member-to-account/1000011000/[email protected] The issue, is that if an email contains + syntax, then this endpoint 404's (doesn't hit my .net controller router). The fix seems to be to turn on a web.config value called <requestFiltering allowDoubleEscaping="true" />. However, since I am unsure on the risks associated with this, I want to lock down this rule which I think can be done by putting this within a <location path=""> rule. The .net side of this API call looks like this
c#
namespace WebsiteBase.Mvc.Controllers.RPC
{
[RoutePrefix("rpc/associated-members")]
public class AssociatedMembersController : BaseRpcController
{
[HttpGet]
[Route("add-member/{cardnumber}/{email}")]
[StandaloneResponseFilter]
public JsonResult AddMemberToAccount(string cardnumber, string email)
{
//
}
}
}
c#
namespace WebsiteBase.Mvc.Controllers.RPC
{
[RoutePrefix("rpc/associated-members")]
public class AssociatedMembersController : BaseRpcController
{
[HttpGet]
[Route("add-member/{cardnumber}/{email}")]
[StandaloneResponseFilter]
public JsonResult AddMemberToAccount(string cardnumber, string email)
{
//
}
}
}
Now, if I put the allowDoubleEscaping="true" in a non-location path rule the above works and emails with a + work, such as: mywebsite.com/rpc/associated-members/add-member-to-account/1000011000/[email protected] So, I have tried utilizing the location path="" option to lock it down but so far I am not having any luck... as in it 404s or it doesn't compile. The following throw a compile error off the bat - so I presume I cannot use a generic URL for this rule.
c#
<location path="rpc/associated-members/add-member/">
<system.webServer>
<security>
<requestFiltering allowDoubleEscaping="true" />
</security>
</system.webServer>
</location>
<location path="/rpc/associated-members/add-member/">
<system.webServer>
<security>
<requestFiltering allowDoubleEscaping="true" />
</security>
</system.webServer>
</location>
c#
<location path="rpc/associated-members/add-member/">
<system.webServer>
<security>
<requestFiltering allowDoubleEscaping="true" />
</security>
</system.webServer>
</location>
<location path="/rpc/associated-members/add-member/">
<system.webServer>
<security>
<requestFiltering allowDoubleEscaping="true" />
</security>
</system.webServer>
</location>
I also had read you can specify by Controller, so I also tried these. The web application runs but the + email syntax will 404 when I try to hit the endpoint.
c#
<location path="AssociatedMembersController">
<system.webServer>
<security>
<requestFiltering allowDoubleEscaping="true" />
</security>
</system.webServer>
</location>
<location path="AssociatedMembersController/AddMemberToAccount">
<system.webServer>
<security>
<requestFiltering allowDoubleEscaping="true" />
</security>
</system.webServer>
</location>
c#
<location path="AssociatedMembersController">
<system.webServer>
<security>
<requestFiltering allowDoubleEscaping="true" />
</security>
</system.webServer>
</location>
<location path="AssociatedMembersController/AddMemberToAccount">
<system.webServer>
<security>
<requestFiltering allowDoubleEscaping="true" />
</security>
</system.webServer>
</location>
I am just having trouble finding more documentation around the location path's allowed URL and if I can lock down the scope of this allowDoubleEscaping a bit to only the pertaining route/controller. If I cannot lock it down in this manner, that is okay, just let me know - thank you!
3 replies
CC#
Created by Vasil Yanakiev on 5/6/2025 in #help
Has anyone ever successfully attached the Samsung debugger to a Release-built process?
I'm trying to attach the Samsung debugger (netcoredbg) to a Release-built process (with just-my-code 0, as noted in their documentation), but I get the following warning: You are debugging a Release build of OpenDebugAPI.dll. Without Just My Code Release builds try not to use compiler optimizations, but in some cases (e.g. attach) this still results in a degraded debugging experience (e.g. breakpoints will not be hit). and breakpoints are indeed not hit. Has anyone gotten the breakpoints to work?
1 replies
NNovu
Created by bledar on 5/6/2025 in #💬│support
Transfer ownership or change billing email address
Hello, Is it possible to transfer the ownership of the organization to another user? If yes how can I do it? If this is not possible I should be able to change the billing address so someone else can pay for the subscription.
2 replies
UBUniversal Blue
Created by WhiteBahamut on 5/6/2025 in #🛟bazzite-help
Rog ally undervolting with lact not possible
Hi, i was trying to undervolt gpu of my rog ally. Bad good experiences on my deck (BIOS) und desktop (corectrl). However on my ally the option in lact to undervolt is not available. Checked amdgpu.ppfeaturemask and even set it to 0xfffffff (via rpm-ostree kargs and validted). Do I miss anything essential?
5 replies
CC#
Created by mustaf on 5/6/2025 in #help
there is no option to generat assets for build and debug
No description
24 replies
PMPUBG MOBILE
Created by 🌸.🌸.🌸 on 5/6/2025 in #questions
Metro Royale doesn't show up as option to play?
Hello, recently I started playing Metro Royale and it's been amazing with all the maps and loot! I wanted to play today, as I always do I go to Unranked then to MR tab. But it's not showing up for the past few hours at all? I tried to log out then log back in, reset my phone...Still not working. I don't know if it's a bug or it has something to do with my device, since I never had any problems or bugs like this. If someone could help me out I'd be really thankful!!!
3 replies