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 #278571 |
Post edited: replaced tags with more meaningful ones |
— | about 4 years ago |
Edit | Post #278565 |
Post edited: replaced tags with more meaningful ones |
— | about 4 years ago |
Edit | Post #278584 |
Post edited: replaced tags with more meaningful ones |
— | about 4 years ago |
Edit | Post #278527 |
Post edited: added relevant tag |
— | about 4 years ago |
Edit | Post #278324 |
Post edited: added relevant tag |
— | about 4 years ago |
Comment | Post #278899 |
The debate related to this question made me go further with [Super User site proposal](https://meta.codidact.com/questions/278833#answer-278908). Once we start it, we will migrate this question there. (more) |
— | about 4 years ago |
Comment | Post #278899 |
I have reopened it since we do not have the Power User community yet. I still think it might fit better in such a community, but since it is still not yet live, I guess we can have it here. (more) |
— | about 4 years ago |
Edit | Post #278899 | Question reopened | — | about 4 years ago |
Comment | Post #278899 |
@Charlie Brumbaugh Yes, I think the context is important. I have little experience with working in Linux, but I assume the context used to issue the command (some tokens might not interpreted in the same way as when run from bash or similar). The context is also helpful to propose alternatives to ... (more) |
— | about 4 years ago |
Edit | Post #278899 | Question closed | — | about 4 years ago |
Comment | Post #278899 |
@Matthias Braun Welcome to Software Codidact. Unfortunately, your question does not seem related to software development. I have already proposed a community [for this type of questions](https://meta.codidact.com/questions/278833), but we are not ready yet. (more) |
— | about 4 years ago |
Edit | Post #278335 |
Post edited: |
— | about 4 years ago |
Edit | Post #278335 |
Post edited: |
— | about 4 years ago |
Comment | Post #278322 |
@pnuts Is it OK to rename [tickboxes] to [checkboxes]? It has the advantage that it makes sense also for many other application types. (more) |
— | about 4 years ago |
Edit | Post #278892 | Initial revision | — | about 4 years ago |
Question | — |
Phantom answer in my notification list My notification list includes the following entry: New answer to your question 'How many votes are required for special actions...' However, there is no answer for that question. I imagine that the author posted an answer and remove it, but as far as I know I am able to see delete posts. (more) |
— | about 4 years ago |
Edit | Post #278292 |
Post edited: added tag |
— | about 4 years ago |
Edit | Post #278208 |
Post edited: replaced with more specific tag |
— | about 4 years ago |
Edit | Post #278832 | Initial revision | — | about 4 years ago |
Question | — |
Should we get rid of [formula] tag and use more meaningful tags like [excel-formula] or [google-sheets-formula]? We currently have quite a few questions tagged with formula. However, [formula] seems so general that I am inclined to replace it to a more specific formula based on the context. Examples: - [excel-formula] - [google-sheets-formula] - [lotus-formula] Is it OK to perform this tag split? (more) |
— | about 4 years ago |
Edit | Post #278831 | Initial revision | — | about 4 years ago |
Answer | — |
A: Which abstraction should I choose for background services and why? I will provide an answer from a pragmatic perspective, rather than a direct answer to your question. This is particularly important when working on a real project (as opposed to homework). Short answer Try to use a third-party library instead of reinventing the wheel. Defining and managing back... (more) |
— | about 4 years ago |
Comment | Post #278780 |
@Lundin After reading the post, I did not see anything directly related to RAM memory (not sure, but memory management at application level normally deals with the virtual memory not with RAM directly). Indeed the answer argues about the RAM, but tagging applies to the question, not the answers. Feel... (more) |
— | about 4 years ago |
Edit | Post #277962 | Post undeleted | — | about 4 years ago |
Edit | Post #277962 | Post deleted | — | about 4 years ago |
Edit | Post #277860 |
Post edited: removed the inappropriate picture |
— | about 4 years ago |
Comment | Post #278782 |
Thanks for the comments, they provide great insight. Ref. to usage of ngrx/store: clearly overkill for this code alone, but this code is part of a much larger application where I have used this pattern. (more) |
— | about 4 years ago |
Comment | Post #277536 |
@jrh I have removed our last comments because they provide no value for the question. (more) |
— | about 4 years ago |
Edit | Post #277856 |
Post edited: added tag |
— | about 4 years ago |
Comment | Post #278780 |
@ArtOfCode I have made the edit 6h ago and I thought the same thing and waited and rechecked. So less likely to [blame the cache](https://shouldiblamecaching.com/). (more) |
— | about 4 years ago |
Edit | Post #278780 | Initial revision | — | about 4 years ago |
Question | — |
Schrödinger's tag - appears in view mode, but not in edit After removing two tags and adding another one for this question I have noticed that the tag list is not the same between view mode and edit: - View mode: stack-memory + heap-memory + ram + memory-management - Edit mode: stack + heap + memory-management Before editing the question, I have rena... (more) |
— | about 4 years ago |
Edit | Post #277536 |
Post edited: removed irrelevant tags + added one |
— | about 4 years ago |
Edit | Post #277474 |
Post edited: added tag |
— | about 4 years ago |
Comment | Post #278727 |
@Moshi [iis-urlrewrite] can be defined, but I would try to keep tags count as low as possible. By using [iis] and [url-rewritting], we have only two tags that are quite reusable. (more) |
— | about 4 years ago |
Edit | Post #277441 |
Post edited: added tag |
— | about 4 years ago |
Edit | Post #278755 | Initial revision | — | about 4 years ago |
Answer | — |
A: How to use LazyCache library with Unity Container? For LazyCache version 2.1.2 (maybe even earlier) UnityContainer must be instructed to call the default LazyCache constructor which probably relies on MemoryCache (default). container.RegisterType(new InjectionConstructor()); This worked with .NET Framework 4.6.1, Unity Abstractions 3.1.0. (more) |
— | about 4 years ago |
Edit | Post #278754 | Initial revision | — | about 4 years ago |
Question | — |
How to use LazyCache library with Unity Container? I want to use LazyCache and UnityContainer together in an ASP.NET classic application (.NET framework 4.6.1+). Namely, to be able to inject IAppCache in various services. For ASP.NET Core and its default DI container it is as easy as: services.AddLazyCache(); How can this be done with Un... (more) |
— | about 4 years ago |
Comment | Post #278727 |
@Monica Cellio - yes, you are right: there are two aspects. I would use url-rewritting + iis. (more) |
— | about 4 years ago |
Edit | Post #278668 |
Post edited: fixed the max width for UTF-8 |
— | about 4 years ago |
Comment | Post #278648 |
I will keep "What type of questions can I ask here?" section unchanged for a few more days and integrate the changes based on the support for each idea. (more) |
— | about 4 years ago |
Edit | Post #278728 | Initial revision | — | about 4 years ago |
Question | — |
Renaming sheets to the more specific google-sheets? sheets tag sounds a little bit too generic and I feel that it should be replaced with the more specific [google-sheets]. I know that we should avoid using company names as much as possible, but in this case, I think it will prevent confusion for anyone not familiar with the Google sheets (e.g. we ... (more) |
— | about 4 years ago |
Edit | Post #278727 | Initial revision | — | about 4 years ago |
Question | — |
Should we rename urlrewrite tag to url-rewriting? How do I get IIS UrlRewrite to handle CSS-delivered woff files appropriately? is the only question currently using urlrewrite tag. However, for future questions I would like to have a more general tag related to URL rewriting rather than the specific case of IIS URL rewriting. Is it OK to rena... (more) |
— | about 4 years ago |
Edit | Post #277375 |
Post edited: added tags |
— | about 4 years ago |
Edit | Post #277259 |
Post edited: added tag + using lower case tag names only |
— | about 4 years ago |
Edit | Post #278695 | Initial revision | — | about 4 years ago |