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 #287255 Question closed about 2 years ago
Comment Post #287255 I have edited your question to include the error message (which should be added in the question, not an answer). Can you provide more details such as the application type, relevant package versions, etc.? Without it, it is hard to receive an answer and the question will be closed.
(more)
about 2 years ago
Edit Post #287255 Post edited:
added details from answer
about 2 years ago
Edit Post #287235 Post edited:
added relevant tag
about 2 years ago
Edit Post #287242 Post edited:
added a side note
about 2 years ago
Edit Post #287242 Initial revision about 2 years ago
Answer A: How to refer to the same class twice from one Entity Framework entity?
I tried to replicate your case and the only workable solution I could find is to use OnModelCreating configuration (fluent style) instead of attributes: ```c# public class Contestant { public int Id { get; set; } public int AvatarID { get; set; } public virtual Picture? Avatar { get; ...
(more)
about 2 years ago
Edit Post #287152 Nominated for promotion about 2 years ago
Comment Post #287152 Never worked with Lua, but [this page](https://www.gammon.com.au/scripts/doc.php?lua=os.rename) suggests that the function returns two values: `ok, message = os.rename (oldname, newname)`. Does it work to fetch a message in this case and thus receive (hopefully) an error?
(more)
about 2 years ago
Edit Post #287152 Post edited:
added relevant tag
about 2 years ago
Comment Post #286910 @#54029 That's a good suggestion and this is currently being [discussed on meta](https://software.codidact.com/posts/287107). You might refine your comment and post it as an answer there.
(more)
about 2 years ago
Edit Post #287107 Initial revision about 2 years ago
Question Should asking about book recommendations directly connected to software development be on-topic?
Context We have recently received a suggestion to allow questions about recommending books directly connected to software development. The way I see this now (pros and cons) Pros: - allow more questions that help software developers Cons: - tend to be open-ended, unless there is not a...
(more)
about 2 years ago
Comment Post #286976 I have forked a StackBlitz from Angular docs and it seems to work as expected: https://stackblitz.com/edit/angular-c2kmlm?file=src/app/datepicker-locale-example.html
(more)
about 2 years ago
Edit Post #287010 Post edited:
about 2 years ago
Comment Post #287010 Do you receive any of those authentication errors when "it works" (Angular app renders something)? Anyway, this seems more of a networking issue rather than a software development one. [Power users Codidact](https://powerusers.codidact.com/) deals with such questions.
(more)
about 2 years ago
Comment Post #287009 http://acuriostudi.apps.cloud.local/api-hub/api-hub/designs is not solved for me. Also, this is an HTTP URL and your error suggests that an HTTPS resource (port 443 instead of 80) is used.
(more)
about 2 years ago
Edit Post #286974 Nominated for promotion about 2 years ago
Edit Post #286974 Post edited:
added relevant tag
about 2 years ago
Edit Post #286940 Post edited:
added relevant tag
about 2 years ago
Edit Post #286910 Post edited:
removed tag
about 2 years ago
Edit Post #286934 Post edited:
Made the title more specific + added relevant tag
about 2 years ago
Edit Post #286911 Nominated for promotion about 2 years ago
Edit Post #286813 Post edited:
added status
about 2 years ago
Comment Post #286910 We currently consider asking for recommendations [offtopic](https://software.codidact.com/help/on-topic).
(more)
about 2 years ago
Edit Post #286910 Question closed about 2 years ago
Edit Post #286904 Post edited:
Put a more relevant title
about 2 years ago
Edit Post #286813 Post edited:
fixed the tag name
over 2 years ago
Edit Post #286813 Post edited:
added resolution
over 2 years ago
Edit Post #286895 Post edited:
cleanup up the title a little bit
over 2 years ago
Comment Post #286884 When do you receive the error? Is it a runtime error or a build error? I am wondering if the issue is not related to [the one described here](https://stackoverflow.com/questions/49820069/how-to-change-uwp-app-folder-name-or-path).
(more)
over 2 years ago
Edit Post #286876 Post edited:
added relevant tag
over 2 years ago
Edit Post #286876 Post edited:
clarified what programming language we are dealing with
over 2 years ago
Comment Post #286813 Yes, data-presentation sounds OK.
(more)
over 2 years ago
Edit Post #286861 Post edited:
added extra information based on received feedback
over 2 years ago
Edit Post #286849 Nominated for promotion over 2 years ago
Edit Post #286861 Initial revision over 2 years ago
Question Renaming GNU/Linux tag to gnu
I have noticed that we have several questions tagged with GNU/Linux. I would like to rename this tag to gnu to reflect what seems to be the canonical name and also be consistent with tag naming (all letters are lowercase, avoid slashes). Based on provided answers, I know consider the following ...
(more)
over 2 years ago
Edit Post #286789 Nominated for promotion over 2 years ago
Edit Post #286835 Post edited:
added relevant tags
over 2 years ago
Edit Post #286817 Nominated for promotion over 2 years ago
Edit Post #286813 Initial revision over 2 years ago
Question Dealing with table tag
This question which is tagged with table tag. I am trying to find a better replacement for it since there are multiple types of tables such as HTML tables or data tables. The question seems to refer to a table displayed within a graph (a rendered table), but I am not sure how to tag such a tabl...
(more)
over 2 years ago
Edit Post #286726 Nominated for promotion over 2 years ago
Edit Post #286764 Nominated for promotion over 2 years ago
Edit Post #286776 Nominated for promotion over 2 years ago
Edit Post #286720 Post edited:
highlighted the core answer for the question (TL;DR)
over 2 years ago
Edit Post #286715 Initial revision over 2 years ago
Question Working with a generic class that uses a type that should be of generic type
I have followed Nick Chapsas' tutorial to avoid throwing a ValidationException to treat validation errors and instead rely on `LanguageExt.Common.Result<>` from LanguageExt library. I have managed to develop a working solution that relies on MediatR (which uses queries, commands and validators fo...
(more)
over 2 years ago
Edit Post #286713 Post edited:
clarified that the steps were manually performed
over 2 years ago