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
 
40%
+0 −1
Q&A How to uncollapse the first and second tiers of a link tree in JavaScript?

I wish to display the first and second branches of a link tree with JavaScript. I want to show these branches in a single action, instead of clicking each vertical arrow (link) anew. HTML examp...

2 answers  ·  posted 3y ago by deleted user  ·  last activity 3y ago by hkotsubo‭

Question javascript treeview
40%
+0 −1
Q&A How To Verify Old Password in PHP? [closed]

I have a page to change the user password in my website, this page can only be used if the user have a logged in! The change password page have 3 inputs: Old Password, New Password and Con...

0 answers  ·  posted 3y ago by rrenildopereiraa‭  ·  closed 3y ago by Alexei‭

Question php passwords change-password
40%
+2 −4
Q&A Should I check if pointer parameters are null pointers?

The kind of comments telling you to add checks against null are typically coming from programmers mostly used to deal with higher level programming languages. They think that generally, more explic...

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

Answer
40%
+2 −4
Q&A Child process works only once after the parent's two calls to scanf

This program creates a child process and shares two integers (base and height) through the shared memory. The parent process asks four times to insert two integers and wait for the child process t...

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

Question c multiprocess semaphore shared-memory
40%
+2 −4
Q&A Problems with data structures and filestreams.

So I just started learning how to use file-streams in C & decided to attempt a question which is to do with library management in C, however I am currently encountering some problems and feel l...

2 answers  ·  posted 3y ago by dumplings‭  ·  edited 3y ago by Alexei‭

Question c pointers data-structures linked-list filestream
40%
+0 −1
Q&A width="100%" for an iframe, breaks responsiveness CSS directives

Changing @media screen and (min-width: 922px) to @media screen and (min-width: 720px) helped. Since the iframe wrapper is smaller than 992px the iframe children appeared relative to the wrapper ac...

posted 3y ago by deleted user

Answer
40%
+0 −1
Q&A iframe tag is vertically scrollable although I would expect it to vertically stretch 100%

I think that adding this to the original code helps: iframeToWorkOn.height = parseInt(iframeToWorkOn.height) + 50; This adds 25px top and 25px bottom compensating for CSS padding. I also wra...

posted 3y ago by deleted user  ·  edited 3y ago by deleted user

Answer
40%
+0 −1
Q&A white screen issues but not in USB tethering mode

I am getting a white screen issue for my angular portal, only if I am not using "USB tethering". When I use home/office wifi, and mobile hotspot, I get a white screen when I use USB tethering fro...

0 answers  ·  posted 2y ago by SmartestVEGA‭  ·  edited 2y ago by Ethan‭

Question angular chrome proxy network-programming
40%
+0 −1
Q&A What are statements and expressions?

The use of the terms expression and statement could vary between programming languages. However, the following distinction is widely used: Expressions are syntactic forms that allow software auth...

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

Answer
40%
+0 −1
Q&A Migrating from Az Co DB NoSQL to Az Co DB MongoDB, error?

With Azure Data Factory I tried migrating from Azure Cosmos DB NoSQL to Azure Cosmos DB MongoDB. The export went fine from the NoSQL but the import to the MongoDB did not work. I got no reasonable ...

1 answer  ·  posted 1y ago by propatience‭  ·  last activity 12mo ago by propatience‭

Question mongodb azure-data-factory azure-cosmosdb
40%
+0 −1
Q&A Addressing W25Q64 flash IC [closed]

I am using a W25Q64 flash ic to store some stuff for an ESP-32 project. I used this library from Github as it seems intended for ESP. It seemed weird that the read function uses two 16-bit paramet...

0 answers  ·  posted 1y ago by HinkyDinky‭  ·  closed 1y ago by Lundin‭

Question flash-memory ESP-32
40%
+0 −1
Q&A How to get conditional running cumulative sum based on current row and previous rows?

How do I perform a running cumulative sum that is based on a condition involving the current row and previous rows? Given the following table: acc | value | threshold 3 | 1 | 1 1 | 2 ...

1 answer  ·  posted 10mo ago by congusbongus‭  ·  last activity 10mo ago by congusbongus‭

Question apache-spark pyspark
40%
+0 −1
Q&A Use cases for raising a 'NotImplementedError' in Python

One of the usecases I have found very useful is to do a raise NotImplementedError() inside the child method of an @abstractmethod-decorated base class method. Yes, it's a mouthful but what it real...

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

Answer
40%
+0 −1
Q&A Best Practices for Precalculating Expensive Variables in Functions

But checking if the variable has been calculated each time the function runs, wastes CPU cycles, which counteracts the purpose of precalculating the variables to save resources. The Precalculating...

posted 6mo ago by wagimek‭

Answer
40%
+0 −1
Q&A Webpack can't recognize modules

I've got errors Uncaught TypeError: setting getter-only property "todo" and Uncaught TypeError: lib is undefined. I assume that those errors appeared when I created a new module for local sto...

0 answers  ·  posted 7mo ago by Sevenfold‭  ·  edited 7mo ago by Sevenfold‭

Question javascript webpack
40%
+0 −1
Q&A .NET for ERP development [closed]

I am wondering if .NET is used in ERP development, or if i decide between using .NET or another technology for ERP project.

0 answers  ·  posted 1mo ago by bilalzulficar‭  ·  closed 1mo ago by Alexei‭

Question .net .net-core
40%
+0 −1
Q&A Import onnxruntime then load_dataset "causes ImportError: /lib/x86_64-linux-gnu/libstdc++.so.6: version `GLIBCXX_3.4.29' not found": why + how to fix?

Running import onnxruntime as ort from datasets import load_dataset yields the error: (env-312) dernoncourt@pc:~/test$ python SE--test_importpb.py Traceback (most recent call last): File...

1 answer  ·  posted 9d ago by Franck Dernoncourt‭  ·  last activity 9d ago by Franck Dernoncourt‭

Question python huggingface-datasets onnxruntime glibc
38%
+3 −6
Q&A Why most hosting providers support ticket systems allow text only (no formatting)?

TL;DR Simply not necessary Markdown, and other methods of formatting (Word or similar documents, HTML/CSS, Latex, etc.) are used where the document is the product. In this case, the support ticket...

posted 4y ago by manassehkatz‭

Answer
37%
+1 −3
Q&A Did functional programming predated Object oriented programming or rather the opposite?

According to "Composing Software", by Eric Elliot, pages 13 to 17, yes.

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

Answer
37%
+1 −3
Q&A theme always not changing [closed]

const body = document.body; const light = evt => { body.setAttribute('data-theme', 'light'); localStorage.setItem("theme", "light"); console.log("light"); } const dark = ...

0 answers  ·  posted 4y ago by Anonymous‭  ·  closed 4y ago by Alexei‭

Question javascript html theme
37%
+1 −3
Q&A Separation of password cookies from all other types of cookies

When I clear my Google Chrome browser history I can clear both "Cookies and other site data" AND "passwords and other sign-in data". Clearing just one of the two would require me to re-login t...

1 answer  ·  posted 4y ago by deleted user  ·  edited 4y ago by Alexei‭

Question web cookies browser
37%
+1 −3
Q&A What's the better way to deal with deprecated feature?

It's a very old question came to my mind. Whenever I start building some applications for Android using Android Studio. In every update, lots of tools get deprecated. I know I can use deprecated "t...

0 answers  ·  posted 3y ago by Anonymous‭  ·  edited 3y ago by Anonymous‭

Question android deprecated
37%
+1 −3
Q&A Are there textual-formats for documenting actions in Graphical Windows systems? [closed]

I've recently been involved with creating text documentation of steps for workflows in graphical windows systems (and web-pages). These are often somewhat wordy, for example: "Click on the 'Exit' ...

0 answers  ·  posted 4y ago by CodeFarmer‭  ·  closed 3y ago by Alexei‭

Question documentation
37%
+1 −3
Q&A Why does this code that uses a pointer-to-pointer-to-int segfault?

Hello folks, can someone resolve this seg fault with me please, i can't find the error where it occur. Thank you. #include <stdlib.h> #include <stdio.h> int ft_ultimate_range(int *...

1 answer  ·  posted 4y ago by M3dc0d‭  ·  last activity 4y ago by Lundin‭

Question c gcc segmentation-fault
37%
+1 −3
Q&A An HTML form in Hebrew is Right to Left in general but a select list inside it is Left to Right

My HTML form got dir="rtl" attribute and value and in desktop computer systems it appears Right to Left (RTL) but in my mobile device (OnePLus 6) with Android and DuckDuckGo browser, the form's HTM...

0 answers  ·  posted 4y ago by deleted user  ·  edited 4y ago by deleted user

Question html right-to-left