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 harmony
Type | On... | Excerpt | Status | Date |
---|---|---|---|---|
Edit | Post #292785 | Initial revision | — | about 1 month ago |
Answer | — |
A: ffmpeg script outputs video with unexpected resolution and frame rate despite scaling and fps filtering Your issue lies in the application of scaling and fps filtering. Both `SCALING` and `FPSFILTER` are being set conditionally, and if both are needed, one will override the other since both are using `-vf`. Combine them in one `-vf` argument to avoid conflict: ``` if [ $WIDTH -lt $HEIGHT ]; then ... (more) |
— | about 1 month ago |
Edit | Post #292784 | Initial revision | — | about 1 month ago |
Answer | — |
A: Which platforms return a non-null pointer on malloc(0) The behavior of `malloc(0)` is implementation-defined and varies between platforms. Some platforms will return a NULL pointer, others might return a non-null pointer, but such a pointer should not be used. There's no widely known behavior outside of these. (more) |
— | about 1 month ago |
Edit | Post #292783 | Initial revision | — | about 1 month ago |
Answer | — |
A: Hexagonal Architecture + Domain Driven Design. How to perform a correct implementation? Adapters are implemented in different layers based on their function. Input adapters (like REST controllers) are at the application's edge to handle incoming requests, while output adapters (like databases) are in the infrastructure layer, interacting with external systems. Repositories and domain... (more) |
— | about 1 month ago |