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.

Search

Advanced Search Options

To further refine your search, you can use additional qualifiers such as score:>0.5. For example, the search score:>=0.5 created:<1y grammar would return only posts mentioning "grammar" that have a score >= 0.5 and were created less than a year ago.

Further help with searching is available in the help center.

Quick hints: tag:tagname, user:xxx, "exact phrase", post_type:xxx, created:<N{d,w,mo,y}, score:>=0.5

Filters
 
50%
+0 −0
Meta I created a tag, now it need edit.

Streams is an universal concept not specific to any particular language. It originates from ancient Unix, most famously the stdout and stdin streams. And so they exist in pretty much any "C family"...

posted 8mo ago by Lundin‭  ·  edited 8mo ago by Lundin‭

Answer
50%
+1 −1
Q&A How can I properly implement Hexagonal Architecture and Domain Driven Design in the same application?

I'm trying to use the "hexagonal architecture" and "domain-driven design" paradigms together, in a Java application using Spring. I understand that my application should have a structure with 3 la...

1 answer  ·  posted 7mo ago by rudahee‭  ·  edited 6mo ago by Karl Knechtel‭

Question java spring hexagonal-architecture domain-driven-design
50%
+0 −0
Q&A Using sqlline, how do you filter/find tables using the !tables command

I need to filter/find and list tables using the sqlline !tables command. For example, these are the type of queries i wish to fire Find out all the tables in a particular schema s1 All tables ...

1 answer  ·  posted 8mo ago by Abbas Gadhia‭  ·  last activity 8mo ago by Abbas Gadhia‭

Question sqlline
50%
+0 −0
Code Reviews Serial copying from disk images to folder in Bash

The following answer was given by SE user Edward. The original source can be found here. The other answer gave some really good advice; this is intended as a complementary answer with still more...

posted 3mo ago by aura-lsprog-86‭

Answer
50%
+0 −0
Q&A How to correctly model the delay timer for a CHIP8 emulator written in C?

I received this answer in SE. Sadly, the user who wrote the answer is no longer in the site. Don't use threads and synchronization primitives (semaphores, shared memory, etc) for this. In fact, ...

posted 3mo ago by aura-lsprog-86‭

Answer
50%
+0 −0
Q&A How to correctly model the delay timer for a CHIP8 emulator written in C?

I asked this question in SE a while back. TL;DR I need to emulate a timer in C that allows concurrent writes and reads, whilst preserving constant decrements at 60 Hz (not exactly, but approxima...

1 answer  ·  posted 3mo ago by aura-lsprog-86‭  ·  last activity 3mo ago by aura-lsprog-86‭

Question c linux multithreading emulation chip-8
50%
+0 −0
Q&A Dynamically do something after a useState variable has been set?

useEffect(() => { // do something }, [myVar]);

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

Answer
50%
+0 −0
Q&A Why is a for loop getting stuck when using a uint64_t counter, whereas a while loop isn't?

SE user DU Jiaen provided the following answer, edited by Martin Zabel and found here. The expression i >= 0 is always true if i is of an unsigned integer type. The alternative and simple way...

posted 3mo ago by aura-lsprog-86‭

Answer
50%
+0 −0
Q&A Why is a for loop getting stuck when using a uint64_t counter, whereas a while loop isn't?

SE user M Oehm provided with the following answer, as it can be found here. The condition i >= 0 is always true if i is an unsigned type. Decrementing an unsigned zero will not produce a nega...

posted 3mo ago by aura-lsprog-86‭

Answer
50%
+0 −0
Q&A How to disable debug windows automatically opening up when I hit a breakpoint in vscode?

In settings search for debug open. Find setting called "Debug: Open Debug" and in drop down set it to neverOpen.

posted 4mo ago by Vanity Slug ❤️‭

Answer
50%
+0 −0
Q&A Is it a bad idea to block proxies/vpns for interacting with my app?

For contact form spam specifically, there is a more direct solution. If you use a form service like formspree.io it will already have built in spam filtering features. This isn't based around tryin...

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

Answer
50%
+0 −0
Q&A How can I set a private class instance variable to the File object used by an unmarshaller?

I've found a way to set the private field without exposing it or giving it a setter: Reflection. Using external event listeners, I can get ahold of the File object. Then, inside the beforeUnmarsha...

posted 3mo ago by aura-lsprog-86‭  ·  edited 3mo ago by aura-lsprog-86‭

Answer
50%
+0 −0
Code Reviews Serial copying from disk images to folder in Bash

The following answer was given by SE user Oh My Goodness. The original source can be found here. Instead of cat "$x" | command or echo "$x" | command, use command <$x (vs cat) or command ...

posted 3mo ago by aura-lsprog-86‭  ·  edited 3mo ago by aura-lsprog-86‭

Answer
50%
+0 −0
Code Reviews A simple implementation of a mutable String in C

My biggest gripe with your code is the (almost) complete lack of comments! Nothing gives even a brief overview of what this library is supposed to do, and we are left to guess what the subroutines...

posted 3mo ago by Olin Lathrop‭

Answer
50%
+0 −0
Q&A Why does a lack of object encapsulation constitute a security breach?

TL;DR: Imperfect > none Re: title. Coming thru open door is not a breach. ;-) Encapsulation helps with security because it hides data (prevents exposure). If that data matters, that means l...

posted 5mo ago by LAFK‭

Answer
50%
+0 −0
Q&A Tackling net::ERR_NAME_NOT_RESOLVED and timeout error on browser object creation when using Puppeteer

To fix TypeError: Cannot read properties of undefined (reading 'close'), remove the const in the following code, which ensures your let browser outside the block will be assigned in the common case...

posted 5mo ago by ggorlen‭  ·  edited 5mo ago by Alexei‭

Answer
50%
+0 −0
Q&A List charts in a helm repository

You have to search the repo without any filters: $ helm search repo myrepo NAME CHART VERSION APP VERSION DESCRIPTION myrepo/mychart 1.0.0 1.0.0 ...

posted 4mo ago by Iizuki‭

Answer
50%
+0 −0
Q&A Android CameraPreview not rendering for MLKit barcode analyis on MAUI custom control

Answering my own question in case anyone else stumbles upon this. Changing native platform implementation from Android.Views.View to AndroidX.CoordinatorLayout.Widget.CoordinatorLayout like follow...

posted 3mo ago by carpeltunnel‭

Answer
50%
+0 −0
Q&A Why doesn't my Azure OpenAI model show up in Cursor?

I added my Azure OpenAI account show up in Cursor in the settings: But I don't see the Azure OpenAI model as one of the available models: Why doesn't my Azure OpenAI model show up in Cursor? ...

0 answers  ·  posted 1mo ago by Franck Dernoncourt‭  ·  edited 1mo ago by Franck Dernoncourt‭

Question cursor-ai
50%
+0 −0
Q&A Does the Rate limit (Tokens per minute) of an Azure OpenAI instance corresponds to the input tokens, the output tokens or the sum of both?

Does the Rate limit (Tokens per minute) of an Azure OpenAI instance corresponds to the input tokens, the output tokens or the sum of both? The sum of both input tokens and the output tokens. S...

posted 2mo ago by Franck Dernoncourt‭

Answer
50%
+0 −0
Q&A Why does Azure Command-Line Interface (CLI) list no groups and no resources in my Azure account?

Reddit user InsufficientBorder found the issue: If you have multiple subscriptions, and/or haven't set a default, the CLI will "randomly" set one to be the subject of any requests. Check you'v...

posted 2mo ago by Franck Dernoncourt‭

Answer
50%
+0 −0
Q&A How can I autocomplete variable names in prompts in Cursor?

It is currently not possible to autocomplete variable names in prompts in Cursor (source).

posted 1mo ago by Franck Dernoncourt‭

Answer
50%
+0 −0
Q&A Property 'DurationFormat' does not exist on type 'typeof Intl'

I run this code with Deno from Temporal.PlainDate.prototype.since() - JavaScript | MDN: const date = Temporal.PlainDate.from("2022-12-25"); const now = Temporal.Now.plainDateISO(); const duratio...

0 answers  ·  posted 1mo ago by Ooker‭

Question javascript typeof deno
50%
+2 −2
Q&A Is it possible to deploy data science notebook servers on shared servers (no root access)?

Are there libraries that allow deploying data science notebooks (like Jupyter notebooks) on servers with no root access (for example, shared servers)? A shared (non-VPS) server is, for example, a ...

0 answers  ·  posted 1mo ago by mavavilj‭  ·  last activity 5d ago by Helengrace‭

Question cloud data-science
50%
+0 −0
Q&A Best practices for designing a central gateway/hub for microservices communication

GraphQL instead of gRPC Assuming you do decide to implement a gateway, I'd consider implementing it as a GraphQL API instead of plain gRPC. I feel like your usecase is almost exactly what it's int...

posted 2mo ago by Iizuki‭

Answer