Denis
Denis
CC#
Created by illusioncloud on 1/17/2025 in #help
Copy paste detector
I believe codefactor.io is an alternative to sonarqube. See what they have to offer, maybe it has what you need
8 replies
CC#
Created by Emirka on 1/15/2025 in #help
Learn help
Try the programmingbuddies subreddit
7 replies
CC#
Created by Jexs on 12/2/2024 in #help
How do i start?
The nice thing is, once you create the individual systems (e.g., navigation, or multilingual support), you can reuse them for your next project
5 replies
CC#
Created by Jexs on 12/2/2024 in #help
How do i start?
The project itself isn't that complicated, if we omit the server part. The issue is MVVM. Its a wonderful architecture for developing decoupled applications; however, it has a steep learning curve. If your goal is to learn WPF, the. I recommend starting with a smaller simpler project (which you could then incorporate in your larger project), so that you focus on the difficult part which is MVVM
5 replies
CC#
Created by Jexs on 12/2/2024 in #help
How do i start?
That's quite a lot of things you have to cover: - create a navigation system to change between views/pages - create an authentication system (what are you logging into? Is it your server or someone else's?) - create a server if the previous point requires it (this is not beginner friendly imo) - create views and viewmodels for: - login - notes - calculator - main page for choosing between notes and calculator With the server you'll have to handle querying, locking notes for editing such that a different user does not change it while you are editing the notes, and authentication system, user creation and removal. At the very least. If you have 0 experience with WPF, then this is a leap of a project. I recommend starting small, just create the calculator using WPF and proper MVVM. For MVVM I highly recommend checking out Community Toolkit MVVM. If you have no C# knowledge, then I suggest $helloworld
5 replies
CC#
Created by Kek on 10/13/2024 in #help
MVVM should model items have INotify?
I can say that there's nothing wrong in making a model observable. The viewmodel must inherently be observable, but it also contains business logic, commands and so on. A model; however, should just represent data. So, no business logic, no commands, no methods (apart from equality, cloning, etc.). This doesn't mean you can't make the model observable. Otherwise you'd be forced write a ton of unnecessary viewmodels that'd shadow your models, only to add observability. In some cases this is a valid approach. E.g., a validated form for creating a record in the db
10 replies
CC#
Created by Kek on 10/13/2024 in #help
MVVM should model items have INotify?
Some time ago I've asked the same question here.
10 replies
CC#
Created by tonir66 on 10/7/2024 in #help
Hello i have a question i am trying to display this text on my game but it doesnt work can anyone h
$unity
5 replies
CC#
Created by Pedro Gil Mora on 10/7/2024 in #help
Dictionary vs switch in source generated code
Switch expressions return the delegate which you can then execute
52 replies
CC#
Created by Pedro Gil Mora on 10/7/2024 in #help
Dictionary vs switch in source generated code
Switch expressions is a different way of writing switches, in case that's where the confusion comes from
52 replies
CC#
Created by shiningvictory on 10/5/2024 in #help
✅ Hey IDK how to use NetSpell
Whenever a library has poor documentation I search all of github for usages of said library to find examples
5 replies
CC#
Created by MoBomba on 10/4/2024 in #help
✅ None of my stuff is being pushed to my repository on github.
$details
10 replies
CC#
Created by MoBomba on 10/4/2024 in #help
✅ None of my stuff is being pushed to my repository on github.
I'm guessing you didn't setup your git name and email
10 replies
CC#
Created by Denis on 9/26/2024 in #help
✅ Distributed transactions
Thank you for the suggestion! I'll check it out
15 replies
CC#
Created by Denis on 9/26/2024 in #help
✅ Distributed transactions
Not sure how this is relevant though
15 replies
CC#
Created by Denis on 9/26/2024 in #help
✅ Distributed transactions
The product is installed on prem. It can find itself in a corporate environment or a small business with barely any IT.
15 replies
CC#
Created by Denis on 9/26/2024 in #help
✅ Distributed transactions
Please clarify what is meant by ecosystem? The server is an ASP.NET Core application exposing an gRPC API. The clients are whatever connects to said API. However, I think this isn't quite relevant
15 replies
CC#
Created by Denis on 9/26/2024 in #help
✅ Distributed transactions
By write I mean any write operation in general, but let's say it's a SQL database supporting transactions
15 replies
CC#
Created by Denis on 9/26/2024 in #help
✅ Distributed transactions
I mean that the server dies, the connection is interrupted physically, or an unexpected exception is thrown
15 replies
CC#
Created by tonir66 on 9/20/2024 in #help
Hello i have a question
$unity
4 replies