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
2.7k posts
 
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
60%
+1 −0
Q&A Where is the "Just My Code" debug option in Visual Studio Mac?

Title says it all. I found "Step into external code" but not sure if it's the same feature.

0 answers  ·  posted 2y ago by user34567‭

Question visual-studio macos
60%
+1 −0
Meta Should I delete my trivial, lack-of-research question?

I agree with the previous answers, don't delete a question that you find it looking trivial after you find the answer, instead answer it, and if it's possible, improve the question, i.e., by provid...

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

Answer
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 1y ago by tarhalda‭  ·  last activity 1y ago by tarhalda‭

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 1y 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 1y 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 1y ago by matthewsnyder‭  ·  edited 1y 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 1y ago by tarhalda‭  ·  edited 1y 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 1y 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 1y ago by Wicket‭  ·  edited 1y ago by Wicket‭

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 1y ago by Dirk Herrmann‭  ·  edited 1y 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 1y 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 1y ago by matthewsnyder‭

Answer
60%
+1 −0
Q&A Should a salt be stored in the same database as the hash?

With bcrypt, the salt is stored in the same string as the hash. This is done so that you have everything you need to get that hash identifier if you know the password.[1] Wikipedia breaks down the ...

posted 1y ago by Michael‭

Answer
60%
+1 −0
Q&A Do the elements of 'required' array need to be defined in 'properties' dictionary in JSON schema?

According to my reading of the JSON Schema Spec, the answer is no. required array can contain elements which are not in the properties dictionary. The example schema in question seems to be valid....

posted 1y ago by Iizuki‭  ·  edited 1y ago by Iizuki‭

Answer
60%
+1 −0
Q&A What is the purpose of having a wrapper class for JarFile in Spring-boot-loader?

Why does the wrapper exists and why doesn't it override close()? Apparently, this wrapper was introduced to "Attempt to fix memory leak in JarFile class". The memory leak issue was caused by a cha...

posted 1y ago by Miss Skooter‭

Answer
60%
+1 −0
Q&A MongoDB Java Morphia case insensitive criteria query?

So I googled some on how to make a case insensitive criteria query but could not find the solution very easily. So I basically have code that looks like this: ... query.criteria("fieldName").con...

1 answer  ·  posted 1y ago by propatience‭  ·  edited 1y ago by propatience‭

60%
+4 −2
Q&A What happens when you “Sign in with Google”?

I believe when you sign in with Google, the web application running in your browser calls a command to request the Google Sign In page, and includes a “callback URL” as a parameter in that HTTP req...

0 answers  ·  posted 1y ago by Julius H.‭  ·  edited 1y ago by Julius H.‭

60%
+1 −0
Q&A MongoDB Java Morphia case insensitive criteria query?

I realized myself what I should do: ... query.criteria("fieldName").containsIgnoreCase("regex"), ... Also mentioned here: https://github.com/MorphiaOrg/morphia/issues/832

posted 1y ago by propatience‭

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 1y ago by Kevin Krumwiede‭  ·  last activity 1y ago by Kevin Krumwiede‭

60%
+1 −0
Q&A How to hide files from the VS Code sidebar without pattern matching?

I want to clear my view of my file explorer sidebar in VS Code, and just see a few files I want to focus on. Is there an easy way to do this, using the mouse, and not file hiding using pattern mat...

2 answers  ·  posted 1y ago by Julius H.‭  ·  last activity 10mo ago by Monica Cellio‭

Question vs-code
60%
+1 −0
Q&A Method not found when emitting a custom signal, but the game seems to work when played.

My solution was to carefully disconnect every signal from every node involved, then re-implement and reconnect each signal. Now it works with no error.

posted 1y ago by TecBrat‭

Answer
60%
+1 −0
Q&A Drop-down values in Excel cells are not specified in Data Validation rules and global search didn't find them in workbook, so where do they come from?

On top of values seemingly coming from nowhere in multiple columns, they also affect each other's behavior: In the GIF below, if the cells in the left column have no value selected, then there is n...

1 answer  ·  posted 1y ago by toraritte‭  ·  edited 1y ago by toraritte‭