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 #286307 Post edited:
fixed the attribution link
over 2 years ago
Edit Post #286304 Post edited:
added relevant tag
over 2 years ago
Edit Post #286302 Post edited:
added relevant tag
over 2 years ago
Edit Post #286276 Question closed over 2 years ago
Comment Post #286276 This question is not on-topic on Software Development. Please use the Power User site. Be sure to include any relevant details (what have you tried, error messages).
(more)
over 2 years ago
Edit Post #286275 Question closed over 2 years ago
Comment Post #286275 This question is not on-topic on Software Development. Please use the [Power User site](https://powerusers.codidact.com/). Be sure to include any relevant details (what have you tried, error messages).
(more)
over 2 years ago
Comment Post #286272 Thanks for letting us know about the underlying cause of your issue. Since you are still not happy with the solution and have another question, can you please post it separately?
(more)
over 2 years ago
Edit Post #286262 Post edited:
added minor note
over 2 years ago
Edit Post #286262 Initial revision over 2 years ago
Question What version of runtime environment does a .NET 5 application actually needs?
Our team deals with a legacy application that relies on a rather old deployment process and infrastructure: - we deploy the application on an environment very similar to the production called Clone. Clone is a Windows Server that has (among other versions) a version of .NET 5.0.x (e.g. .NET 5.0.16...
(more)
over 2 years ago
Edit Post #286256 Post edited:
added relevant tag
over 2 years ago
Edit Post #286196 Nominated for promotion over 2 years ago
Edit Post #286219 Post edited:
removed non-applicable tag
over 2 years ago
Comment Post #286210 Just a thought. I think imask complains because it is not the only managing input's value (what it displays), since NgbDatePicker is also trying to change it following date selection. Why not use [NgbDatePicker's](https://ng-bootstrap.github.io/#/components/datepicker/overview) formatting options ins...
(more)
over 2 years ago
Comment Post #286219 Actually, it is just something I have noticed and that needs to be taken into account when looking for a solution. It makes things more complicated when compared to all nodes being in DOM, but hidden.
(more)
over 2 years ago
Comment Post #286219 When clicking on a parent node, the child nodes are lazy-loaded (they do not exist in the DOM). Initial state ``` <div class="CategoryTreeChildren" style="display:none"></div> ``` After clicking (abbreviated): ``` <div class="CategoryTreeChildren" style=""> <div class="CategoryTree...
(more)
over 2 years ago
Comment Post #286216 Can you please also provide the HTML / the way it is built dynamically? Currently, the relationship between nodes and their children is not clear and it is needed to be able to go through the descendants and uncollapse through clicking.
(more)
over 2 years ago
Edit Post #286216 Post edited:
added relevant tag
over 2 years ago
Edit Post #286210 Post edited:
added relevant tag
over 2 years ago
Comment Post #286210 Can you please provide the relevant code? It is hard to fully understand the issue without it.
(more)
over 2 years ago
Edit Post #286176 Post edited:
added relevant tags + removed irrelevant ones
over 2 years ago
Edit Post #286163 Question closed over 2 years ago
Edit Post #286168 Initial revision over 2 years ago
Answer A: WPF MVVM ListBox not updating
I haven't worked in WPF for a long time, but you might try setting a new list (clone the old one and add the new element) instead of adding the element to the existing list: ```c# demo.Value++; var newList = new List(demo.AllValues); newList.Add(demo.Value); demo.AllValues = newList; OnProper...
(more)
over 2 years ago
Edit Post #286163 Post edited:
added relevant tags
over 2 years ago
Edit Post #286164 Post edited:
added relevant tag
over 2 years ago
Comment Post #286164 Does it work if you set a new list (clone the old one and add the new element) instead of adding the element to the existing list? (basically, the bound value is immutable)
(more)
over 2 years ago
Comment Post #286151 Please post your compilation errors as text, not as an image. Check [this post](https://software.codidact.com/posts/284871) for more details.
(more)
over 2 years ago
Edit Post #286135 Question closed over 2 years ago
Edit Post #286125 Post edited:
improved the title + minor fixes
over 2 years ago
Edit Post #286041 Nominated for promotion over 2 years ago
Edit Post #286065 Post edited:
removed non-applicable tag
over 2 years ago
Edit Post #286069 Initial revision over 2 years ago
Answer A: How to get rid of HTML tags and convert entities in SQL Server?
One way is to create a scalar function that takes an NVARCHAR(MAX) input and performs the following operations: - replaces frequent tags with they plain text equivalent (e.g. `` with chars 13 + 10) - replaces spacial entities with their correspondent UTF character (e.g. `&copy;` with `©`) - comp...
(more)
over 2 years ago
Edit Post #286068 Initial revision over 2 years ago
Question How to get rid of HTML tags and convert entities in SQL Server?
I have to migrate a bunch of text from an old application into a new one. Some of these texts contain HTML tags and entities (HTML editor was used) and now they do not want to support this in the new application. How to get rid of the tags and transform the HTML entities?
(more)
over 2 years ago
Comment Post #286065 I am wondering if it works if you change the server-side "reload" to a [client-side one](https://developer.mozilla.org/en-US/docs/Web/API/Location/reload): `location.reload()`
(more)
over 2 years ago
Comment Post #286065 I have not programmed in PHP for ages, but looking [at the docs](https://www.php.net/manual/en/function.setcookie.php) it seems that "Once the cookies have been set, they can be accessed on _the next page load_ with the $_COOKIE array." Your code seems to immediately redirect and the cookies array mi...
(more)
over 2 years ago
Edit Post #285946 Nominated for promotion over 2 years ago
Edit Post #282226 Post edited:
added relevant tags
over 2 years ago
Comment Post #286047 I am not working with a Java IDE, but I am wondering if you have the option to place a breakpoint for `x.foo` and step over it (might also work with dragging current execution point to a subsequent instruction).
(more)
over 2 years ago
Edit Post #286047 Post edited:
added relevant tag
over 2 years ago
Edit Post #286045 Post edited:
removed useless reference to another user
over 2 years ago
Comment Post #286041 [This article](https://www.danielsieger.com/blog/2021/01/03/generating-platonic-solids.html) might be useful in getting a more generic way of building a dodecahedron.
(more)
over 2 years ago
Edit Post #286041 Post edited:
add/remove tags
over 2 years ago
Edit Post #286031 Post edited:
added relevant tag
over 2 years ago
Edit Post #286027 Post edited:
using existing tag
over 2 years ago
Edit Post #286029 Initial revision over 2 years ago
Answer A: How to create an object, call one of it's methods and pass it as an argument as a oneliner?
If you do not mind having so much code on a single line, the builder pattern might be useful here. Something along the lines: Note: the example is adapted based on an implementation I have done in a .NET and deviates from the canonical example shown in the reference. Define the builder ```ja...
(more)
over 2 years ago