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.6k posts
 
75%
+4 −0
Q&A Handling JSON files in Rust without manually creating mapping classes

The hard part is figuring out exactly how your code needs to adapt to changes in the JSON structure. In your example, presumably the rest of your program needs to depend on the names and types in p...

posted 4y ago by r~~‭

Answer
75%
+4 −0
Q&A What do the number entries mean in the sympy poly.diff(...) tuple syntax?

It appears that the tuple syntax works like this: (variable index, order of derivative) Where something like: base = poly(x*y**2 + x, x, y) deriv_mysterious5 = base.diff((0,1)) print('deriv_mysteri...

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

Answer
75%
+4 −0
Q&A Permutations of an array - APL

I assume the built-in definition you're referring to is pmat. That illustrates how to solve your problem near the bottom. The idea is simply if σ is a permutation of length N and A is an array of l...

posted 4y ago by Derek Elkins‭

Answer
75%
+4 −0
Q&A Controlling format when importing CSV

This is happening because of assumptions made by the software. "E notation" is a standard convention popular with scientists, mathematicians and engineers as a convenient way to represent and proce...

posted 4y ago by pnuts‭  ·  last activity 3y ago by Alexei‭

Answer
75%
+4 −0
Q&A How can I generate documentation from comments in SQL DDL?

I have some SQL scripts that contain DDL to create tables and schemas for a database. I'd like to be able to comment this SQL and then use those comments to generate output documentation (in HTML)...

0 answers  ·  posted 4y ago by Monica Cellio‭  ·  edited 4y ago by Monica Cellio‭

75%
+4 −0
Meta Community feedback: What type of questions can I ask here?

There is a new page What type of questions can I ask here? (found under Help -> Guidance.) I'll quote it as whole below, for convenience. Please give feedback on specific items in the list that ...

15 answers  ·  posted 4y ago by Lundin‭  ·  last activity 3y ago by Lundin‭

75%
+4 −0
Meta Community feedback: What type of questions can I ask here?

On-topic questions about SQL programming ... Off-topic questions about database administration I propose that these two are changed to clarify that we allow questions about database design an...

posted 4y ago by Lundin‭

Answer
75%
+4 −0
Meta Community feedback: What type of questions can I ask here?

I propose that the following is added: On-topic questions asking for code review that follow [the site policies for the code review category]. Where [the site policies for code reviews] is a li...

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

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

In short, NULL is the 0 value, and a null pointer is a pointer variable that points to nothing. some systems allowing a different representation of the null pointer other than zero Years back...

posted 4y ago by sonofel‭  ·  edited 4y ago by EJP‭

Answer
75%
+4 −0
Q&A Implementing impersonation in an ASP.NET Core Web application

I am working at a proof-of-concept for porting an ASP.NET MVC application to an ASP.NET Core API + Angular SPA. One of the features of the existing application is the ability of an admin (typically...

0 answers  ·  posted 4y ago by Alexei‭

75%
+4 −0
Q&A dig -6 works but dig -4 does not

I can't get a response from IPv4 dig on my server but I can get one from IPv6 dig. See the below output: $ dig +short myip.opendns.com a @resolver1.opendns.com # Doesn't return anything, this used ...

1 answer  ·  posted 4y ago by cobertos‭  ·  last activity 4y ago by Canina‭

Question linux ipv4 ipv6 dns
75%
+4 −0
Q&A What do the number entries mean in the sympy poly.diff(...) tuple syntax?

Based on the source code which delegates to this implementation among others, base.diff((x, n)) means to compute the n-th derivative of base with respect to x. Any arguments to diff which aren't tu...

posted 4y ago by Derek Elkins‭  ·  last activity 4y ago by Derek Elkins‭

Answer
75%
+7 −1
Q&A How to choose backend technology for my project?

I am planning to build a "Customer Management Portal" as a hobby project using technologies like HTML,CSS,JavaScript,JAVA,JDBC,Oracle Database.The description of the portal is: 1)Customer details ...

3 answers  ·  posted 4y ago by aditya98‭  ·  last activity 4y ago by Matthewericfisher‭

Question backend
75%
+4 −0
Q&A How to choose backend technology for my project?

There are a lot of factors that can go in the choice of a language: Do the properties of the language itself meet your requirements (e.g., C allows for more low-level optimizations than Visual ...

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

Answer
75%
+4 −0
Q&A Capture args from repeatable flags in Golang pflags package

How do I create a flag that can be used multiple times in a command using the pflag package? For example, let's say I wanted to select multiple fields and did not want to have to use comma-separati...

1 answer  ·  posted 4y ago by qohelet‭  ·  edited 4y ago by Alexei‭

75%
+4 −0
Q&A Is it necessary for a build server to remove node_modules before an AOT build?

I suspect this is an outdated practice: Prior to npm 3, npm did not keep track of resolved dependencies, and npm install would try to reconcile the existing with the declared dependencies. Since no...

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

Answer
75%
+4 −0
Q&A List what file(s) an identifier was declared in?

I'm using Doxygen to help me figure out some library code. There's an enum I know I need to use, but I don't know which file it's declared in. Searching for that identifier in Doxygen yields the p...

1 answer  ·  posted 4y ago by Hyperlynx‭  ·  last activity 4y ago by summea‭

Question doxygen
75%
+4 −0
Meta Enable text-area for comments to be resized

I was wondering if the comment box can be altered? So the text-area can be expanded/re-sized? It's quite frustrating to get to the right text scrolling in such small box whilst it's not interactiv...

1 answer  ·  posted 4y ago by gzi98‭  ·  last activity 3y ago by Monica Cellio‭

75%
+4 −0
Q&A Resize HTML canvas with respect to inner content

I am currently making an esoteric language which requires a theoretically infinite canvas. Basically, it should be able to resize and fit the contents of the drawing in and outside it's existing bo...

0 answers  ·  posted 4y ago by Razetime‭

75%
+4 −0
Q&A Capture args from repeatable flags in Golang pflags package

Yes, this is supported by the flag definition functions with Array or Slice in their names. See the reference docs for pflag. A simple example below: package main import ( "fmt" ...

posted 4y ago by overtime‭

Answer
75%
+4 −0
Q&A Pros and cons of various type_traits idioms

I'm new to type_traits and #2 made sense right away. Everything else was confusing, but I don't know a good way to avoid #4. Maybe you even need #1 sometimes. #1 : enable_if on the return type Wh...

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

Answer
75%
+4 −0
Q&A How to define custom configurations in new-style .csproj?

Problem I'm trying to update some projects from old-style .csproj: <?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.mi...

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

75%
+4 −0
Q&A How to reason about transaction isolation during development

Consider the following code: public class OnlineShoppingService { @Transactional public void cancelOrder(String id) { if (shipmentRepository.findShipmentForOrder(id) != null) { ...

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

75%
+4 −0
Q&A What should healthcheck of an Web API application actually check?

I am interested in a guideline to understand how dependencies are considered when building the healthcheck functionality for an API. Like any functionality, the implementation of this feature sho...

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

Answer
75%
+4 −0
Q&A Update list based on presence of identifier in a second list

Adding to Peter Taylor's reply: The OP requested something "more LINQ". I guess it can't get any "more linq" than... MoreLINQ! That library also has a ForEach(). If you only need that, maybe it...

posted 4y ago by sktpin‭

Answer