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.

Posts by FoggyFinder‭

14 posts
81%
+7 −0
Q&A Find the name of the student with the top mark, display their name and mark

That's nice that you're provided your attempts but, as it was already mentioned in comments, it would be better to show us all the parts. Again, if you're not sure how to write it properly in C# th...

posted 2y ago by FoggyFinder‭

Answer
77%
+5 −0
Q&A How to dynamically change panel of ItemsControl?

Let's say I have some collection of data. My goal is to provide different kind of view of ItemsControl depending on user`s preference. For simplicity, we can assume that user can select only betwe...

1 answer  ·  posted 2y ago by FoggyFinder‭  ·  edited 2y ago by FoggyFinder‭

Question c# .net mvvm avalonia
75%
+4 −0
Meta An edit creates a new tag instead of adding correct one

History of edits to the Q shows that status-bydesign tag was added but instead a new status-by-design tag is created.

1 answer  ·  posted 2y ago by FoggyFinder‭  ·  edited 2y ago by luap42‭

71%
+3 −0
Code Reviews C# WPF MVVM View & Get new record values

Some thoughts: Consider using Github (or something like that, but I suggest Github due to its popularity) to share the project. It allows us not only to write some code but open PR with sugges...

posted 3y ago by FoggyFinder‭

Answer
71%
+3 −0
Meta Can we migrate office suite related questions to the Power Users community?

My vote is also for moving such Qs. Main arguments: PU already contains some Qs related to office suite and they're OnTopic there. This kind of Qs doesn't fit well to software development. So i...

posted 3y ago by FoggyFinder‭  ·  edited 3y ago by FoggyFinder‭

Answer
71%
+3 −0
Q&A How to dynamically change panel of ItemsControl?

This isn't the cleanest approach but at least it works. One can define two different templates (each of them contains ItemsControl with single difference in ItemsPanelTemplate) and switch between ...

posted 2y ago by FoggyFinder‭

Answer
66%
+2 −0
Q&A How to filter data from the view using MVVM Pattern?

I wrote quick (and somewhere dirty) example to show one of possible approaches: Add properties corresponding to each filter: private string productCode; private string productDescription; ...

posted 3y ago by FoggyFinder‭

Answer
66%
+2 −0
Q&A Saving modified data in gridview on clicking SaveButton

Well, actually I didn't use SqlAdapter to work with DB since I prefer using ORM or write everything by myself (without DataSet, DataTable, SqlAdapter, etc) but I still can give some advices. Here,...

posted 2y ago by FoggyFinder‭

Answer
66%
+2 −0
Meta console.readline tag does not look good to me

While I tend to agree with @Alexei that reading from the standard input is quite a common issue I also think that console.readline tag is too narrow and therefore it shouldn't exists. On the other...

posted 2y ago by FoggyFinder‭

Answer
66%
+2 −0
Q&A Where is the `.fsproj` project file documented?

No, there is no single page. Simple answer - different project requires specific properties. For example, building a mobile app you'd be interested in whether NativeAot is enabled or not. More sp...

posted 5mo ago by FoggyFinder‭

Answer
60%
+1 −0
Q&A Get the length of a slice from a multi-dimensional array

You can use Array.GetUpperBound method Gets the index of the last element of the specified dimension in the array. and Array.GetLowerBound one accordingly. var arr = new int[,]{ { 1, 2 ...

posted 2y ago by FoggyFinder‭

Answer
60%
+1 −0
Q&A Updating the database reverses previous changes

Disclaimer: I don't work with EF therefore not an expert. EF is tricky and has a lot of dark magic inside so if you're not sure how it all works best to use good old plain SQL or simple libraries....

posted 11mo ago by FoggyFinder‭  ·  edited 11mo ago by FoggyFinder‭

Answer
60%
+1 −0
Q&A How to automatically add package reference into project file after installing .NET package?

Once the package is installed (either with nuget or paket), I have to manually add a reference to the project file (either by editing it directly or with dotnet add package). You don't have to...

posted 5mo ago by FoggyFinder‭  ·  edited 5mo ago by toraritte‭

Answer
33%
+1 −4
Meta Should I post a link to the Github repo for code reviews?

Total noob here and noob to this site. I've written a non-trivial program in Python. I'm the only one who see contradiction here? Anyway, posting link to GitHub repo is absolutely appropriate....

posted 2y ago by FoggyFinder‭

Answer