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
 
60%
+1 −0
Q&A What is lifting state up in Flutter?

What does lifting state up in Flutter mean, and how does it work?

1 answer  ·  posted 2y ago by tarhalda‭  ·  last activity 2y ago by tarhalda‭

Question flutter state-management
60%
+1 −0
Meta How are software recommendations handled?

See Software recommendations category. Referring to my own answer there, I think these questions should only be on-topic in case the OP manages to narrow down the scope sufficiently. In case the qu...

posted 2y ago by Lundin‭

Answer
60%
+1 −0
Q&A For scripting what are the pros and cons of command line arguments versus capturing input at the start?

I largely agree with existing answers, but wanted to add this: In many cases, there is no clear answer one way or the other. Take the program wc which counts characters and lines. Should the inter...

posted 2y ago by matthewsnyder‭

Answer
60%
+1 −0
Meta Best practices for posting tabular data

Some good options to consider: SQL create table as statements. This way you can define multiple tables all in one file, that can be copy/pasted easily. It also matches a very common thing: SQL e...

posted 2y ago by matthewsnyder‭  ·  edited 2y ago by matthewsnyder‭

Answer
60%
+1 −0
Q&A What is lifting state up in Flutter?

This article has a good explanation of lifting state up in Flutter. Let's say for example that we have a BlueSquare widget that displays the number of times it has been tapped. Each click on the...

posted 2y ago by tarhalda‭  ·  edited 2y ago by tarhalda‭

Answer
60%
+1 −0
Q&A How can I return XML from BeforeSendRequest and AfterReceiveReply to the calling method in a thread-safe way?

I was able to find a solution that uses ConcurrentDictionary<TKey, TValue>, but it's a bit ugly. First, I amended the auto-generated classes in Reference.cs with a new property Guid Internal...

posted 2y ago by Celarix‭

Answer
60%
+1 −0
Meta Merge spreadsheet formula tags into single tag

Codidact's Software Development has multiple tags for spreadsheet formulas: excel-formula libreoffice-calc-formula openoffice-calc-formula sheets-formula It has formula with the tag usage ...

1 answer  ·  posted 2y ago by Wicket‭  ·  edited 2y ago by Wicket‭

Question discussion status-completed tags
60%
+1 −0
Q&A What is the purpose of grouping the tests in a `tests` module and is it possible to split them?

When you think about how to organize your test code, you should develop an understanding of your goals. Typical goals about test code organization (which typically includes helper code only needed...

posted 2y ago by Dirk Herrmann‭  ·  edited 2y ago by Dirk Herrmann‭

Answer
60%
+1 −0
Q&A grep AND search for multiple words in files

You can utilize grep's PERL regexes, more specifically lookarounds, to check presence of two (or more) words. $ grep -Prn . -e '^(?=.*\bfoo\b)(?=.*\bbar\b)' Here regex checks, that beginning of...

posted 2y ago by markalex‭

Answer
60%
+1 −0
Q&A Why are commas not needed for modulo string formatting when printing?

% is one of the oldest Python syntaxes for interpolating strings. It basically works like: template_string % data_tuple In fact, you can literally do that: >>> s = "%d %d" >>&g...

posted 2y ago by matthewsnyder‭

Answer
60%
+1 −0
Meta Should asking about book recommendations directly connected to software development be on-topic?

Here is a slightly different suggestion, that may avoid the problems with open ended book recommendations. Book lists? No I'm not entirely against opinion based questions, but I am against opinio...

posted 2y ago by trichoplax‭

Answer
60%
+1 −0
Q&A Datagrid in MVVM saves edits but not inserts

I am writing a todolist application in WPF with MVVM. I display the goals in a datagrid and the editing works fine. Changes made in the grid are saved to the DB when I click save. However, adding a...

1 answer  ·  posted 2y ago by FrankLuke‭  ·  last activity 2y ago by Alexei‭

Question c# mvvm wpf
60%
+1 −0
Q&A Datagrid in MVVM saves edits but not inserts

Entity Framework is able to save the changes by using a tracking mechanism (i.e. what is added, deleted, removed). I guess _repository.GetAllGoals() implementation is something like _context.Goals...

posted 2y ago by Alexei‭  ·  edited 2y ago by Alexei‭

Answer
60%
+1 −0
Q&A Any testimonials for any C++ units of measure library?

Looking for testimonials, so I'm going to self-promote. I had similar problems at work, and didn't like their homegrown solution. Well I mostly liked it, but I had some issues with it. Mostly, I ...

posted 2y ago by Ben‭

Answer
60%
+1 −0
Q&A Why OFFSET isn't working the way it is expected?

The script is read like this : SELECT * FROM `users` WHERE `gender`='Female' ORDER BY `birth_year` DESC LIMIT "take n rows" OFFSET "skip n rows" So when I wrote SELECT * FROM `users` WHERE `ge...

posted 2y ago by billy‭

Answer
60%
+1 −0
Q&A How to refer to the same class twice from one Entity Framework entity?

I tried to replicate your case and the only workable solution I could find is to use OnModelCreating configuration (fluent style) instead of attributes: public class Contestant { public int Id...

posted 2y ago by Alexei‭  ·  edited 2y ago by Alexei‭

Answer
60%
+1 −0
Q&A How to refer to the same class twice from one Entity Framework entity?

I have two classes, Contestant and Picture, with the following setup: public class Contestant { ... public int AvatarID { get; set; } [ForeignKey(nameof(AvatarID))] public ...

1 answer  ·  posted 2y ago by FrankLuke‭  ·  edited 2y ago by Alexei‭

Question c# entity-framework-core navigation-properties
60%
+1 −0
Q&A Why is IntelliJ not finding these modules?

After removing eu.hansolo.tilesfx from the auto-generated module-info everything worked fine. It seems that tilesfx was dependent on the libraries that were "missing". I am not really sure why it w...

posted 2y ago by cuzzo‭  ·  edited 2y ago by cuzzo‭

Answer
60%
+1 −0
Q&A highlight.js 3rd party plugin error: Cannot read properties of undefined

Answer from allejo (highlightjs contributor): In your language file, remove your empty Requires: line in the comment. After removing that, it should let you compile again. The comment is significa...

posted 2y ago by Razetime‭

Answer
60%
+1 −0
Meta Should asking about book recommendations directly connected to software development be on-topic?

To be a "better" site with helping people learn and grow and figure things out for themselves (instead of only giving them the answers, ready to copy-paste), it is my wish the site offers more he...

posted 2y ago by Fred Wamsley‭

Answer
60%
+1 −0
Q&A EF-core Find method doesn't include other entities

(Full code available for cloning here) I've run into some odd behavior of EF-core's Find method. It seems like the returned entity doesn't include the rest of the data. MWE Models using Micro...

1 answer  ·  posted 2y ago by Moshi‭  ·  last activity 2y ago by Sylvester‭

Question entity-framework-core eager-loading
60%
+1 −0
Q&A How to import a vocabulary's test file in factor.

For example: I have noticed that this does not work for any vocabulary's tests. What is the alternate way to USE: these test vocabularies? EDIT: The test word appears to run all tests alongside...

0 answers  ·  posted 2y ago by Razetime‭  ·  edited 2y ago by Razetime‭

Question testing factor
60%
+1 −0
Q&A Relayout call does not work on button click in Factor

I am currently using this code to display a GUI counter: USING: accessors arrays fonts kernel math math.parser ui ui.gadgets ui.gadgets.buttons ui.gadgets.editors ui.gadgets.labels ui.gadgets.pa...

0 answers  ·  posted 2y ago by Razetime‭  ·  edited 2y ago by Razetime‭

Question factor gui
60%
+1 −0
Q&A How to find the existing default action for a UI gadget in factor

From mrjbq7: The correct vocabularies for finding default actions are in Operations Web Browser for URL" markdown elements. Generally, looking for define-operation should work for finding t...

posted 2y ago by Razetime‭

Answer
60%
+1 −0
Q&A How to find the existing default action for a UI gadget in factor

For a UI gadget like a $link in Factor, a click automatically opens the page that it points to. I want to know where this default behaviour is defined. In the factor documentation, there are many ...

1 answer  ·  posted 2y ago by Razetime‭  ·  last activity 2y ago by Razetime‭

Question factor gui