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
Edit Post #278576 Post undeleted over 3 years ago
Edit Post #277262 Post undeleted over 3 years ago
Comment Post #281859 Both. However, I think the tooltips are the quick win because they are shorter and more accessible (I expect that the tooltips are read more often than a particular help page). This would hopefully help the users understand why their questions/answers are getting downvotes.
(more)
over 3 years ago
Edit Post #281859 Initial revision over 3 years ago
Question Do we need more specific up/down vote reasons for Software Development community?
The help center includes a rather generic (it's the same for all communities) article about voting. Recently a user flagged a question asking why it had received so many downvotes. While flagging is not for this type of issue, this made me wonder if users are aware of how upvote and downvote are s...
(more)
over 3 years ago
Edit Post #281817 Post edited:
added relevant tags
over 3 years ago
Edit Post #281853 Initial revision over 3 years ago
Question How to generate multi-line completions (code generation) with OpenAI?
I have finally received access to a trial account on OpenAI and I took it for a spin. My interest is with code generation, so first tried something simple using the playground: ``` Q: generate a standard model for Foo A: public class Foo { public int Id { get; set; } pu...
(more)
over 3 years ago
Edit Post #281797 Post edited:
added more information
over 3 years ago
Edit Post #281797 Initial revision over 3 years ago
Question What are the risks of using iFrame as a temporary migration step for an internal web application?
Overview Our development team is currently trying to develop and migrate a Web application that is split in two: - legacy: ASP.NET MVC 5, jQuery, old-style JS programming overall - "next": Angular SPA + ASP.NET Core 5 Each application has its own domain, but they are accessible only intern...
(more)
over 3 years ago
Comment Post #281762 This question is being referenced by [a Power Users meta post](https://powerusers.codidact.com/posts/281782).
(more)
over 3 years ago
Edit Post #281784 Initial revision over 3 years ago
Question Can we migrate office suite related questions to the Power Users community?
Power Users has just been launched and I remember that Software Development has some content related to office suite usage (example). Is it OK to migrate these questions to the Power Users community?
(more)
over 3 years ago
Comment Post #281762 I will try to migrate this to the newly created [Power Users community](https://powerusers.codidact.com/), but I will have to clarify if it is on-topic there.
(more)
over 3 years ago
Edit Post #281762 Question closed over 3 years ago
Edit Post #281762 Post edited:
over 3 years ago
Edit Post #281762 Post edited:
Replaced title with a clear question
over 3 years ago
Comment Post #281640 @Lundin Please check the "what types of questions can I ask here" on its [help page](https://software.codidact.com/help/on-topic). Of course, it is not set in stone, so yes, it is still open for suggestions. Please use a separate meta question to suggest improvements for it.
(more)
over 3 years ago
Edit Post #281730 Question closed over 3 years ago
Comment Post #281730 Welcome to Codidact. Unfortunately, the question is not on-topic unless you include a reference to the algorithm used by tradingview (btw - the link is broken for me) to compute the exponential moving average (EMA) indicator.
(more)
over 3 years ago
Comment Post #281663 Isn't INFORMATION_SCHEMA generated based on the actual database objects (tables, views, security)? I expect that by recreating those objects at the destination to also get the metadata in INFORMATION_SCHEMA.
(more)
over 3 years ago
Edit Post #281624 Initial revision over 3 years ago
Answer Etiquette for posting comments
Generally speaking, comments should be helpful feedback and the following are not exhaustive lists. Can include - asking for question clarification. Examples: "what was the output of line X?", "can you include the stack trace?", "can you provide a reference for the second paragraph?" - explain...
(more)
over 3 years ago
Edit Post #281616 Initial revision over 3 years ago
Answer A: Is this a known design pattern: a piece of code is responsible for acting as a central proxy for data distributed in various places?
General information As indicated in the comments you are looking for something similar to the Facade pattern. It is still not clear what you are trying to achieve, but the X class seems that it will tackle way too many things. In order to avoid adding a lot of logic in one class (even if it on...
(more)
over 3 years ago
Comment Post #281606 X class (instance) seems like a [God object](https://en.wikipedia.org/wiki/God_object) to me. Why do you need to centralize so much heterogenous functionality in one place?
(more)
over 3 years ago
Edit Post #281605 Post edited:
added tsql tag
over 3 years ago
Comment Post #281606 This is an interesting question. I am thinking of something like Redux which deals with state management. It would be useful if you can provide a simple example like 3 classes with 3 data types to understand the nature of your application (e.g. is the data related to the state or is it something else...
(more)
over 3 years ago
Edit Post #281605 Initial revision over 3 years ago
Question How to easily support time frame grouping in queries?
I had a curiosity about how much the experienced users wait for their questions to be answered on Stack Overflow and had written a query for it: ``` SELECT YEAR(q.CreationDate) 100 + MONTH(q.CreationDate) AS YM, COUNT(1) Cnt INTO #acte FROM Posts AS q INNER JOIN Users qu ON qu.Id = q.Owne...
(more)
over 3 years ago
Edit Post #281604 Initial revision over 3 years ago
Answer A: Etiquette for posting comments
Before posting this on the help pages, I will compile the feedback in a separate answer. Generally speaking, comments should be helpful feedback and the following are not exhaustive lists. Can include - asking for question clarification. Examples: "what was the output of line X?", "can you i...
(more)
over 3 years ago
Edit Post #281566 Post edited:
over 3 years ago
Edit Post #281566 Post edited:
fixed the old text
over 3 years ago
Edit Post #281566 Post edited:
added response to the actual question
over 3 years ago
Edit Post #281566 Initial revision over 3 years ago
Answer A: Save migration info in separate DB schema
If you want to use a custom entity framework migration table, you can set it when configuring the database context as shown here: ``` // this code belong to the database context class protected override void OnConfiguring(DbContextOptionsBuilder options) => options.UseSqlServer( co...
(more)
over 3 years ago
Comment Post #281565 However, I think that we could minimize conflict by replacing some comments with downvoting (e.g. for no research or effort) or flagging (e.g. for seriously wrong content such as homework dumps). I do not see how endless debates in comments help with removing bad content.
(more)
over 3 years ago
Comment Post #281565 Yes, I agree that snark is very hard to define. Also, agree that SO policy of being way too welcoming is not beneficial for the advanced users (e.g. in the last two years, I could not get any serious question being answered unless I placed a bounty).
(more)
over 3 years ago
Edit Post #281560 Post edited:
added call for action
over 3 years ago
Edit Post #281560 Initial revision over 3 years ago
Question Etiquette for posting comments
This question featured a quite heated discussion in the comments which led to some of them being removed. This action was discussed here and I have realized that our community lacks a guide about posting comments. I would like for us to build together a list of topics we can include and avoid resp...
(more)
over 3 years ago
Comment Post #280112 Recently, a major Node.js upgrade (12 -> 14) on a target server required the removal of the `node_modules`. Other than that, no need to remove it.
(more)
over 3 years ago
Comment Post #281539 Thank you for providing this answer. I will soon ask a question on meta about how to add comments (what is OK and what is not OK) so that the community can reach a consensus about this topic. Anyway, I agree that being digressive is sometimes necessary.
(more)
over 3 years ago
Comment Post #281517 This question is being discussed on [meta](https://software.codidact.com/posts/281528).
(more)
over 3 years ago
Edit Post #281531 Post edited:
fixed the link
over 3 years ago
Comment Post #281530 @meriton However, your second comment mostly deals with the poster's asking style rather than the post itself. I hope that I am clearer now. Normally, I would have moved the comments to a separate chat (comments are not meant for long conversations between users), but this option is not available her...
(more)
over 3 years ago
Comment Post #281530 @meriton This is not what I have said. What I have said is that feedback (regardless of being negative or not) should be constructive. Your first comment provides such feedback by suggesting in a nice way to check a reference before asking the question, because it seems that the information is easy t...
(more)
over 3 years ago
Edit Post #281531 Initial revision over 3 years ago