C
C#9mo ago
AceChewy

❔ Desktop Application Ideas

I'm currently trying to build a messaging app, Solaris, and whilst it's been interesting learning bits and pieces of code, concepts and structures in order to get it to work, as a beginner it's been hard. I plan to finish the app since I know a messaging app could look good on my portfolio but I'm going to take a bit of a break. And so I was wondering whether any had any suggestions for some desktop applications I could make( which could or could not be used for a portfolio). I want to make ones with a GUI (WPF) to practise, but if there are any good recommendations which work as well as a command line app, then that would be great too
38 Replies
Hazel 🌊💃
Hazel 🌊💃9mo ago
For starters, anything can be part of your portfolio. I have a sandbox project that started as a portfolio item. I use it to test out new ideas (always have), and having that around introduced some quality talking points around lessons learned. For recommendations on what you could work on, we really need to have an idea as to your current skill level. Otherwise you'll get recommendations from every end of the spectrum. We assume you're a beginner, or at least a junior in experience level, so understanding where you are really helps us give you relevant suggestions. What would you say you excel at, and what do you struggle with?
Pobiega
Pobiega9mo ago
I'll throw the "list of project ideas" on you, so give it a look. Some things might be too hard or too trivial, but it will hopefully give you some inspiration: $projects
MODiX
MODiX9mo ago
Collections of application ideas that anyone can solve in any programming language to improve coding skills: https://github.com/dotnet/dotnet-console-games https://github.com/karan/Projects https://github.com/florinpop17/app-ideas
arion
arion9mo ago
https://appideagenerator.com is also a nice alternative
App Idea Generator
App Idea Generator is a tool for generating the best and most unique app ideas for your enjoyment.
arion
arion9mo ago
Though the ideas may be a bit weird
AceChewy
AceChewy9mo ago
Fairly new to C#, started at the end of may of this year and have been doing a bit here and there whilst still going to school. I'm getting more comfortbale with algorithms, data structures and OOP. I've done some basic WPF. I'd say SQL is probably my biggest weakness since I've struggled most with that when making programs
Pobiega
Pobiega9mo ago
No problem, you can let EF Core handle all the SQL for you and still write applications that use databases
AceChewy
AceChewy9mo ago
Honestly, I'd say APIs and other services in general have been the most confusing. I understand the concept but how specifc ones work has been a bit hard to wrap my head around
Pobiega
Pobiega9mo ago
I mean, how a specific API works is.. well, specific to that API 😄 some are well designed. some are not
Hazel 🌊💃
Hazel 🌊💃9mo ago
Can confirm, I integrate with APIs all day every day at work. We currently have 23 that we interact with, and each one does everything differently.
arion
arion9mo ago
EF Core is definitely an API that you'd wanna learn since it makes database interactions nicer via LINQ-style queries
Pobiega
Pobiega9mo ago
while I fully agree, I don't think the OP is using that broad of a definition of API in this context
arion
arion9mo ago
whoops xD
AceChewy
AceChewy9mo ago
Can confirm
Hazel 🌊💃
Hazel 🌊💃9mo ago
If you believe you struggle with SQL, and you want to strengthen your skillset there, then perhaps going back to the basics (such as a simple TODO app) and using SQL to power it would be a good start.
Pobiega
Pobiega9mo ago
TODO app (desktop or CLI) with SQLite is an excellent idea for practice. You can do something simple, then scale it up in complexity
AceChewy
AceChewy9mo ago
I think I made a very simple one that you helped me with a bit I think I could add some more features tbh
Pobiega
Pobiega9mo ago
look at https://taskwarrior.org/ as an example for advanced usages assuming CLI here
AceChewy
AceChewy9mo ago
Any ideas for programs/uses that will help me get more comfortable with data strucutes eg hash sets, stacks, queues? I
Hazel 🌊💃
Hazel 🌊💃9mo ago
For example, since you also feel a lack of understanding with APIs, you could also add an API to the mix later and have it handle the SQL interactions on behalf of your TODO app instead of doing them directly.
Pobiega
Pobiega9mo ago
Mostly used with algorithms perhaps you would enjoy doing some Advent of Code puzzles?
Hazel 🌊💃
Hazel 🌊💃9mo ago
Though, wait until you get the SQL part down first so you don't overwhelm yourself 😄
AceChewy
AceChewy9mo ago
Perfect time to practise before this year's event Will do
Pobiega
Pobiega9mo ago
thats another excellent idea from hazel - most apps today are backed by their own APIs so you get to do things the "modern" way and also practice on writing and using APIs
AceChewy
AceChewy9mo ago
Thanks for all the advice, I'll think about what I want to tackle first and go one from there
Hazel 🌊💃
Hazel 🌊💃9mo ago
One last point; depending on your confidence level, there's no harm in just creating a simple "hello world" setup: - A console app that interacts with your API. - An API with a single endpoint which returns "Hello, world!" for you to print in your console. Then, once you have that down, move the "Hello, world!" to a database table and query it from the endpoint, to get practice with SQL. You could do that before your TODO app to get more comfortable with terminology and project setup/interaction. Best of luck!
Pobiega
Pobiega9mo ago
baby steps, one step at a time
AceChewy
AceChewy9mo ago
Got it
Iron
Iron9mo ago
Also, always finish what you started, or you will end up in a loop yourself
AceChewy
AceChewy9mo ago
Of course Any of you know how I can save this thread and not have to dig through the channels?
Pobiega
Pobiega9mo ago
Not really possible afaik. I'd copy the entire thread if I were you
arion
arion9mo ago
You could save it based off-of the thread id. 1165985728455508008 #Desktop Application Ideas - Save the id (the 11659... number) - Paste <#1165985728455508008> somewhere you wanna use it from (private server or dm) and it will create a link to this thread that looks like this: #Desktop Application Ideas Just remember that you can't access threads in servers you're not in (So don't leave town xD) When threads are archived (after around 7-21 days of inactivity) their links might appear like this (screenshot below) Clicking the link won't do anything on mobile, but I have checked on the web browser and clicking the link does take you to that archived thread to view it.
No description
AceChewy
AceChewy9mo ago
Ah ok, thanks
arion
arion9mo ago
Either that or say a sentence that you've never said before, and search the server searchbox
AceChewy
AceChewy9mo ago
That could work
Accord
Accord9mo ago
Was this issue resolved? If so, run /close - otherwise I will mark this as stale and this post will be archived until there is new activity.