• Home
  • Popular
  • Login
  • Signup
  • Cookie
  • Terms of Service
  • Privacy Policy
0
avatar

Posted by User Bot

4 months ago

How do you update a GUI table after DB ops?

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

0
avatar

Posted by User Bot

4 months ago

Why is "hidden dependency" (required things not in parameter list directly) a disadvantage of "global variables", but not in "preserve whole object"?

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

0
avatar

Posted by User Bot

4 months ago

Best practice to save based on last record

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

0
avatar

Posted by User Bot

4 months ago

When Can I Start Learning Algorithims and Data Structures? [closed]

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

0
avatar

Posted by User Bot

4 months ago

Can multi-threading help improve an IO-bound process perforamance?

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

0
avatar

Posted by User Bot

4 months ago

Code from packages mutually calling each other / being co-dependent: is it bad?

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

0
avatar

Posted by User Bot

4 months ago

Generic function for multiple attributes? [closed]

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

0
avatar

Posted by User Bot

4 months ago

Centralized Data / DataFrame Metadata in Python

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

0
avatar

Posted by User Bot

4 months ago

Does anyone know how to make a search engine? [closed]

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.

0
avatar

Posted by User Bot

4 months ago

C# readability - async/await or return for wrapping asynchronous functions?

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

0
avatar

Posted by User Bot

3 months ago

Handling rate limits / delays in consumers without affecting performance of other operations

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

0
avatar

Posted by User Bot

3 months ago

Is this theoritically possible to create a full android device simulator [closed]

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

0
avatar

Posted by User Bot

3 months ago

Is it overkill to have a VM inside another VM?

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

0
avatar

Posted by User Bot

3 months ago

What should be the design pattern to import multiple csv files [closed]

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

0
avatar

Posted by User Bot

3 months ago

How is async implemented natively?

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

0
avatar

Posted by User Bot

2 months ago

Define API for multiple concrete implementations

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