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
 
77%
+5 −0
Q&A How can I properly type-hint methods in different files that would lead to circular imports?

I am writing a Python package where I have two classes in different files that (indirectly) depend on each other. If I wouldn't care about type-hints, there would be no problem, but unfortunately,...

2 answers  ·  posted 1y ago by mr Tsjolder‭  ·  edited 1y ago by Alexei‭

Question python mypy typing type-hinting
77%
+5 −0
Q&A How to trigger an error/warning immediately upon compile/run if an item on my class-path is missing

I have a very simple source file -- HelloWorld.java public class HelloWorld { public static void main(String[] args) { System.out.println("hello world"); } } I have th...

0 answers  ·  posted 1y ago by davidalayachew‭  ·  edited 1y ago by davidalayachew‭

Question java compiler-errors compiler-warnings javac classpath
77%
+5 −0
Meta What categories could we benefit from having?

So far, existing Meta discussion seems to have at least hinted at the possibility of using separate categories here: To shuffle closed questions out of the way (globally for Codidact) (also) Fo...

1 answer  ·  posted 1y ago by Karl Knechtel‭  ·  last activity 1y ago by Lundin‭

Question discussion site-culture categories
77%
+5 −0
Q&A How can I schedule a later task in Python?

Use at to schedule the command, using subprocess from Python to invoke at. It doesn't even require shell=True. For example: import shlex, subprocess subprocess.run( # `at` command to run n...

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

Answer
77%
+5 −0
Q&A How to log first n lines of a stack trace in Java?

It's not clear where this stack trace comes from (either from an exception or the current thread), but it doesn't matter, the way to do it is the same. Both Exception's and Thread's have the getSt...

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

Answer
77%
+5 −0
Q&A How can I manage multiple consecutive strings in a buffer (and add more later)?

When looking at this, we might pretty soon note that storing strings in the same buffer by using null terminators as separator is quite clunky. It blocks us from using handy functions like strtok, ...

posted 1y ago by Lundin‭  ·  edited 11mo ago by Lundin‭

Answer
77%
+5 −0
Q&A What is a reasonable minimum for making a FOSS project inviting to contributors?

A lot of people who maintain FOSS projects would like to get more contributions. What can the maintainer do to ensure that potential contributors are converted into actual contributors? There are...

2 answers  ·  posted 1y ago by matthewsnyder‭  ·  last activity 11mo ago by Michael‭

Question documentation open-source
77%
+5 −0
Q&A How to delete a remote branch in git?

How to delete a branch from a remote in git? E.g. maybe you had this branch locally too, but you deleted it already according to this question. Now you want to get rid of the corresponding remote ...

2 answers  ·  posted 1y ago by Iizuki‭  ·  last activity 1y ago by hkotsubo‭

Question git
77%
+5 −0
Q&A Use cases for raising a 'NotImplementedError' in Python

NotImplementedError should generally be viewed as indicating some design problem. You should not be reaching for it as a matter of course. Here are some potential times you might feel a desire to ...

posted 9mo ago by Derek Elkins‭

Answer
77%
+5 −0
Code Reviews Parsing numbers from a text file

This is my solution to the first task of the Advent of Code 2023. The task description is: On each line, the calibration value can be found by combining the first digit and the last digit (in t...

2 answers  ·  posted 9mo ago by GeraldS‭  ·  last activity 5mo ago by Feefladder‭

Question rust
77%
+5 −0
Meta Closing self-answered question due to not being clear enough

A question should be closed when it cannot be meaningfully answered by someone who knows the topic. Which might indeed mean that the one(s) casting the close vote(s) would need domain knowledge. T...

posted 9mo ago by Lundin‭  ·  edited 7mo ago by Lundin‭

Answer
77%
+5 −0
Meta Where should I ask git questions?

Where should I ask questions about Git?

2 answers  ·  posted 8mo ago by matthewsnyder‭  ·  last activity 8mo ago by Monica Cellio‭

Question discussion
77%
+5 −0
Q&A Reusing HTML without rewriting it

I have a site hosted through GitHub and I'm using footers for special links and it also serves as my main navigation bar for now. I find it a little frustrating to manually copy-paste the footer's ...

3 answers  ·  posted 8mo ago by General Sebast1an‭  ·  last activity 8mo ago by matthewsnyder‭

Question html
77%
+5 −0
Q&A Reinstall old Python libraries after update

It depends. Pure Python is usually forward-compatible with newer minor versions, but this is not always the case. Features/modules that were available in a previous minor version may no longer be ...

posted 10mo ago by Hackysack‭

Answer
77%
+5 −0
Q&A Reinstall old Python libraries after update

Recently, Python updated from 3.11 to 3.12 and now all my libraries are gone. Actually they're in the old 3.11 site-packages, but now that python points to 3.12 those are not active. Every time I r...

3 answers  ·  posted 10mo ago by matthewsnyder‭  ·  last activity 10mo ago by Karl Knechtel‭

Question python-3
77%
+5 −0
Q&A Testing an opaque type's internals

First: What is an opaque pointer in C? Now when it comes to testing such a type, I know of 3 ways: Include the source file (the one containing the definition of the type and the functions tha...

2 answers  ·  posted 11mo ago by Melkor-1‭  ·  last activity 10mo ago by Alexei‭

Question c unit-testing testing
77%
+5 −0
Code Reviews Github workflow for a C application

This is my first try at automating building and testing some C code for these platforms: Linux Windows MacOS OpenBSD (arm64 and x86-64) FreeBSD (arm64 and x86-64) NetBSD Oracle Solaris Om...

1 answer  ·  posted 12mo ago by Melkor-1‭  ·  last activity 8mo ago by zmzaps‭

Question yaml github ci/cd
77%
+5 −0
Q&A How and where does Python code start running? How can I control that?

Files with .py extension are scripts. You run them with python myscript.py. Python is an imperative language, so executing a file will run each line one by one, starting from the top, and exit whe...

posted 12mo ago by matthewsnyder‭  ·  edited 10mo ago by Michael‭

Answer
77%
+5 −0
Q&A Is it a bad idea to block proxies/vpns for interacting with my app?

If you block proxies and VPNs it will stop real users. reCAPTCHA also stops real users, often blocks proxies and VPNs, and isn't very good at stopping bots. You can try a custom CAPTCHA. It can b...

posted 4mo ago by user253751‭  ·  edited 3mo ago by user253751‭

Answer
77%
+5 −0
Q&A Why utilize an FQDN in the stead of a domain (and/or TLD), relative to the root domain?

Until recently, I'd yet to come across a situation in which I'd had any reason to qualify a DNS namespace further than its TLD. Then, I authored softwareengineering.stackexchange.com/revisions/456...

0 answers  ·  posted 2mo ago by RokeJulianLockhart ‭

Question dns
77%
+5 −0
Meta Is my question a duplicate? What now?

As part of a general effort to produce basic Q&As for Python, recently I've been focused on issues related to starting up an interpreter and running the code - so, questions about setting up an...

0 answers  ·  posted 10mo ago by Karl Knechtel‭

Question discussion duplicate-questions canonicals self-answered-questions
77%
+5 −0
Q&A How is this code "dividing" by a string?

I found a strange expression in some Python code: from library import HOME_DIRECTORY file = HOME_DIRECTORY / "file.json" It seems to be dividing a string by another string in order to do som...

3 answers  ·  posted 10mo ago by Andrew Ray‭  ·  edited 10mo ago by hkotsubo‭

Question python operator-overloading operators python-3
77%
+5 −0
Meta I comment on an answer on my question, and get this error: "New users can only comment on their own posts and on answers to them"

I'm the author of this question: What is the advantage of creating instances from a method rather than constructor? A user provides an answer and I want to open a comment thread. I get this respons...

1 answer  ·  posted 7d ago by Ooker‭  ·  edited 5d ago by Monica Cellio‭

Question bug comments abilities beginner-questions
77%
+5 −0
Q&A What are X macros and when to use them?

Occasionally I run into some strange pre-processor code with a list like this: #define LIST \ X(1) \ X(2) \ X(3) \ And then code followed by other obscure macros and ...

1 answer  ·  posted 1mo ago by Lundin‭  ·  last activity 1mo ago by Lundin‭

Question c x-macros preprocessor
77%
+5 −0
Q&A Casting a non-`void` pointer to `uintptr_t`

I came across the following code snippet on the SEI CERT C Coding Standard wiki: Compliant Solution Any valid pointer to void can be converted to intptr_t or uintptr_t and back with no change i...

1 answer  ·  posted 1mo ago by mm1‭  ·  last activity 1mo ago by Lundin‭

Question c pointers