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.

Activity for Alexei‭

Type On... Excerpt Status Date
Answer A: Appropriate HTTP status code for "user confirmation required"
Unless there are reasons for keeping the "check for unintended consequences" and "perform the action" in the same endpoint, I would split them into two parts: 1. `GET /api/v1/action-can-charge-the-client/{id}`. This should respond with 200 and the required information so that the client knows that...
(more)
about 3 years ago
Comment Post #285569 @#36363 Software developers should understand the business requirements and think about a way to implement them. If they are not sure about a particular aspect of the architecture, they can come to Codidact, provide the relevant details and ask about the particular aspect they want to clarify. Of...
(more)
about 3 years ago
Comment Post #285569 Can you please make the question more about Software Development? Currently, it sounds more like a "marketing" or UX at best.
(more)
about 3 years ago
Edit Post #285569 Question closed about 3 years ago
Edit Post #285566 Post edited:
added relevant tag
about 3 years ago
Edit Post #285534 Post edited:
minor fix in the code
about 3 years ago
Edit Post #285542 Initial revision about 3 years ago
Answer A: How to mock LazyCache when performing unit testing?
LazyCache provides CachingService as a concrete implementation of the IAppCache. When unit testing simply instantiate the tested service using CachingService: ``` var testInstance = new FooService(new CachingService()); ```
(more)
about 3 years ago
Edit Post #285541 Initial revision about 3 years ago
Question How to mock LazyCache when performing unit testing?
A few of my services rely on LazyCache and they use it by injecting IAppCache. For unit testing, I would like to mock this. I have found MockCachingService, but it does not do any caching (as specified in the comments). What is the way to perform unit testing in this scenario?
(more)
about 3 years ago
Edit Post #285533 Post edited:
minor formatting fix
about 3 years ago
Edit Post #285534 Initial revision about 3 years ago
Answer A: How to create fire and forget tasks Q&A in ASP.NET Core with dependency injection support?
The way I made this work is not very quick but might provide extra benefit in the future. I have added Hangfire support to the application and use its BackgroundJob enqueuing mechanism as follows: Plugging Hangfire ``` using Hangfire; using Hangfire.MemoryStorage; public void ConfigureServ...
(more)
about 3 years ago
Edit Post #285533 Initial revision about 3 years ago
Question How to create fire and forget tasks Q&A in ASP.NET Core with dependency injection support?
One of the legacy applications our team manages contained the following pattern (in the controller): ``` // initialization private readonly IServiceScopeFactory serviceScopeFactory; public FooController(IServiceScopeFactory serviceScopeFactory) { serviceScopeFactory = serviceScopeFactor...
(more)
about 3 years ago
Comment Post #285489 @#53280 Yes, I have not realized the XY problem in my post. I have added a paragraph to clarify this.
(more)
about 3 years ago
Edit Post #285489 Post edited:
clarified the purpose of my question
about 3 years ago
Comment Post #285489 Unfortunately, the application I am developing now is running on servers that are shared by multiple .NET applications and the memory is not that generous (although its price is pretty low when compared to other software development costs).
(more)
about 3 years ago
Edit Post #285502 Post edited:
improved readability
about 3 years ago
Edit Post #285502 Initial revision about 3 years ago
Answer A: How to deeply clone an array in Angular / TypeScript?
These can be achieved in several ways, but there might be some drawbacks: - through JSON serialization/deserialization: `const cloned = JSON.parse(JSON.stringify(array));` The advantage is that it works for any type of object, but there are some drawbacks such as converting some values like...
(more)
about 3 years ago
Edit Post #285500 Initial revision about 3 years ago
Question How to deeply clone an array in Angular / TypeScript?
I have an array that I need to clone in Angular / Typescript. That is, any change done on an element from the cloned array should not affect the content of the initial array. How can I achieve this?
(more)
about 3 years ago
Edit Post #285499 Initial revision about 3 years ago
Question Using nested paths vs. flat ones for API resources
This is based on a code review discussion that I had with a colleague about the way I have designed the resources paths for an ASP.NET Core controller that is currently consumed only internally (by a SPA). The paths were flattened (e.g. GET /api/productreview/{reviewId}) and my colleague argued th...
(more)
about 3 years ago
Edit Post #285399 Post edited:
added Quasímodo‭'s feedback
about 3 years ago
Comment Post #285399 @#53919 Indeed, I have also noticed that SO managed to get more and more users, but there are simply not enough folks to answer them. Before Codidact, in order to get answers for most of the questions I had to rely on bounties. Now I have Codidact :) This is also shown in the answer rate graph fr...
(more)
about 3 years ago
Edit Post #285493 Post edited:
added relevant tag
about 3 years ago
Edit Post #285489 Initial revision about 3 years ago
Question Can I set a memory limit for the .NET Core garbage collector to collect objects more aggressively?
I have an ASP.NET Core 5 web application that provides functionality that involves file upload + rather large processing (memory consumption mainly). After each processing (with success or not) the memory could be reclaimed. I have a stress test the endpoint with large files and checked the w3wp.e...
(more)
about 3 years ago
Edit Post #285472 Post edited:
added relevant tag
about 3 years ago
Comment Post #285472 Would a userscript that defines a hotkey to hide the element be OK? Somethink like: ``` window.addEventListener("the_key", setupHideElement, false); function setupHideElement(key) { // locate and hide element here } ```
(more)
about 3 years ago
Comment Post #285396 @#8176 It is similar to that (did not know it exists, but it is a very nice thing). However, I think it is easier to have a default text for a question directly as a question body. I guess this is the main reason why GitHub uses this method: it helps the user not to forget to include important inform...
(more)
about 3 years ago
Edit Post #285399 Post edited:
added Lundin's suggestion
about 3 years ago
Edit Post #285454 Post edited:
added relevant tags
about 3 years ago
Edit Post #285456 Initial revision about 3 years ago
Answer A: Tracking what users are searching in a content management system
Server-side solution If you can customize the server-side search functionality, you could add some logging information there. The advantages in this case are: - store the data in a useful format and avoid parsing general-purpose logs - you can also store some metadata related to the found resu...
(more)
about 3 years ago
Edit Post #285451 Post edited:
added relevant tag
about 3 years ago
Edit Post #285451 Post edited:
added relevant tag
about 3 years ago
Comment Post #285399 @#54706 I guess you are talking about [this](https://meta.codidact.com/posts/280058). I do not remember seeing them actually used though. I guess it requires explicit activation at the community level.
(more)
over 3 years ago
Comment Post #285399 @#54706 Yes, I would not advertise it now. However, I think it makes sense to tackle this somehow before the numbers run high and include it in future site promotion. Professionals tend to dislike messy questions and an important fraction of newbies posts low-quality posts. Without a separation like ...
(more)
over 3 years ago
Edit Post #285399 Post edited:
added suggestions from Monica
over 3 years ago
Edit Post #285394 Post edited:
added relevant tag
over 3 years ago
Edit Post #285399 Initial revision over 3 years ago
Question Promoting the advantages Codidact Software has over Stack Overflow or similar communities
Note: some of these points are relevant for all communities, but I would like to focus on Software Development for now I am thinking of promoting Software Codidact, but I could not find a single page to include a list of advantages it has over other similar platforms, mostly against the SO. Wha...
(more)
over 3 years ago
Edit Post #285398 Initial revision over 3 years ago
Question How to promote Software Development Codidact on LinkedIn?
I have recently blown off the dust off my LinkedIn profile and I have realized that I have hundreds of connections. An important fraction of all these connections are into software development and might be interested into using a platform like Codidact. The Codidact Foundation is also on LinkedIn ...
(more)
over 3 years ago
Edit Post #285396 Initial revision over 3 years ago
Question Question templates for guidance
I am wondering if it makes sense to define a template for questions. This would act as a guideline rather than a strict template to be followed. I have seen this being used for GitHub issues and I think it would help virtually all users to tick some points when asking most of the software developm...
(more)
over 3 years ago
Comment Post #285389 The files are immutable. Only addition and deletion are allowed to the actual content. Only metadata might be updated.
(more)
over 3 years ago