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 #284898 |
Post edited: |
— | over 3 years ago |
Comment | Post #284872 |
Yes, good idea. I have already edited the "How to ask a great question" section. I guess that if we want to change this section in a consistent way across the whole network, I guess that this can be announced in the moderator-lounge so that moderators apply the change to their community page. (more) |
— | over 3 years ago |
Edit | Post #277136 |
Post edited: added paragraph about avoiding images of code |
— | over 3 years ago |
Comment | Post #284904 |
That's an interesting idea. I would call them "properties" instead (this might be better for devs, but worse for the general population though). For each post type, we could define (only moderators and staff) what properties are allowed for its answers. Example: Software general posts can have a prop... (more) |
— | over 3 years ago |
Edit | Post #284872 |
Post edited: added SO source |
— | over 3 years ago |
Edit | Post #284872 | Initial revision | — | over 3 years ago |
Answer | — |
A: Why using images for code, errors, logs or similar should be avoided? There are multiple reasons why using images of code, errors, logs and other text resources used in programming instead of the actual text is strongly discouraged. Shortly put, the question should be written in a form that helps both the fellow community members to answer it (e.g. easy to copy-pas... (more) |
— | over 3 years ago |
Edit | Post #284871 | Initial revision | — | over 3 years ago |
Question | — |
Why using images for code, errors, logs or similar should be avoided? I have noticed that virtually any question containing an image of some code or error got a comment asking to replace it with the actual code, error text. Why is it so bad to include an image instead of the actual text? (more) |
— | over 3 years ago |
Edit | Post #284378 |
Post edited: Changed to on-topic list based on feedback |
— | over 3 years ago |
Edit | Post #284832 |
Post edited: added relevant tags |
— | over 3 years ago |
Edit | Post #284806 |
Post edited: removed non-applicable tag |
— | over 3 years ago |
Edit | Post #284811 |
Post edited: added relevant tags |
— | over 3 years ago |
Edit | Post #284806 |
Post edited: added relevant tag |
— | over 3 years ago |
Comment | Post #284806 |
Can you provide the actual waiting time for running your code? Example: run your code for 10K times and tell us how much it took to end. (more) |
— | over 3 years ago |
Comment | Post #284803 |
Can you please replace the picture of the code with the actual code? This helps with copy-paste of your code in order for folks to check it and provide an answer. (more) |
— | over 3 years ago |
Edit | Post #284803 |
Post edited: added the question from own answer in the original post |
— | over 3 years ago |
Edit | Post #284805 |
Post edited: removed the additional question from the answer |
— | over 3 years ago |
Edit | Post #284778 |
Post edited: added relevant tag |
— | over 3 years ago |
Comment | Post #284778 |
Hey, Fyoni! Welcome to Software Codidact.
I am not sure if I understand correctly. Do you want to display the cart items grouped by store, in a two-level tree (view)?
If this is what you want, please check [this](https://www.w3schools.com/howto/howto_js_treeview.asp) and [this](https://www.ph... (more) |
— | over 3 years ago |
Comment | Post #284747 |
Can you please also provide some explanation besides the code? This helps future readers understand the proposed solution. (more) |
— | over 3 years ago |
Comment | Post #278899 |
@#53023 Currently there is no automatic way to migrate a Q&A from a community to another. Can you please create a self-answered Q&A directly there (add a question, copy-paste from here, and add your answer to it)? Following this, I will edit the question here to include a link to the new location. Th... (more) |
— | over 3 years ago |
Edit | Post #284708 |
Post edited: added relevant tags |
— | over 3 years ago |
Edit | Post #284661 | Initial revision | — | over 3 years ago |
Answer | — |
A: What solutions available for a CMS-agnostic contact form? Besides the aforementioned solutions, Web components might be useful (can be reused in multiple contexts). Examples: - in Drupal - in ButterCMS - in Backdrop CMS - in WordPress However, if your form is not convoluted, I would also consider using the default form module provided by your CMS,... (more) |
— | over 3 years ago |
Edit | Post #284612 |
Post edited: encoded tag |
— | over 3 years ago |
Edit | Post #284646 |
Post edited: added relevant tag |
— | over 3 years ago |
Edit | Post #284612 |
Post edited: fixed the issue |
— | over 3 years ago |
Edit | Post #284612 | Initial revision | — | over 3 years ago |
Question | — |
Specify framework / library version in the answer As Stack Exchange (Stack Overflow mostly) is struggling to deal with outdated answers, they came with a proposal that we can learn from: Version labels for answers As already most of the feedback indicates, the proposed solution seems convoluted and thus hard to implement. Software Codidact... (more) |
— | over 3 years ago |
Edit | Post #284607 | Initial revision | — | over 3 years ago |
Question | — |
What are the disadvantages of using SQL Server Replication - Transactional Replication type? The context A reports related process is directly reading the production operational database once about two hours. This involves reading all the data from some 70 tables which takes a couple minutes to complete. My manager suggested that this is not OK and I concur also from a technical persp... (more) |
— | over 3 years ago |
Edit | Post #284444 |
Post edited: added relevant tag |
— | over 3 years ago |
Edit | Post #282832 |
Post edited: removed very broad question (What does OOP actually mean?) |
— | over 3 years ago |
Edit | Post #284554 |
Post edited: added relevant reference |
— | over 3 years ago |
Edit | Post #284554 | Initial revision | — | over 3 years ago |
Question | — |
Is there any justification for having a single tempdb database to be used by all databases on a SQL Server intstances? Despite the fact that I have programmed against SQL Server for quite a while I did not pay much attention to the `tempdb` database. This is especially true if application logic is mostly written using the ORM instead of stored procedure. However, I have just realized that the SQL Server architectu... (more) |
— | over 3 years ago |
Edit | Post #284553 | Initial revision | — | over 3 years ago |
Question | — |
Are there any downsides related to using Maybe or Optional monads instead of nulls? I have recently stumbled across the Maybe (or Optional) modal usage in .NET Code: - example code or this one - example article Based on everything I read, there are multiple advantages on relying Maybe instead of nulls: - no `NullReferenceException`s - leverage (some of) the functional p... (more) |
— | over 3 years ago |
Comment | Post #284549 |
@#53305 That's a good point and I have edited my answer. Thanks. (more) |
— | over 3 years ago |
Edit | Post #284549 |
Post edited: narrowed down the second point as suggested in the comments |
— | over 3 years ago |
Edit | Post #284549 | Initial revision | — | over 3 years ago |
Answer | — |
A: Why did my question get a downvote? For me the following reasons might lead to downvoting: - Posts that are not related to a specific programming issue, but are rather meant to start a discussion. Example - Asking for software products differences, unless it is directly connected to software development and asks about one or very... (more) |
— | over 3 years ago |
Edit | Post #284548 | Initial revision | — | over 3 years ago |
Question | — |
Why did my question get a downvote? Currently, there is no consensus about whether to provide tooltips for the voting buttons (especially the downvote one). However, the community now includes quite a lot of questions that attracted downvotes and sometimes this created long debates in comments and flagging. I would like for us to de... (more) |
— | over 3 years ago |
Edit | Post #284481 |
Post edited: added relevant tags |
— | over 3 years ago |
Edit | Post #284370 |
Post edited: added relevant tag |
— | over 3 years ago |
Edit | Post #284370 |
Post edited: replaced tag with a more relevant one |
— | over 3 years ago |
Edit | Post #284370 |
Post edited: removed non-applicable tag |
— | over 3 years ago |
Edit | Post #284357 |
Post edited: added relevant tag |
— | over 3 years ago |