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
 
62%
+3 −1
Meta Specify framework / library version in the answer

We already have such a text field. In fact, we have several: The big one we type our answer into, and the small one we type our comments into. And this approach even allows to specifically express ...

posted 3y ago by meriton‭

Answer
61%
+6 −3
Q&A Which functions in the C standard library must always be avoided?

Standard library functions that should never be used: setjmp.h setjmp() Together with longjmp(), these functions are widely recogniced as incredibly dangerous to use: they lead to spaghetti ...

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

Answer
61%
+6 −3
Q&A Why are commas not needed for modulo string formatting when printing?

Suppose I have two variables that are called animal and age, and print them as a string in the console like so: animal = "giraffe" age = 25 print("A %s can live up to %d years" %(animal,age)) ...

3 answers  ·  posted 2y ago by Bennshinpoes‭  ·  edited 1y ago by Karl Knechtel‭

Question python format-string
60%
+1 −0
Q&A Ignore NPM Modules Digital Ocean App Platform

There may be a better way to manage website's with JavaScript deployments. I added jest to my repo simply to execute tests when I make PRs as part of a GitHub action. This requires a package-lock.j...

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

Question deployment npm
60%
+1 −0
Q&A Updating the database reverses previous changes

I did not find the exact cause of your issue, but inserts should not be treated as updates. One way to do this is the following: static void InsertPost(Post post) { using var context = new B...

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

Answer
60%
+1 −0
Q&A How to use ReactNative SDK with flexible sync using a code first approach

I am working on a React Native app using Realm, Atlas Flexible Sync, and MongoDB, and I'm super confused about how subscriptions work. I'm coming from a .NET SQL background, so I'm completely new t...

0 answers  ·  posted 2y ago by Scriptastrophe‭  ·  last activity 2y ago by Mithical‭

Question javascript react-native atlas-flexible-sync
60%
+1 −0
Q&A Updating the database reverses previous changes

Disclaimer: I don't work with EF therefore not an expert. EF is tricky and has a lot of dark magic inside so if you're not sure how it all works best to use good old plain SQL or simple libraries....

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

Answer
60%
+1 −0
Q&A VBScript Listener in SSRS

Is it possible to add listeners via VBScript/ JS directly into a SRSS report? Goal: Track changes of input fields and key press inside the wrapper React based on the events Directly in the...

0 answers  ·  posted 3y ago by Yolanda‭  ·  edited 3y ago by Alexei‭

Question sql-reporting-service report-server
60%
+1 −0
Meta Reaction comment doesn't appear if previous comment for retracted reaction was deleted

I wrote this in a comment on the GitHub issue and would be interested in input: I can think of two fixes, both in the reaction-handling code: Check for an existing thread (as it does now) and...

posted 3y ago by Monica Cellio‭

Answer
60%
+1 −0
Q&A How to generate lots of hyperlinks rather fast using ClosedXML library?

I am using ClosedXML library to generate an Excel containing thousands of hyperlinks using cell's Hyperlink property: cell.SetValue(text).Hyperlink = new XLHyperlink(url); Such a call takes abo...

1 answer  ·  posted 3y ago by Alexei‭  ·  last activity 3y ago by Alexei‭

Question performance closedxml hyperlink
60%
+1 −0
Q&A How to generate lots of hyperlinks rather fast using ClosedXML library?

One faster alternative is to use a formula to create the hyperlink. An example is provided below: public static IXLCell SetHyperLink(this IXLCell cell, string url, string text = "link") { if (s...

posted 3y ago by Alexei‭

Answer
60%
+1 −0
Q&A org.apache.http.NoHttpResponseException: nginx.apps.cloud.cloud.local:443 failed to respond

Getting the following error only when I call a post API through Nginx [0m[31m12:48:35,903 ERROR [io.acurio.hub.api.rest.impl.DesignsResource] (default task-16) Failed to invoke workflow: com.masha...

0 answers  ·  posted 2y ago by SmartestVEGA‭

Question angular api-design nginx proxy cors
60%
+1 −0
Q&A Jenkins failed to delete a file - why? How to prevent?

I don't know how to prove or discover this, but anyway. This error happens when Jenkins job is interrupted while the P4 plugin is doing what it calls "reconcile". A "reconcile" is a special form o...

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

Answer
60%
+4 −2
Meta How can we grow this community?

A note on first impressions: I really like that popup windows like when you click "react" are closed by clicking "react" again, not just anywhere else on the screen. This makes the site feel sol...

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

Answer
60%
+1 −0
Q&A How to add vertical lines for visual separation in pandas plot

I don't think this is possible using just the Pandas plotting API. You can use the lower-level Matplotlib API to do just about anything you can imagine: ax = df.plot.bar() vlines = [2.5, 5.5] # x...

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

Answer
60%
+1 −0
Q&A Input date in Angular Material date picker in dd/MM/yyyyy format

You should just be able to alter the MAT_DATE_LOCALE provider by adding something like { provide: MAT_DATE_LOCALE, useValue: 'en-AU' } to your module's providers array. Angular Material's docs are...

posted 2y ago by tmpod‭

Answer
60%
+1 −0
Q&A How to manage user-specific application data on Linux?

Just as an additional information: If you are writing Python code, there's the useful package appdirs that provides a platform-agnostic interface to user-specific application data directories. For ...

posted 2y ago by celtschk‭

Answer
60%
+1 −0
Meta Dealing with table tag

This question which is tagged with table tag. I am trying to find a better replacement for it since there are multiple types of tables such as HTML tables or data tables. The question seems to re...

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

Question discussion status-completed tags
60%
+1 −0
Q&A How to get a default value from an assoc in Factor programming language

To get a value from an assoc and provide a default value if the value does not exist, I am using the following definition: :: at-def ( key assoc default -- value ) key assoc ?at [ drop default ] w...

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

Question hashmap factor
60%
+1 −0
Q&A How to call static methods in ColdFusion?

How to use static functions in ColdFusion? How to import component? How to call a static function using both tag and script syntaxes? Adobe added support for static functions in ColdFusion...

0 answers  ·  posted 1y ago by Vanity Slug ❤️‭

Question static coldfusion
60%
+1 −0
Q&A How to solve the "ReferenceError: service is not defined"?

Temporary notice: this is part of an ongoing project of transferring and splitting my canonical from Stack Overflow on common errors in Google Apps Script. As soon as the Q&As are finalized, ...

1 answer  ·  posted 1y ago by Oleg Valter‭  ·  last activity 1y ago by Oleg Valter‭

Question google-apps-script
60%
+1 −0
Q&A How to solve the "ReferenceError: service is not defined"?

Meaning If the script is using any of the advanced services, they must be enabled first. If the service is not enabled, it will not be added to the global scope (as a value of a global variable), ...

posted 1y ago by Oleg Valter‭

Answer
60%
+1 −0
Q&A Issues with receiving WM_INPUTLANGCHANGE etc. messages when language is chosen using hotkeys

It seems like changing the window handle to null in PeekMessageW solved the issue: BOOL bret = PeekMessageW(&msg, null, 0, 0, PM_REMOVE); Then I can still get the window handle source like ...

posted 1y ago by ZILtoid1991‭

Answer
60%
+1 −0
Q&A Issues with receiving WM_INPUTLANGCHANGE etc. messages when language is chosen using hotkeys

I'm currently writing an input and output handling library for the D language, and I'm not getting any kind of input language change messages when the language is being toggled with hotkeys, and on...

1 answer  ·  posted 1y ago by ZILtoid1991‭  ·  edited 1y ago by Karl Knechtel‭

Question windows d
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 2y ago by Wicket‭  ·  edited 2y ago by Wicket‭

Answer