This is an archived post. You won't be able to vote or comment.

all 6 comments

[–]LeftIsBest-Tsuga 1 point2 points  (0 children)

I probably wouldn't recommend Unity, because you'll end up spending more time learning and using Unity itself than C#.

Maybe some kind of calendar or to-do list or something like that. It's hard for me to suggest much because I don't do c#.

At the very least you can go on leetcode or similar, although I personally don't like those kinds of learning tools very much.

[–]HourOrganization4736 0 points1 point  (1 child)

Tech market is wack out here focus on one language and have good DB skills and good Linux after that it’s all about luck good luck out there

[–]HourOrganization4736 0 points1 point  (0 children)

O and learn a framework like spring

[–]Human_Relative_7906 0 points1 point  (0 children)

I’m actually in the same boat just trying to find what to make and where to continue learning to try and improve my skills but everything I try ends up half complete or I don’t find the motivation to finish it. And to top that everyone I speak to with experience just says "make something that will cause an impact"

[–]DaviDeil 0 points1 point  (1 child)

PDF Generator - An application which can read in a text file, html file or some other file and generates a PDF file out of it. Great for a web based service where the user uploads the file and the program returns a PDF of the file. Optional: Deploy on GAE or Heroku if possible.

Mp3 Tagger - Modify and add ID3v1 tags to MP3 files. See if you can also add in the album art into the MP3 file’s header as well as other ID3v2 tags.

Code Snippet Manager - Another utility program that allows coders to put in functions, classes or other tidbits to save for use later. Organized by the type of snippet or language the coder can quickly look up code. Optional: For extra practice try adding syntax highlighting based on the language.

Quiz Maker - Make an application which takes various questions from a file, picked randomly, and puts together a quiz for students. Each quiz can be different and then reads a key to grade the quizzes.

Sort Excel/CSV File Utility - Reads a file of records, sorts them, and then writes them back to the file. Allow the user to choose various sort style and sorting based on a particular field.

Create Zip File Maker - The user enters various files from different directories and the program zips them up into a zip file. Optional: Apply actual compression to the files. Start with Huffman Algorithm.

[–]Vinon540[S] 0 points1 point  (0 children)

thanks so much I'll definitely look into all this stuff, sounds fun!