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.

Posts by zmzaps‭

5 posts
66%
+2 −0
Q&A What's the difference between colorMode and uiMode?

Although they sound similar, they serve different purposes. You are correct in thinking that putting uiMode into your android:configChanges allows your app to handle light/dark mode changes. It al...

posted 5mo ago by zmzaps‭

Answer
66%
+2 −0
Q&A Managing a dependency for a C application

It depends on what you are distributing. There are two types of distributions: Binary (application is already compiled) Source (users download raw source code and compile themselves) Becaus...

posted 4mo ago by zmzaps‭  ·  edited 4mo ago by zmzaps‭

Answer
60%
+1 −0
Q&A ArgumentError: could not find a temporary directory

It turns out that within my Dockerfile, the /tmp directory was being deleted by a rm -rf /tmp command. This resulted in the /tmp directory being non-existent, leading to this error. By removing th...

posted 5mo ago by zmzaps‭

Answer
50%
+0 −0
Q&A ArgumentError: could not find a temporary directory

Hello, I am trying to build a docker image for contributing to the devdocs repository, however I am failing to get past the thor docs:download --all command. It fails with the below error: . is w...

1 answer  ·  posted 5mo ago by zmzaps‭  ·  last activity 5mo ago by zmzaps‭

50%
+0 −0
Code Reviews Github workflow for a C application

I don't see much duplication in your workflow file here. Is there a lot of boilerplate? Yes, but I believe that's expected for CI/CD workflow definitions and a result of using the workflow being d...

posted 4mo ago by zmzaps‭

Answer