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.
Activity for Alexeiâ€
Type | On... | Excerpt | Status | Date |
---|---|---|---|---|
Edit | Post #285389 | Initial revision | — | over 3 years ago |
Question | — |
Transferring files from a legacy project to an existing one as varbinary Our team is currently transferring all functionality (+ some changes) from small and very old project A (almost code freeze) to project B (actively developed). As part of the data migration, there are about 10GB of files to be transferred. Currently, project B stores files as varbinary in the data... (more) |
— | over 3 years ago |
Edit | Post #285366 |
Post edited: added relevant tag |
— | over 3 years ago |
Edit | Post #285177 |
Post edited: properly formatted the code |
— | over 3 years ago |
Edit | Post #285298 |
Post edited: minor fixes, removed the fluff |
— | over 3 years ago |
Edit | Post #285218 | Question reopened | — | over 3 years ago |
Comment | Post #285218 |
@#54706 I have approved your edit as it is clearly better than the initial post (no useless code provided). However, it still sounds like "do my homework for me" as opposed to asking a more targeted question (as suggested in another comment thread). (more) |
— | over 3 years ago |
Edit | Post #285274 |
Post edited: added relevant tag |
— | over 3 years ago |
Edit | Post #278063 |
Post edited: minor fixes |
— | over 3 years ago |
Comment | Post #285244 |
I do not know Python, but it support [dictionaries](https://www.programiz.com/python-programming/dictionary). You can construct a dictionary for the second table : Name -> { Description, Amount}. You iterate through the first table row by row and perform lookups in the constructed dictionary. This s... (more) |
— | over 3 years ago |
Edit | Post #285225 |
Post edited: replaced tag with a more specific one |
— | over 3 years ago |
Comment | Post #285218 |
Can you include in the question the actual problem you have in the code? Is the replacement working as expected? If it does, consider [adding a review](https://software.codidact.com/posts/new/1/44) instead. If it does not work as expected, specify what is wrong (e.g. wrong string after replacement or... (more) |
— | over 3 years ago |
Edit | Post #285204 |
Post edited: added relevant tags + clarified the text |
— | over 3 years ago |
Comment | Post #285190 |
Since the underlying cause is mostly a typo (extra # in the element id) as per [this comment](https://software.codidact.com/comments/thread/5265#comment-15191) and the existing answer) I closed this question. (more) |
— | over 3 years ago |
Edit | Post #285190 | Question closed | — | over 3 years ago |
Comment | Post #285190 |
Did you check [FormData's documentation / examples](https://developer.mozilla.org/en-US/docs/Web/API/FormData/Using_FormData_Objects)? It seems that you cannot directly construct a FormData from an Element. (more) |
— | over 3 years ago |
Comment | Post #285179 |
Debouncing is meant to reduce strain on the server and its period can be tweaked (latency vs. number of issued requests). This can be coupled with cancellation to play nice with the server and inform about the obsolete requests. An example using Angular can be seen [here](https://alligator.io/angular... (more) |
— | over 3 years ago |
Edit | Post #285176 |
Post edited: fixed the last paragraph |
— | over 3 years ago |
Edit | Post #285176 |
Post edited: clarified the title |
— | over 3 years ago |
Edit | Post #285176 | Initial revision | — | over 3 years ago |
Question | — |
Dealing with GETs with long query strings in ASP.NET Core One of the recent business requirements is to be able to search through a list of entities using a bunch of filters. Most of these filters allow multiple values and the user might theoretically provide more than 100 selected filter values (some of the filters are even implemented as tree views due to... (more) |
— | over 3 years ago |
Comment | Post #285169 |
Before trying to understand the code, it would be better to understand the concept. Example: https://www.geeksforgeeks.org/linked-list-set-1-introduction/ (more) |
— | over 3 years ago |
Edit | Post #285162 |
Post edited: fixed code + added relevant tags |
— | over 3 years ago |
Edit | Post #285118 |
Post edited: properly formatted the code |
— | over 3 years ago |
Edit | Post #285104 |
Post edited: properly formatted the code |
— | over 3 years ago |
Edit | Post #285100 |
Post edited: made the title match the content |
— | over 3 years ago |
Comment | Post #285100 |
Welcome to Software Codidact. Please avoid pasting images of code or errors, if they can be simply pasted as text. More details [here](https://software.codidact.com/posts/284871). (more) |
— | over 3 years ago |
Comment | Post #284612 |
@#54212 Yes, that's basically a duplicate. I cannot close it as duplicate (cannot provide a link outside of this community), but I have added a note. (more) |
— | over 3 years ago |
Edit | Post #284612 |
Post edited: add duplication comment |
— | over 3 years ago |
Edit | Post #285068 |
Post edited: added relevant tag |
— | over 3 years ago |
Comment | Post #285054 |
@#53196 Yes, you are right. However, since the post does not contain the whole relevant code, I was wondering about the actual issue. I feel that this might be an XY problem, but it is impossible to tell without more code. (more) |
— | over 3 years ago |
Comment | Post #285054 |
Ref. to "the input isn't recognized (the form won't be submitted)" - this sounds strange. When a form is submitted, all its values (except the disabled controls one I guess) should be posted. Normally, there should be no need for explicit event dispatching, unless there is a particular way to impleme... (more) |
— | over 3 years ago |
Edit | Post #285054 |
Post edited: added relevant tags |
— | over 3 years ago |
Comment | Post #285019 |
Until the relevant HTML and the entire JS code are provided, it is virtually impossible to answer this question, so I have closed this question. Of course, once it becomes answerable, I will reopen it. (more) |
— | over 3 years ago |
Edit | Post #285019 | Question closed | — | over 3 years ago |
Edit | Post #285021 |
Post edited: minor fix |
— | over 3 years ago |
Edit | Post #285021 | Initial revision | — | over 3 years ago |
Question | — |
Handling high frequency requests with cancellations in an ASP.NET Core application Issue I have recently discussed with a friend a performance issue he and his colleagues have encountered in an ASP.NET Core 5 application (a checkout app, microservices architecture). The problematic flow is related to computing the prices of basket items. The computation may take more than it ... (more) |
— | over 3 years ago |
Comment | Post #281308 |
@#36356 Yes, I was confused. I have removed the tag. Thanks. (more) |
— | over 3 years ago |
Edit | Post #281308 |
Post edited: removed irrelevant tag |
— | over 3 years ago |
Edit | Post #281308 |
Post edited: remove irrelevant tag + added relevant one |
— | over 3 years ago |
Edit | Post #285019 |
Post edited: added relevant tags |
— | over 3 years ago |
Edit | Post #284985 |
Post edited: added note |
— | over 3 years ago |
Edit | Post #284985 | Initial revision | — | over 3 years ago |
Answer | — |
A: Questions easily answered by studying a beginner-level book I would have a separation between what is on-topic / offtopic and what is worth upvoting or downvoting. Thus for the specific case of questions showing no research, but are on-topic, I would consider downvoting, not closing (more details in this suggestion which received mixed reactions). If I ... (more) |
— | over 3 years ago |
Edit | Post #284980 |
Post edited: added relevant tag |
— | over 3 years ago |
Edit | Post #284977 |
Post edited: narrowed down the scope of the question |
— | over 3 years ago |
Edit | Post #284977 |
Post edited: added relevant tag |
— | over 3 years ago |
Edit | Post #284935 |
Post edited: added relevant tags |
— | over 3 years ago |
Comment | Post #284935 |
"When you update the DOM, the reflow and repaint happen.
Every time the DOM changes, the browser needs to recalculate the CSS, do a layout and repaint the web page." - [credit](https://stackoverflow.com/a/60201343/2780791). (more) |
— | over 3 years ago |