Fanta
Fanta
CC#
Created by Not Garden on 11/2/2024 in #help
The best resources you used to learn C# in the beginning
I have many problems with interview methods, but my empty stomach won't let me
13 replies
CC#
Created by Not Garden on 11/2/2024 in #help
The best resources you used to learn C# in the beginning
And this is how I got into C#
13 replies
CC#
Created by Not Garden on 11/2/2024 in #help
The best resources you used to learn C# in the beginning
Also, I might be biased cause I failed a junior .NET developer interview but, when you make projects do learn specifics of the code that you end up writing. My interviewer was asking me for things like "difference between const and readonly", "what's the usage of the using statement, and what king of objects can we use" and he ended up saying that I'm entry level for him for not knowing language specifics. He also told me to stop jumping around languages and learn one really well as a beginner.
13 replies
CC#
Created by Not Garden on 11/2/2024 in #help
The best resources you used to learn C# in the beginning
You're insanely lucky that happened, I keep getting ignored for knowing X but not Y 😭
13 replies
CC#
Created by Not Garden on 11/2/2024 in #help
The best resources you used to learn C# in the beginning
I've been using https://www.amazon.com/C-Players-Guide-5th/dp/0985580151 alongside Codewars for practicing the syntax
13 replies
CC#
Created by ECS | DDmax500 on 11/2/2024 in #help
Learning further in C#
used a lot for data processing and querying
20 replies
CC#
Created by ECS | DDmax500 on 11/2/2024 in #help
Learning further in C#
it's basically part of C#
20 replies
CC#
Created by ECS | DDmax500 on 11/2/2024 in #help
Learning further in C#
20 replies
CC#
Created by ECS | DDmax500 on 11/2/2024 in #help
Learning further in C#
LINQ is huge to pick and become fluent with for data processing
20 replies
CC#
Created by ECS | DDmax500 on 11/2/2024 in #help
Learning further in C#
I'm currently working through a book called "C# the Player's Guide" and I went from the basics course to learning about LINQ
20 replies
CC#
Created by ECS | DDmax500 on 11/2/2024 in #help
Learning further in C#
while you're working through one of these you can also pick up OOP fundamentals (idk if you have another background) through something like https://www.freecodecamp.org/news/how-to-use-oop-in-c-sharp/
20 replies
CC#
Created by ECS | DDmax500 on 11/2/2024 in #help
Learning further in C#
furthermore, if that's also too intimidating (I can relate) I'd recommend you to read and code over some project here https://github.com/codecrafters-io/build-your-own-x to give you a non-boilerplate approach to building stuff. There's also https://app.codecrafters.io/courses/redis/overview that's free for this month (I plan to build this).
20 replies
CC#
Created by ECS | DDmax500 on 11/2/2024 in #help
Learning further in C#
$projects
20 replies
CC#
Created by ECS | DDmax500 on 11/2/2024 in #help
Learning further in C#
Since you are as new in C# as me I can recommend you to practice the language structures through either websites that exercise problem solving (codewars, hackerrank) or picking a projects list from the list that the bot uses let me see if it can be summoned here.
20 replies
CC#
Created by GreenMile on 11/2/2024 in #help
Menu Validation 'char input'
@GreenMile What Leo said is good advice. Also, unsure if you need it but, you can provide ReadKey() with a boolean true to make it so that the pressed key doesn't appear in the terminal.
char letter = Console.ReadKey(true).KeyChar;
Console.WriteLine(letter); // holds the character you pressed
char letter = Console.ReadKey(true).KeyChar;
Console.WriteLine(letter); // holds the character you pressed
12 replies
DDeno
Created by rahulpaul12 on 10/16/2024 in #help
As a JS beginner, should I learn Node.js first or go straight to Deno 2?
I used to overthink every option I had to work with, when I could just deepen my understanding in one thing. And then I realized that I was running around chasing job opening FOMO "Oh it's Django that sells" for a month, then "f$% that's a sweet FastAPI position I could've applied but went Django", "oh so many .NET openings I'll just learn a little .NET Core". The result is 1 month of experience 3 times instead of 3 months of experience with one thing.
10 replies
DDeno
Created by rahulpaul12 on 10/16/2024 in #help
As a JS beginner, should I learn Node.js first or go straight to Deno 2?
It doesn't matter, as long as you understand the domain fundamentals that carry over regardless of languages and frameworks
10 replies