I have a DAO that removes rows from a DB table. I have a GUI table representing some of those rows that passes user requests for deletion to that DAO How should I update the GUI ... See More
According to https://softwareengineering.stackexchange.com/a/200092, as I know, "preserve whole object" is a refactor method that passes the whole object instead of required par ... See More
I have a Web API in C# that receives data from various clients, which needs to be saved to the database. Each client sends data approximately every 10 seconds. To save this data ... See More
I'm learning C through A Modern Approach, and I'm on the chapter for structures, unions, and arrays. I want to start learning Data Structures and Algorithms because it seems int ... See More
I am trying to understand the difference between CPU Bound vs IO Bound process. ChatGPT suggested that multi-threading/parallel processing can help CPU bound process; However, I ... See More
I think my question is really a symptom of a bigger problem; namely that I could really use some direction in how to properly think through the design of my intended software. B ... See More
I have a resource which holds current counts of certain things and in the below method these attributes are updated. The variables passed countFirstAttribute, countSecondAttribu ... See More
Question: I'm looking for best practices or a good workflow to manage DataFrame metadata in a centralized way in Python. Specifically, I need to handle column names, data types, ... See More
I am looking at making a search engine but not sure where to start. I have a basic idea but not sure how to progress or what code to use or what platform to use.
Say I have an asynchronous method: public async Task DoThing(int x) { // ... } Now, I want to wrap this method with a new method. Each of these two options are functionally ... See More
I have a producer that generates a batch job that consists of multiple operations (approx. 100 - 10000). These operations can be processed in any order, ideally as fast as possi ... See More
I want to adjust firmware components, or to have opportunity to test something on an android device. A problem is that usually modern devices prohibit to recover a brick for fre ... See More
I have asked a similar question on StackOverflow but apparently it was closed because it's not programming related. But I assume this is software-engineering related. Anyway... ... See More
I have multiple files to import and for each file I've created a class(with CSV headers as class properties). My requirement is as follows. On the basis of file name I have to g ... See More
How is async logic implemented natively without threads? What would be the high level structure of the system? Is it just a separate OS thread that gets and pushes requests and ... See More
I try to implement multiple concrete classes, which share the same API. The base functionalities between these classes are the same, but they support different types of configur ... See More