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.

Activity for zmzaps‭

Type On... Excerpt Status Date
Comment Post #292143 Good point! Declarative languages often are weak, but certainly don't have to be. I'll have to give Dhall a look.
(more)
3 months ago
Comment Post #292219 I have a feeling that it doesn't matter if a Java object leaks values in its fields, for all the reasons you pointed out in your post. It sounds like whoever said that "Java objects exposing values is a security concern" are most likely from the "security by obscurity" encampment. I agree that isolat...
(more)
3 months ago
Edit Post #292143 Initial revision 4 months ago
Answer A: 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 declaratively defined. One small nitpick would be to create a custom container image for all the job...
(more)
4 months ago
Edit Post #291937 Post edited:
fix grammar and clarify
4 months ago
Edit Post #291937 Initial revision 4 months ago
Answer 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) Because you are using a header only library, anyone downloading a binary distribution does not need to dow...
(more)
4 months ago
Edit Post #291883 Initial revision 5 months ago
Answer 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 also handles more than that, see the links below. However, the `android:colorMode` attribute is n...
(more)
5 months ago
Comment Post #291880 Maybe instead of `import "@carbon/web-components/es/components/accordion/index.js";` could you remove the `index.js` at the end and instead use: `import "@carbon/web-components/es/components/accordion/accordion";` ?
(more)
5 months ago
Comment Post #285826 I 100% agree with your point about improving the technical/user features of this site. Codidact is great, but I do certainly miss the "premium" feel that SO gives with it's UI/UX. Thankfully, QPixel is open source so we can change this.
(more)
5 months ago
Edit Post #291844 Initial revision 5 months ago
Answer 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 the `rm -rf /tmp` command from my `Dockerfile`, the error went away.
(more)
5 months ago
Edit Post #291837 Post edited:
5 months ago
Comment Post #291837 I just found the error last night, see my answer. You're right, the mistake was in the `Dockerfile`, so additional context to the question was needed.
(more)
5 months ago
Edit Post #291837 Initial revision 5 months ago
Question 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 world-writable: /devdocs (1/680) Angular FAILED (ArgumentError: could not find a temporary dir...
(more)
5 months ago