Skip to main content
The 2026 Annual Developer Survey is live— take the Survey today!
Score of 0
0 answers
24 views

All of my old scripts are written procedural and in writing a new one I've learned that curl_close() is deprecated and that a curl object is closed automatically. But do I have to rewrite all that ...
Score of 0
0 answers
47 views

In Windows, the CreateFile function has a sharing mode, which you can use to prevent other processes from opening files or writing to files you are currently operating on. The same mechanism was ...
Score of -7
0 answers
47 views

We are migrating from CHE to UDE and have an automation solution that performs Git Pull, Build Models, Synchronize Database and Report Deployment. What is Microsoft's recommended approach for CI/CD ...
Score of 0
1 answer
65 views

I maintain a NestJS microservice which is used by many other engineers. One of the features depends on a third party API for which I need to implement rate limit: The API has a soft limit of 20 req/s ...
Score of -3
0 answers
48 views

In a Fastify + TypeScript backend, what is the recommended approach for validating cookies? Should required cookie presence be part of the route validation schema, or should it be handled separately ...
Score of -1
0 answers
105 views

This is my code: #include <stdio.h> int main() { char name[40] = "noone"; printf("Well what is Your Name: "); fgets(name, sizeof(name), stdin); if (name[30]) {...
Score of 0
0 answers
51 views

@Composable private fun SubcomposeTABDrawer( drawerContent: @Composable ((offsetY: () -> Dp, minvalue: Dp, dragModifier: Modifier) -> Unit), fadeColor: Color = DrawerDefaults.scrimColor, ...
Score of 0
0 answers
111 views

I am designing a Laravel application that handles millions of daily requests with a MySQL database containing tables with hundreds of millions of rows. A common requirement is adding or modifying ...
Score of 0
1 answer
115 views

A variant on a theme. Clang trunk compiles the following: unsigned long div(unsigned long d)
 {
 return d/7;
 } To this: div(unsigned long): mov x8, #9363 movk x8, #...
Score of -2
0 answers
107 views

I'm working on a Unity game that already integrates with the Meta Marketing APIs for Facebook Marketing and Ads management. The existing Meta developer app was created with the Business app type. I've ...
Score of 0
0 answers
94 views

I have a simple little game in Godot that revolves around a little blue bear trying to get the expired food out of his house before it explodes. This game is timed (you have 1 minute and 30 seconds to ...
Score of -6
0 answers
174 views

I'm a full-stack developer, and lately I've been thinking a lot about where software development is headed. AI has become a part of my daily workflow. It helps me write code faster, debug issues, ...
Score of 0
2 answers
291 views

I believe I have a very basic setup for using Claude Code in my VSCode. I have installed the extension, and I use to to plan new features, and build them. I review the code by sight only, which very ...
Score of 1
3 answers
295 views

I am designing a workflow for a small client-server application that interacts with an external API. This API has switched to an asynchronous, job-based model: we trigger a task, get a JobId, and then ...
Score of -10
0 answers
145 views

How do you confirm that a suspected bug actually exists and create reliable steps to reproduce it? What methods do you use to isolate the issue, compare expected and actual behaviour, and collect ...

15 30 50 per page