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 H_H‭

5 posts
77%
+5 −0
Q&A How to convert Dos paths to Posix paths in Powershell

TL;DR: Use wslpath and hope for the best. You can use it like this in Powershell: wsl wslpath -u 'C:\\some\\path\\to\\folder\\or\\file.txt' Long answer Converting them is hard. There is windows...

posted 8mo ago by H_H‭  ·  edited 7mo ago by H_H‭

Answer
71%
+3 −0
Q&A OpenGL: Pass a double vector from vertex shader to fragment shader

TL;DR: How to pass a interpolated double vector, such as a dvec2, from the vertex shader to the fragment shader? I have a vertex shader. In this the output variable out vec2 uv; is set. And i have...

1 answer  ·  posted 9mo ago by H_H‭  ·  last activity 9mo ago by H_H‭

Question glsl OpenGL
66%
+2 −0
Q&A Is omitting braces for single statements bad practice?

While there are already good answers, i want to give yet another reason to always use {}: Macros. Lets consider this code: #include <stdio.h> #define FOO(n) puts(n[1]); puts(n[0]); in...

posted 9mo ago by H_H‭  ·  edited 9mo ago by H_H‭

Answer
50%
+0 −0
Q&A OpenGL: Pass a double vector from vertex shader to fragment shader

Found a workaround: Instead of doing the calculating in the vertex shader, do it in the fragment shader. The precision error only occurs because the different vertexes have a uv value that is clos...

posted 9mo ago by H_H‭  ·  edited 9mo ago by H_H‭

Answer
50%
+0 −0
Q&A How can I schedule a later task in Python?

While the other answers rely on external programs, you can do the same inside python. Using time.sleep() If you don't need to do any other tasks during this 10 min. #!/usr/bin/env python3 impo...

posted 8mo ago by H_H‭

Answer