Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Posts by Kevin Krumwiede‭

9 posts
75%
+4 −0
Q&A Are "strong passwords" at all meaningful?

NIST Special Publication 800-63 says that "strong" password requirements are not only useless but counterproductive. They recommend only a minimum length requirement and a small blacklist of common...

posted 4mo ago by Kevin Krumwiede‭

Answer
71%
+3 −0
Q&A Is it possible to obtain the unlock code from an unlocked Android device via the Android API or the developer command line tools?

I have an Android 10 device where the OS is unlocked but the bootloader is not. I can't obtain the unlock code through the normal channels because of bureaucratic incompetence. Given that the devi...

0 answers  ·  posted 4mo ago by Kevin Krumwiede‭  ·  edited 4mo ago by Alexei‭

Question android android-10
66%
+2 −0
Q&A CS8032 analyzer warnings in empty EF Core project in Rider

I'm evaluating JetBrains Rider 2023.3 on Linux and almost immediately ran into a compiler warning that I don't understand. Attempting to isolate it, I created a new solution containing a .NET 6 cla...

1 answer  ·  posted 5mo ago by Kevin Krumwiede‭  ·  last activity 5mo ago by Kevin Krumwiede‭

66%
+2 −0
Q&A CS8032 analyzer warnings in empty EF Core project in Rider

I resolved this by installing Microsoft's dotnet-sdk-8.0 instead of Ubuntu's dotnet-sdk-6.0. Here's a loose summary of Microsoft's instructions. Remove existing dotnet packages: sudo apt remo...

posted 5mo ago by Kevin Krumwiede‭  ·  edited 5mo ago by Kevin Krumwiede‭

Answer
60%
+1 −0
Q&A Can Swashbuckle.AspNetCore generate exclusiveMinimum validation?

Is there a way to make Swashbuckle.AspNetCore generate a Swagger exclusiveMinimum range validation for a model property? There doesn't seem to be any way to do this with the attributes recognized ...

1 answer  ·  posted 3mo ago by Kevin Krumwiede‭  ·  last activity 3mo ago by Kevin Krumwiede‭

55%
+3 −2
Meta How can we grow this community?

Emphasize and expand content that competitors fail at or deliberately exclude. This section of What type of questions can I ask here? is already a big deal, but it could be bigger: Best practic...

posted 7mo ago by Kevin Krumwiede‭  ·  edited 3mo ago by Kevin Krumwiede‭

Answer
50%
+0 −0
Q&A Does Socket.AcceptAsync throw SocketException for any transient reason?

I'm writing exception handling around a call to Socket.AcceptAsync in a loop. One of the exceptions it's documented to throw is SocketException, but the documentation is vague: An error occurred...

1 answer  ·  posted 4mo ago by Kevin Krumwiede‭  ·  last activity 4mo ago by Alexei‭

Question c# sockets
50%
+0 −0
Q&A Can Swashbuckle.AspNetCore generate exclusiveMinimum validation?

This can be achieved with a schema filter. For this proof of concept, I based the filter on a custom attribute: [AttributeUsage(AttributeTargets.Property)] public class GreaterThanAttribute(doubl...

posted 3mo ago by Kevin Krumwiede‭

Answer
42%
+1 −2
Q&A Best practices for company internal Swagger Docs in production

Disabling Swagger docs is a terrible idea even for a public API. Swagger saves the consumer an enormous amount of development and testing. We're talking weeks or months of work done in seconds, wit...

posted 4mo ago by Kevin Krumwiede‭  ·  edited 4mo ago by Kevin Krumwiede‭

Answer