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.

Search

Advanced Search Options

To further refine your search, you can use additional qualifiers such as score:>0.5. For example, the search score:>=0.5 created:<1y grammar would return only posts mentioning "grammar" that have a score >= 0.5 and were created less than a year ago.

Further help with searching is available in the help center.

Quick hints: tag:tagname, user:xxx, "exact phrase", post_type:xxx, created:<N{d,w,mo,y}, score:>=0.5

Filters
 
80%
+6 −0
Code Reviews C# MVVM Login Project

I was wondering if somebody can review my code? I am creating a simple login desktop application, just to get used to the MVVM pattern using WPF. View <Window x:Class="Login_App.MainWindow" ...

2 answers  ·  posted 4y ago by gzi98‭  ·  last activity 4y ago by Peter Taylor‭

Question c# mvvm wpf
80%
+6 −0
Meta how to mention user in comment?

I tried to reply comment but no autocomplete, so if I want to reply, how to notice a user?

1 answer  ·  posted 4y ago by Yaskur‭  ·  last activity 4y ago by Mithical‭

Question support help comments
80%
+6 −0
Q&A What are the pros and cons of using objects vs associative arrays for JSON results of a CURL request in PHP?

It's just depend on PHP version. Above PHP 7 PHP object is faster and slightly heavier than array. On PHP 5 and below array is faster and lighter. My test code: <?php $jsonobj = '{"Peter":3...

posted 4y ago by Yaskur‭  ·  edited 4y ago by Yaskur‭

Answer
80%
+6 −0
Q&A How to choose backend technology for my project?

There are a few main and a few minor factors involved in most "which tool should I use" decisions. Evaluation Criteria "What do I already know how to competently use?" OR "What do I want to lea...

posted 4y ago by zxq9‭

Answer
80%
+6 −0
Q&A Confusion about using std::async with class member function

On the cppreference page for std::async, there's an example where the object for a PMF invocation is passed by value. So clearly, that is okay; in fact there is nothing on the cppreference page say...

posted 4y ago by C. K. Young‭

Answer
80%
+6 −0
Q&A How to do "out-of-source" build properly with cmake?

There are two broad types of build environments - in-source and out-of-source. "In-source" means the compiled files will appear in the same directory as source files. "Out-of-source" means there is...

2 answers  ·  posted 4y ago by anatolyg‭  ·  last activity 4y ago by alex‭

Question cmake
80%
+6 −0
Q&A Function call; `this` gets bound to unexpected value

This MDN link might help to explain that: When a function is called as a method of an object, its this is set to the object the method is called on. Which is your first example (calling obj.a())....

posted 4y ago by hkotsubo‭  ·  edited 4y ago by Alexei‭

Answer
80%
+6 −0
Q&A Is it recommended for ASP.NET Web API actions to always include a CancellationToken?

Note: This is basically a question from Stack Overflow that was closed for a very long period of time and I fear it might get closed again as primarily opinion based. I am wondering if my ASP.NET C...

1 answer  ·  posted 4y ago by Alexei‭  ·  last activity 4y ago by Peter Taylor‭

Question c# asp.net-core software-practices asp.net-core-webapi cancellation-token
80%
+6 −0
Q&A Styling with classes vs styling with CSS

This styling method is called "atomic classes". The goal of those is to prevent writing repetitive and badly maintainable CSS. For example, we might want to have primary colored variants of buttons...

posted 4y ago by luap42‭

Answer
80%
+6 −0
Meta How can I fill in tag information?

I have noticed that most tags lack any usage information and moreover a more detailed wiki: I would like to add the information for some of these tags, but I do not see how. I assume there is so...

3 answers  ·  posted 4y ago by Alexei‭  ·  edited 3y ago by Alexei‭

Question support tags
80%
+6 −0
Q&A How can I define a method on [&mut T] where T: MyTrait?

This error doesn't do a good job at all of highlighting the important thing! You can't define an inherent impl on a type parameter. You have to make it the impl of some trait. Here's an example: Tr...

posted 4y ago by r~~‭  ·  edited 4y ago by r~~‭

Answer
80%
+6 −0
Q&A What is the difference between a hook and a code injection?

A "hook" is a method provided by the developer of a piece of software so that other developers can easily write software which modifies the behavior of that software to fit their particular requir...

posted 4y ago by BobJarvis‭  ·  edited 3y ago by BobJarvis‭

Answer
80%
+6 −0
Meta Should we have a Code Review Section / category?

I would definitely allow code review questions (requests) as they are an important part of any professional software developer. A special category might make sense, although a designated special ta...

posted 4y ago by Alexei‭  ·  edited 4y ago by manassehkatz‭

Answer
80%
+6 −0
Q&A What's the difference between null pointers and NULL?

There are three different, related concepts that are easy to mix up: null pointers null pointer constants the NULL macro Formal definitions The first two of these terms are formally defined in C1...

posted 4y ago by Lundin‭  ·  edited 4y ago by Lundin‭

Answer
80%
+6 −0
Q&A Are generic enums completely abstract?

When using Result or Option to get a value, the value is wrapped in a Ok or Some. For example, with pattern matching to get a Result: let var: Json = match serde_json::from_str(&my_string) { ...

1 answer  ·  posted 4y ago by jla‭  ·  last activity 4y ago by Derek Elkins‭

Question rust enum
80%
+6 −0
Q&A Are generic enums completely abstract?

Your question is a bit ambiguous. Usually when one talks about something being "completely abstract", one means the details of the representation are opaque. This is the sense of "abstract" in "abs...

posted 4y ago by Derek Elkins‭

Answer
80%
+6 −0
Meta Should we have a Code Review Section / category?

Proposal, based on the feedback here so far: because code-review questions have special rules, create a category. This allows (and we would need proposed text from the community for): Category d...

posted 4y ago by Monica Cellio‭

Answer
80%
+6 −0
Q&A Regex to get text outside brackets

Perhaps regex is not the best solution. Although it's possible, the expression will be so complicated that it won't be worth the trouble, IMO. But if you insist on using regex... I'm afraid w...

posted 10mo ago by hkotsubo‭  ·  edited 4mo ago by hkotsubo‭

Answer
80%
+6 −0
Q&A How is this code "dividing" by a string?

As already said by another answer, you're not "dividing a string by another string". I'd just like to complement by providing more details about how this works. If you try to divide a string by ...

posted 10mo ago by hkotsubo‭  ·  edited 10mo ago by hkotsubo‭

Answer
80%
+6 −0
Q&A How is this code "dividing" by a string?

You very likely have a pathlib Path (or PurePath) object there. pathlib overrides the division operator to perform platform-aware path appends. >>> import pathlib >>> pathlib.Pa...

posted 10mo ago by r~~‭  ·  edited 10mo ago by r~~‭

Answer
80%
+6 −0
Q&A Are email addresses case-sensitive?

Does the case of an email address make a difference? I.e. would sending emails to these addresses all lead to the same inbox? account@example.org, ACCOUNT@EXAMPLE.ORG, ACCOUNT@example.org, Account...

1 answer  ·  posted 2mo ago by Iizuki‭  ·  last activity 2mo ago by Olin Lathrop‭

Question email
80%
+6 −0
Meta Call for moderators (2025)

The Software Development community on Codidact recently reached an important milestone. Thank you to everyone who invests in building this community. We'd like to ask for a little more help. Ale...

1 answer  ·  posted 2mo ago by Monica Cellio‭  ·  edited 2mo ago by Monica Cellio‭

Question discussion moderators
80%
+6 −0
Q&A Why is a for loop getting stuck when using a uint64_t counter, whereas a while loop isn't?

This is a bit of a well-known problem when converting from an up-counting to a down-counting loop and using an unsigned loop iterator. Since unsigned numbers are always positive and have well-defi...

posted 1mo ago by Lundin‭  ·  edited 1mo ago by Lundin‭

Answer
80%
+6 −0
Q&A In javascript is there really a good reason to never check for boolean true || false such as if(var){}else{}?

if(typeof(var) !== 'undefined' || typeof(var) !== null || var !== ''){}else{} is a wild thing to write for anything other than a variable that takes either undefined, null, or a string as possib...

posted 11mo ago by r~~‭

Answer
80%
+6 −0
Meta Don't close questions for lack of detail/confusion

As a newcomer here, I'd like to suggest two additional issues that weigh in favor of closing unworkable questions. First, a site that wants to grow its community needs to moderate its content. If...

posted 10mo ago by John C‭

Answer