HOW TO PROGRAM - Getting Started!

Поділитися
Вставка
  • Опубліковано 26 лис 2024

КОМЕНТАРІ • 5 тис.

  • @waffelju395
    @waffelju395 4 роки тому +2236

    "Hello World"
    oh dear, here begins the journey of every programmer

    • @09Drdray
      @09Drdray 4 роки тому +18

      I found it a little ominous

    • @rayne6871
      @rayne6871 4 роки тому +7

      Even in RS.

    • @roborbiettinoisgone392
      @roborbiettinoisgone392 4 роки тому +55

      Actually, my journey started with
      "hayo idiot, what's your name"
      Then an input where you wold write your name.
      Depending on the name, he would instult you in some way.
      Being 12, I liked making code fun

    • @acs-shannonmariebaker5735
      @acs-shannonmariebaker5735 4 роки тому +3

      LOLOL I learned that on an old Texas Instrument and/or Commodore lol like 100 years ago! LOL not really, but feels like it.

    • @sanjay_swain
      @sanjay_swain 4 роки тому +4

      @@roborbiettinoisgone392 Me too. My first program is to take an input and print it on console.

  • @oliver_sogaard
    @oliver_sogaard 4 роки тому +2153

    I have never been happier to see something as simple as "Hello World!". Let the journey begin

    • @X-DeathTrigger
      @X-DeathTrigger 4 роки тому +22

      Let's go

    • @gigachad8189
      @gigachad8189 4 роки тому +28

      Good luck my friend

    • @TopHatFreak
      @TopHatFreak 4 роки тому +11

      Good luck bruz

    • @rirayejohnson8079
      @rirayejohnson8079 4 роки тому +10

      Don't give up

    • @assburner1687
      @assburner1687 4 роки тому +13

      Plz help me I write dotnet new console but nothing happens it just gives me a new line to write the same sh*t again and again😭

  • @themisir
    @themisir 4 роки тому +1874

    Me: knows how to program
    My brain: shut up and watch brackeys

  • @hencytjoe
    @hencytjoe Рік тому +156

    I'm a complete newbie at this but I did some research (google for like 10 minutes) because my Program.cs didn't look like this. It appears I had a newer version of .NET, so it made it in a new feature. So in order for me to get it to look like it does in the video, I had to type "dotnet new console --use-program-main" and voila now it's like in the video.
    Hope this helps someone!

    • @immchez
      @immchez 11 місяців тому +1

      was looking for this comment thanks!

    • @newkie1626
      @newkie1626 11 місяців тому +4

      Where did you type it? Into the terminal? Because when I do that it just says:
      PS C:\Users\MyName\Desktop\My Program> "dotnet new console --use-program-main"
      dotnet new console --use-program-main
      It doesn't do the other stuff like in his video

    • @camokiller9119
      @camokiller9119 10 місяців тому

      Mine keeps saying build failed after every time i run a command. Yours doing that also?

    • @Mooke-je7sx
      @Mooke-je7sx 10 місяців тому

      Life saver

    • @coa7966
      @coa7966 9 місяців тому +3

      im a little late to the party but for whoever sees this make sure u type it in without "example" so it would litteraly look like this dotnet new console --use-program-main u need to write this in terminal

  • @ibrahimrashwan
    @ibrahimrashwan 4 роки тому +5342

    Me : experienced programmer for around 2 : 3 years
    Also Me : watching a programming tutorial for beginners because it is just a brackeys video 😂

    • @KyuVulpes
      @KyuVulpes 4 роки тому +80

      I do this mainly to see how others program, and to see if I could learn something new. Though, I hope that Brackeys does bring up that FIELDS SHOULD NEVER BE PUBLIC! That is legit a pet peeve of mine. Fields should be class-only, and if you need a field to be accessed outside the class, you use a property.

    • @ibrahimrashwan
      @ibrahimrashwan 4 роки тому +11

      @@KyuVulpes I'm with you that the fields should be class specific but when another classes need access to a specific variable just make it public as making it a property could have a slight performance drop unless you need the property for making a custom more complex get; set; behaviours.

    • @gamedevmode
      @gamedevmode 4 роки тому +4

      @@ibrahimrashwan True said. It hurts when doing Custom Editors & Changing [SerializeField] private int goo; to public int foo; But that's the way it is😔

    • @cmdexecutor
      @cmdexecutor 4 роки тому +3

      Don’t forget in Unity we write scripts not a general code, sometimes it’s worth it to break code conventions

    • @diadetediotedio6918
      @diadetediotedio6918 4 роки тому +1

      @@KyuVulpes
      Field's being public can help with general performance in games, in places where JIT compilation can't optimize.

  • @ian-roadto0subscribers564
    @ian-roadto0subscribers564 4 роки тому +885

    Programming:
    *expectation* : coming up with cool things, programming them and flexing on everyone who hasn´t had the idea
    *reality* : failing to even download the software needed, quitting after 3 hours

    • @younlok1081
      @younlok1081 4 роки тому +96

      or stare at the code for and hour and then decide to take a break

    • @rienkthegamer5422
      @rienkthegamer5422 4 роки тому +41

      C# bois: *Reality*
      Me and the python bois: *expectations*

    • @mghq-mobilegamerzhq2533
      @mghq-mobilegamerzhq2533 4 роки тому +12

      @@younlok1081 I am currently taking a break lol

    • @younlok1081
      @younlok1081 4 роки тому +3

      @@mghq-mobilegamerzhq2533 yeah me too that's where from i get the inspiration to write that

    • @allu7958
      @allu7958 4 роки тому +2

      @@rienkthegamer5422 true (still prefer c#)

  • @MalakaiPrograms
    @MalakaiPrograms 4 роки тому +836

    The most valuable thing a programmer can have is the way they think. The better you approach a problem, the easier it'll be to solve it - This works for anything but I find it especially apparent in programming. That's why it is very helpful to have a 'problem-solving' mind when approaching programming, of course this is not necessary right away because you should develop your own way of problem-solving as you keep doing more and more projects.

    • @NukeCloudstalker
      @NukeCloudstalker 4 роки тому +12

      @@00O3O1B never underestimate the power of ctrl+f.

    • @master.9202
      @master.9202 4 роки тому +1

      @@NukeCloudstalker haha yes true

    • @mementomori7160
      @mementomori7160 4 роки тому +3

      @@00O3O1B By "using google" did you mean "using StackOverflow"?

    • @ZeroSleap
      @ZeroSleap 4 роки тому +6

      Uhm i bruteforce my way a lot,it took me quite some way so far,but bottlenecked my progress on many projects.
      So my advice,sit down,write down your problem,split it up to smaller sub problems until each one is achievable,and work your way towards the end goal.
      I have yet to do that,but do as i say not as i do :P

    • @tdawg6348
      @tdawg6348 4 роки тому +1

      I can problem solve, the problem for me is actually coding as I’m a beginner and don’t know how to do it by myself. I have been becoming a lot better at troubleshooting though and have managed to do it multiple times by myself.

  • @drused5091
    @drused5091 2 роки тому +259

    It's my first code ever done, and when seeing the result I got just a huge smile on my face.
    I really appreciate that you took the time and explain this.

    • @microwave911
      @microwave911 2 роки тому +1

      How's it going along?

    • @lineageofmen
      @lineageofmen 2 роки тому +2

      i need help
      my debugging is not working
      its showing omnisharp is not running
      please help

    • @melodreams2278
      @melodreams2278 2 роки тому +1

      @@lineageofmen For anyone getting an error with the "dotnet new console" part, make sure you have the newest version of VS Code and the .NET SDK. If you have an older version of

    • @alex.g7317
      @alex.g7317 2 роки тому

      Why do I have to download these if I’ve already got c# and visual studio on Unity?
      It automatically appears once I double-click on a script in Unity.
      Also, the . Net install is updated, and now there are two options. None of them say “install” pls help.
      Plus, it first say “get started” and “download”. I clicked “download”. Now what?

    • @tibisoft
      @tibisoft 2 роки тому +1

      @@lineageofmen Just had a same issue. I had to restart VS Code and it was working fine

  • @ZyZy456
    @ZyZy456 3 роки тому +2486

    When Rockstar is taking to long for GTA 6 so you decide to do it yourself.

    • @_Isha___
      @_Isha___ 3 роки тому +17

      lol thats what im trying rn

    • @wendywhalemsisawhale205
      @wendywhalemsisawhale205 3 роки тому +45

      @@_Isha___ same even tho I graduated high school in 2030 somthing

    • @GEGGARCHY
      @GEGGARCHY 3 роки тому +57

      @@wendywhalemsisawhale205 a time traveller?

    • @justmeagain9302
      @justmeagain9302 3 роки тому +36

      @@wendywhalemsisawhale205 did you came from a parallel universe where the world doesn't end in 2023?

    • @SUME3R
      @SUME3R 3 роки тому +11

      @@justmeagain9302 these are all very important questions.

  • @Locomotror
    @Locomotror 4 роки тому +110

    For those having issues with "Generate Assets for Build and Debug"...this is the solution i found and that works for me...go to command pallet>settings>search for omnipath> under omnisharp:path> open edit in settings.json
    >go all the way down to the last line where it says "omnisharp.path": ""> add latest between the brackets> should look like this "omnisharp.path": "latest"> ctrl+s to save file> close and restart vscode....should automatically pop up a message to generate the files now...if not try it manually .....or restart again....for me the 2nd restart did it...not sure what i did diffrent...hope it helps

    • @secret-mission5014
      @secret-mission5014 4 роки тому +1

      Thanks

    • @florian538
      @florian538 4 роки тому +5

      Didn't work for me. What should I do?

    • @andreutu
      @andreutu 4 роки тому

      nope, pls help

    • @Max-Bumbeck
      @Max-Bumbeck 4 роки тому +2

      @@florian538 go to run start debugging and than type in the search bar ,NET and click the first what comes out.

    • @Max-Bumbeck
      @Max-Bumbeck 4 роки тому

      @@andreutu go to run start debugging and than type in the search bar ,NET and click the first what comes out.

  • @dermathze700
    @dermathze700 4 роки тому +515

    "There are a lot of (programming) languages to choose from."
    *shows HTML first*
    The madman.

    • @hyungtaecf
      @hyungtaecf 4 роки тому +45

      I think HTML is motivating to someone starting to program, until they meet real programming languages 😂

    • @first-last557
      @first-last557 4 роки тому +13

      @@hyungtaecf I learned coding with html and programming with python

    • @silverspringer3577
      @silverspringer3577 4 роки тому +34

      @@first-last557 Coding and programming mean the same thing

    • @andreii1610
      @andreii1610 4 роки тому +4

      Should've shown css too

    • @ardakaanyildiz3185
      @ardakaanyildiz3185 4 роки тому

      lmao really :D

  • @palm_devs
    @palm_devs Рік тому +46

    Just coming here after getting my first job as a junior software engineer (c#)
    Its been a journey and this is where it all started a year ago.. Fell in love with it. Thank you Brackeys!!!
    For everyone just starting out, if it brings you joy and satisfaction keep going, and get ready for 14 hour coding runs and sleepless nights. Its all worth it. Also, c# is an amazing language. Thats it from me, felt the need to thank this channel for setting up the fire in me and give motivation for everyone just starting. Good luck. Code on 🎉

    • @doomera5911
      @doomera5911 Рік тому +2

      what did you do after course?

    • @palm_devs
      @palm_devs Рік тому +2

      I went ahead and signed up for an online academy. The reason is, Brakeys covers the basics and introduces them in a nice way but you need to dive a lot deeper into each of them. Also, an online academy has a clear map (path) that assures you, you are not missing anything along the way. It also provides practice during the lectures and exercise for homework which allows you to learn by doing, which I believe to be the best way to learn. If you have other questions, I am happy to answer whatever I can :)

    • @norotur
      @norotur 11 місяців тому +2

      I really need a coding friend rn to mentor me, I've had my mind on coding for a while now & im just now getting serious about being a professional, if you dont mind can you please assist me

    • @palm_devs
      @palm_devs 11 місяців тому

      ​@@noroturcontact me if you want :) we can discuss it

    • @palm_devs
      @palm_devs 10 місяців тому

      Hey guys, if anyone here is a beginner that wants to get into coding and is inspired by the series, I am starting my youtube channel where I will be hosting C# series and I need someone to be my guest in the videos I will be making and so I can teach them directly and anyone watching the videos. There will be a clear path teaching all the basics and fundamentals of C#. If anyone is interested, reach out to me. Contact info can be found in my UA-cam profile

  • @ploomifm
    @ploomifm 4 роки тому +83

    for anyone here that is just beginning, dont stop because you dont understand it at first, keep watching these tutorials and learning more. i probably wouldnt be where i am if i didnt tell myself to keep going when i first started. just something to think about.

    • @rodrigobatista7726
      @rodrigobatista7726 4 роки тому +3

      I think I needed to read this comment. Thanks :)

    • @bruhbruh9504
      @bruhbruh9504 4 роки тому +2

      When i try to type in dotnet new console it says the term dotnet is not recognized as the name of cmdlet,function,script file, or operable program.check the spelling.
      Wtf

    • @planetharddrive6277
      @planetharddrive6277 Рік тому +1

      @@bruhbruh9504 we're in this together. I followed what he said in the video so I don't know what i got wrong

    • @trickyr903
      @trickyr903 Рік тому

      @@bruhbruh9504 Did you find solution??

    • @ahmedbassel3258
      @ahmedbassel3258 Рік тому

      @@bruhbruh9504 yes it says the same thing for me i dont know what to do

  • @eggisbored
    @eggisbored 3 роки тому +290

    This is why i love brackeys. He doesn't stall, he doesn't teach us only making a program, he teaches us the LANGUAGE not what we can do with it. You're the best

    • @uchihagamer3986
      @uchihagamer3986 3 роки тому +1

      and you have 69 likes

    • @eggisbored
      @eggisbored 3 роки тому +5

      @@uchihagamer3986 that's *nice*

    • @alex.g7317
      @alex.g7317 2 роки тому

      Why do I have to download these if I’ve already got c# and visual studio on Unity?
      It automatically appears once I double-click on a script in Unity.
      Also, the . Net install is updated, and now there are two options. None of them say “install” pls help.
      Plus, it first say “get started” and “download”. I clicked “download”. Now what?

    • @thalos730
      @thalos730 2 роки тому +1

      @@alex.g7317 i'm a month late but, if you already have those just update them to the latest version (including unity). then, every time it shows that updates are avaible, download them.
      so, about the get started, if you click on it, it should open a tutorial or manual, and download is just what it says (a download, lol).
      unity comes with visual studio, but i recommend you download directly from the site for more options.
      sorry for bad english, and have a nice day!

    • @vievienu-2903
      @vievienu-2903 Рік тому

      thats what i love about him. even if you take a course that teaches you unity it makes making games a big part but the most important part iss to know the language so you can do this yourself

  • @Alinear285
    @Alinear285 4 роки тому +269

    Brackey: How to program
    Me: I needed this a year ago!

  • @dimaisatree
    @dimaisatree 3 роки тому +193

    I’m 23 and I’m going to start learning to code in C#. For now, my goal is to creat a small mobile game using Unity, eventually I also want to land a decent job so I can do it full time.
    Hopefully in a few months I can look back at this comment and feel like I’ve achieved one of those goals or at least working on it. We’ll see, and for anyone else starting this journey I wish you all the best of luck!

    • @gabe_ai9294
      @gabe_ai9294 3 роки тому +6

      Also 23 and have no experience in programming but hoping to change this!

    • @kiampa
      @kiampa 3 роки тому +1

      how u doin so far

    • @mohammadyusoph9568
      @mohammadyusoph9568 3 роки тому

      how u doin so far?

    • @5_yeetusdeletus
      @5_yeetusdeletus 3 роки тому +4

      good luck man I'm going to to start coding and hopefully become a game dev I want to start learning now because that's the whole reason I bought a gaming pc I'm in 6th grade too so good luck hope you succeedI

    • @JoshuasProductions
      @JoshuasProductions 3 роки тому +1

      im 22 and been wanting to get to learn to code, seems pretty cool!!

  • @plinketyplonk3156
    @plinketyplonk3156 4 роки тому +908

    Don't forget, this stuff is sharp; handle with care.
    Not one to do this normally, but I got likes?

  • @celestial1095
    @celestial1095 4 роки тому +792

    "dont forget to ring that bell so you dont miss the next one"
    well now im just sad

  • @fabiohunziker5754
    @fabiohunziker5754 4 роки тому +267

    Has watched 100's of programming videos
    Brackeys: 10 min. video "HOW TO PROGRAM"

    • @sa3doz
      @sa3doz 4 роки тому

      i feel this is a first part .. i guess

    • @master.9202
      @master.9202 4 роки тому

      @@sa3doz yes it is

  • @isuntzu2390
    @isuntzu2390 Рік тому +41

    Lets go!!! After fumbling around the internet I found your videos and I have successfully created my "hello world" application. Look forward to learning more from your content. Appreciate ya

    • @ScaleVR
      @ScaleVR Рік тому +1

      Shut up

    • @foggaming3276
      @foggaming3276 Рік тому

      Which app are you using

    • @montezuma17900
      @montezuma17900 Рік тому

      trying this as well... cant even get past the first lesson. i downloaded version 7.0 and it doesnt recognize dotnet or new

    • @hitmanboss711
      @hitmanboss711 Рік тому

      @Epic_Gamerz_Network Could not execute because the application was not found or a compatible .NET SDK is not installed.
      Possible reasons for this include:
      * You intended to execute a .NET program:
      The application 'new' does not exist.
      * You intended to execute a .NET SDK command:
      It was not possible to find any installed .NET SDKs.
      Install a .NET SDK from:

  • @HellcatLissa
    @HellcatLissa 3 роки тому +601

    In the words of Dani: Thanks Brackeys, very cool.

  • @lofianorak8013
    @lofianorak8013 3 роки тому +60

    0:25 what language do i start with?
    2:23 how to pick a code editor
    3:10 frameworks

    • @animationsbelike
      @animationsbelike 2 роки тому +1

      thank you! :D

    • @lofianorak8013
      @lofianorak8013 2 роки тому +1

      @@animationsbelike Np

    • @AkramsChannel
      @AkramsChannel 2 роки тому +1

      @@animationsbelike Warte, warte, warte...
      Ich wollte einfach nur C# lernen damit ich wie MrLuchs in Unity programmieren kann und auf einmal teffe ich hier all meine Zuschauer in zufälligen Kommentarsektionen 😂

    • @animationsbelike
      @animationsbelike 2 роки тому

      @@AkramsChannel hahaha. aber ich kann jetzt wenigstens C# xD

    • @AkramsChannel
      @AkramsChannel 2 роки тому

      @@animationsbelike Lol, ich habe gerade angefangen zu lernen xD

  • @vinos1629
    @vinos1629 4 роки тому +74

    I learnt to program about 6 years ago from your unity videos. I still remember how amazing it was to have those first games run. Since then I have learnt more than 20 languages and even though I have drifted away from unity and game development , and more into node and backend web dev, game development will always have a special place in my heart. Thank you for making these awesome tutorials years later for new people to try and experience the same thing that I did.

    • @surevibes3480
      @surevibes3480 2 роки тому

      I need a laptop, who can gift me one, it's my birthday 🎂 God bless you

    • @bolajitaiwo9032
      @bolajitaiwo9032 2 роки тому +1

      @@surevibes3480 happy late birthday

  • @jeffboldrinjr7166
    @jeffboldrinjr7166 2 роки тому +19

    This is such a great intro video. I haven't had much experience coding in my life, and honestly, the only language I ever really looked into before this was Visual Basic back when I was in college. My friend asked me for help with C# since she knew I was a Computer Information Systems student and I figured I'd be able to help her because I was assuming it would be very similar to Visual Basic. However when she showed me her notes, I was so confused my stomach started to hurt lol. This definitely made me feel better about learning C#. I can actually understand it so far!

  • @macaronicrocs6989
    @macaronicrocs6989 4 роки тому +204

    This came at literally the perfect time!

  • @slackreal
    @slackreal 4 роки тому +549

    Brackeys: "Install this lightweight program called Visual Studio Code"
    My PC from 1943: **No**

    • @datboi1861
      @datboi1861 4 роки тому +12

      Same. My PC doesn't support it and now I feel sad...

    • @sachero
      @sachero 4 роки тому +3

      nice

    • @samuelallen6494
      @samuelallen6494 4 роки тому +3

      @@datboi1861 its ok i am using for now a cheap $700 dollar laptop while i am saving up for a gaming/workspace computer you could easily do the same

    • @datboi1861
      @datboi1861 4 роки тому +3

      @@samuelallen6494 I ended up using an online compiler but I guess I could do that some day

    • @leodoescrap879
      @leodoescrap879 4 роки тому +7

      im using a 200 buck chromebook with a linux vm installed :P

  • @aplaguedocter6407
    @aplaguedocter6407 3 роки тому +109

    step one took me 2 hours to get done and i had to reinstall everything
    this is gonna be fun

    • @lukitommele3798
      @lukitommele3798 3 роки тому +3

      @@xxnoobfiregamer2577 ye i had to uninstall and idk if it will still work lol

    • @zellasteria
      @zellasteria 3 роки тому +1

      boris:
      *hello vadim blyat*

    • @xxnoobfiregamer2577
      @xxnoobfiregamer2577 3 роки тому +1

      @@zellasteria blyat

    • @noobmuffin
      @noobmuffin 3 роки тому

      @@xxnoobfiregamer2577 why?

    • @oldrichmarek419
      @oldrichmarek419 3 роки тому

      how did you solve it? im havinng issues with generating assets to build and debug

  • @Dissey
    @Dissey Рік тому +18

    My journey with programming starts now! I have no experience and big goals the coming 5 years. This video is my beginning of everything, wish me luck :)

    • @glupigang1900
      @glupigang1900 Рік тому +2

      same here is to our successful futures

    • @stanleyjoy
      @stanleyjoy Рік тому

      Wish you the best

    • @shounaksamanta2012
      @shounaksamanta2012 Рік тому

      Wishing you the best. My journey also starts here with this video I am actually 11 years old

  • @calebjlee2685
    @calebjlee2685 4 роки тому +100

    0:40 "I have chosen C#"
    Sound effect proceeds to play a C

  • @zacharykinsella4871
    @zacharykinsella4871 4 роки тому +16

    C# is a fantastic language. I started learning it with unity but then branched off of unity to learn the language in more depth. I really recommend the books ‘Learn C# in a day and learn it well’ ‘C# in a nutshell’ and ‘C# in depth’ in that order, depending on how much you know. It changed the way I thought about programming and completely changed how I use unity!

  • @lthereader5670
    @lthereader5670 4 роки тому +114

    Fun fact: its a some kind of tradition for programmers to first learn how to run an app or a text message saying "Hello World!" as its their first time making the computer alive.

    • @Gabooto
      @Gabooto 3 роки тому +1

      thats cool

    • @arstino
      @arstino 2 роки тому +1

      actually its used to test that the system that you run code on is working. (from my understanding)

    • @puedoiralbanoporfavor854
      @puedoiralbanoporfavor854 2 роки тому +1

      @@arstino both

  • @BasicallyAnArtist
    @BasicallyAnArtist 2 роки тому +107

    If you run into an issue after 5:34 where the “dotnet new console” command does not work, try closing out of vs code, deleting the project folder and creating a new project folder and start over from there.

  • @varkyx6339
    @varkyx6339 4 роки тому +46

    Hey man, I just wanted to say that I look up to when to learn everything I need about unity. You are a really great UA-camr & Teacher. I am proud to say my first game is working all because of your advice 😃

    • @chakibchemso
      @chakibchemso 4 роки тому +1

      What about the last games lol

    • @varkyx6339
      @varkyx6339 4 роки тому

      @@chakibchemso because I only made one game. (╥﹏╥)

    • @weirdrhino6821
      @weirdrhino6821 2 роки тому +1

      @@varkyx6339 what's it called??

    • @alex.g7317
      @alex.g7317 2 роки тому

      Why do I have to download these if I’ve already got c# and visual studio on Unity?
      It automatically appears once I double-click on a script in Unity.
      Also, the . Net install is updated, and now there are two options. None of them say “install” pls help.
      Plus, it first say “get started” and “download”. I clicked “download”. Now what?

  • @masry12.
    @masry12. 4 роки тому +8

    this was so perfect timed...
    i just started searching for a tutorial yesterday and u made one today

    • @tvguideondemand
      @tvguideondemand 4 роки тому +1

      He's cashing in on all of the quarantine learners. Game Dev videos have seen a huge increase in views these past few weeks.

  • @grimm5751
    @grimm5751 4 роки тому +120

    Me who's learning Python:
    *hmm maybe i should start over*

    • @mudasserkhan00
      @mudasserkhan00 4 роки тому +3

      🤣 me too😐

    • @dogeraid5937
      @dogeraid5937 4 роки тому +11

      Python is pretty useful if you want to work in big companies (probably bc Python is one of the languages I've seen talked about by professionals) I suggest to master it first then other languages. And also learn more languages than only 1 or 2. Some might look like its not worth it, but maybe in future it might help

    • @grimm5751
      @grimm5751 4 роки тому +1

      @@dogeraid5937 ay got it, thanks

    • @radu6772
      @radu6772 4 роки тому +2

      Yo
      Hollow knight fan here too
      (And newbie python programmer)

    • @grimm5751
      @grimm5751 4 роки тому +1

      @@radu6772 yooooo thats cool

  • @kvelez
    @kvelez Рік тому +1

    This setup has been so useful, literally, everybody just does the tutorial for Visual Studio and VScode is usually left behind.
    Thanks for providing that.

    • @kvelez
      @kvelez Рік тому

      @beef_burgers One is an IDE and the other one is just a code editor with plug-ins.

  • @marioshusband3700
    @marioshusband3700 4 роки тому +143

    6:04 I keep getting an error saying "dotnet : The term 'dotnet' is not recognized as the name of a cmdlet, function, script file, or
    operable program. Check the spelling of the name, or if a path was included, verify that the
    path is correct and try again.
    At line:1 char:1
    + dotnet new console
    + ~~~~~~
    + CategoryInfo : ObjectNotFound: (dotnet:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException"

    • @lukastojanovic8551
      @lukastojanovic8551 4 роки тому +4

      Use visual studio 2019 it already sets up .net and stuff

    • @nicolasarmando778
      @nicolasarmando778 4 роки тому +2

      me too

    • @johnnyhoran9369
      @johnnyhoran9369 4 роки тому +5

      Try re-installing (repairing) VS code. it worked for me.

    • @relixgames9425
      @relixgames9425 4 роки тому +12

      Make sure to download the .NET framework from Microsoft (link in description) before downloading VS code but if you already VS code then download .NET and repair VS code. Should work then.

    • @antonaras420
      @antonaras420 4 роки тому +5

      i did all of these but still it doesn't work

  • @4sher69
    @4sher69 2 роки тому +4

    ive only watched the video for about 3 minutes and words cant explain how motivated i am to start programming

  • @saullandiof5768
    @saullandiof5768 3 роки тому +8

    this is a LEGIT beginner tutorial. thank you, helped a ton!

  • @abiabraham1923
    @abiabraham1923 2 роки тому +37

    POV: you came to this video at 3AM after having a sudden motivation

  • @xyr0sTv
    @xyr0sTv 4 роки тому +4

    Please continue this series! It's all I was searching for so long and you explain really well!

  • @Orincaby
    @Orincaby 3 роки тому +129

    Skills of being a programmer:
    - good at copy and pasting code from stack

  • @prometheus625
    @prometheus625 4 роки тому +29

    "Say the line Bart!"
    "Hello world."

  • @JohnyBhiduri
    @JohnyBhiduri 3 роки тому +17

    Me studying mathematics peacefully
    My mind: Lets learn coding.

  • @piffytho8638
    @piffytho8638 3 роки тому +5

    Dude I know this series is going to be so helpful for my game development, other then my 7th grade robotics class I have never coded before so this is just going to be so helpful and its brackeys so even better.

    • @TofuTuesdays
      @TofuTuesdays 3 роки тому

      well good luck

    • @lineageofmen
      @lineageofmen 2 роки тому

      i need help
      my debugging is not working
      its showing omnisharp is not running
      please help

  • @MikhailYT
    @MikhailYT 4 роки тому +13

    Thank you so much for this, my friends and I started a development studio and only have 1 programmer.
    Now I'll be able to help out even more!

  • @pockychu887
    @pockychu887 3 роки тому +42

    The most important thing is to not give up.

    • @landonmichael4933
      @landonmichael4933 3 роки тому

      Yes

    • @astrallarium
      @astrallarium 3 роки тому +3

      I've done that 3 times so far, currently on my 4th attempt to code, wish me luck!

    • @pockychu887
      @pockychu887 3 роки тому

      @@astrallarium I do!

    • @nightbotnightbot9438
      @nightbotnightbot9438 3 роки тому

      @@astrallarium did you do it?

    • @astrallarium
      @astrallarium 3 роки тому

      @@nightbotnightbot9438 not yet! made a simple program with 3 errors so far, 100 lines-ish, gonna finish it soon.

  • @bananaberry3427
    @bananaberry3427 2 роки тому +5

    To those who got an error with dotnet new console (6:06), all i did to fix that issue was i closed the entire app and opened it again.. it works

  • @JelleVermandere
    @JelleVermandere 4 роки тому +88

    A.k.a how to rewire your brain and learn to “think different” 🚀

  • @Nicolas-mv4np
    @Nicolas-mv4np 4 роки тому +26

    Him : "their are many different programming languages"
    Also him : *show a html file*

  • @theinvertedpineapple942
    @theinvertedpineapple942 4 роки тому +5

    If you're stuck in the front downloading .net do this:
    Under .NET Core 3.1 it says Run Apps,
    Build Apps, Advanced. Pick Build Apps bc your building an app. For Building apps it says Download .NET core SDK. Which matches the video. Hope this helps :)

    • @videnzy
      @videnzy 4 роки тому

      thanks man youre a life saver

    • @eggsnbroccoli5367
      @eggsnbroccoli5367 4 роки тому

      Its not letting me generate assets for build and Debug what do I do?

  • @Bhairab_roy
    @Bhairab_roy Рік тому +1

    I have been doing programming for 2 years now still watching ❤

  • @thespontaneoustomato2676
    @thespontaneoustomato2676 4 роки тому +13

    Whenever I watch one of these videos the answer is always :
    *WELL, IT DEPENDS!!!*

  • @Taaaamas
    @Taaaamas 4 роки тому +39

    Me: "I'll practise code tomorrow" (which i'll have said every yesterday ever)
    Brackeys: "HOW TO PROGRAM"
    GAH FINE, JUST 5 MORE MINUTES!!

  • @zokerino447
    @zokerino447 4 роки тому +27

    2:29 don't forget that it must have a dark theme

  • @Segashinobi97
    @Segashinobi97 3 місяці тому

    Awesome first video! Let the journey begin!

  • @abuabdullah9274
    @abuabdullah9274 3 роки тому +42

    90% people raged when his download finished in seconds

    • @reeshhehh264
      @reeshhehh264 3 роки тому

      When i saw the i threw the phone

    • @BELBAWM
      @BELBAWM 3 роки тому +1

      @@reeshhehh264 wtf brookken engslish

  • @vortex8988
    @vortex8988 4 роки тому +5

    As always, brackeys is bringing the beginners and the experts together

  • @anfstudios1479
    @anfstudios1479 4 роки тому +5

    Guys, you will continuously (or eventually) most likely get .Net Core Project could not be found. This is a common problem. Uninstall VS Code and install Visual Studio and download either of the .NET Cross Platform (For multiple platform, found at bottom), or .NET Desktop Development (exclusively for Windows). You will never get any errors. And a plus point, if you do, you can repair it (takes a few minutes).

  • @BlizzardRoad
    @BlizzardRoad 3 роки тому +1

    I swear this helped me understand coding a lot better. Thank you.

  • @PythonPlusPlus
    @PythonPlusPlus 4 роки тому +23

    C# is definitely in my top 3. It’s very well made, cross platform and used by so many. Alongside C# I’d put Swift and Python.

    • @lineageofmen
      @lineageofmen 2 роки тому +1

      i need help
      my debugging is not working
      its showing omnisharp is not running
      please help

    • @miquelcmain
      @miquelcmain Рік тому

      What is your top 3?

    • @PythonPlusPlus
      @PythonPlusPlus Рік тому

      @@miquelcmain
      - Python
      - C#
      - Swift

  • @wolf_9626
    @wolf_9626 4 роки тому +8

    Hi Absjorn, i've been watching your videos trying to learn how to code to be a video game programmer one day if i'm lucky and dedicated enough and your videos are really helping me a lot. I thank you for that. I hope you would continue to make these awesome, easy to follow/comprehend tutorial videos on C# Unity and perhaps maybe java script, C++ and python one day.
    I would actually like you to help me out in this tiny bit. I am currently on your tower defence tutorial ep 03 and i would like to know how to set up the scene view and the game view side by side so i can see them both at once. This video is 6 days ago, but i hope you still see my little comment and reply.

  • @steelbeard151
    @steelbeard151 4 роки тому +15

    How is Visual Studio Code different from Visual Studio 2019? What's the reasoning behind using one or the other?

    • @Celcious
      @Celcious 3 роки тому

      @graphics yasser it’s free wtf

    • @Isa-dw7wo
      @Isa-dw7wo 3 роки тому +1

      vscode is a text editor and vs is an ide

  • @The10_Idiots
    @The10_Idiots 2 роки тому +1

    im already a modeller animator planner and an artist in a sort of way but i still havent finish learning coding so thanks for makin this vid

  • @ultleo839
    @ultleo839 4 роки тому +5

    I have never been happier to see the words 'Hello World' in my life

  • @mayko_silvestre7383
    @mayko_silvestre7383 Рік тому +5

    for everyone who found "dotnet new console" error, i used a lot a solutions in the comments, but none solved the problem, in VScode, when you try to create a csharp file, you'll receive a pop up saying that you don't have SDK and etc, it'll display a link to a github page, with a lot of solutions, mine was there in the General troubleshooting steps on Windows section.

  • @MasterofGalaxies4628
    @MasterofGalaxies4628 3 роки тому +3

    That "ran a program" joke may be the best thing I've heard all year!

  • @George.4
    @George.4 2 роки тому +2

    Thank you Brackeys. Your advice always saves me hours.

    • @scarlet.pastel
      @scarlet.pastel 2 роки тому

      im here six day after you why dose it not work for me

    • @lineageofmen
      @lineageofmen 2 роки тому

      i need help
      my debugging is not working
      its showing omnisharp is not running
      please help

  • @exr879
    @exr879 3 роки тому +7

    Too late for me, i already watched a 2 hour tutorial on unity, but as always, you were doing a great job

  • @leo79033
    @leo79033 4 роки тому +6

    wow, I really, really, REALLY wish I could subscribe more than once

  • @mario.2560
    @mario.2560 4 роки тому +6

    Very good tutorial! You now have a new sub! This really helped me to start getting hold of the basics, since I want to make my own unity game.

  • @Wisp796_YT
    @Wisp796_YT 6 місяців тому

    Thanks! I am a python developer (and sometimes C++) because I am attending an exam for C# and the challenge was to make a C# program in VSCode in 24hrs and this helped!

  • @wasabin2184
    @wasabin2184 3 роки тому +15

    at 6:01 when he writes the dotnet new console , when ever i write it down in the terminal it just says "dotnet : the term 'dotnet' is not recognized as the name of the cmdlet." and more.

    • @ghostgamer_sk2647
      @ghostgamer_sk2647 3 роки тому

      I have that problem too

    • @brunkybuilds4740
      @brunkybuilds4740 3 роки тому +1

      I am having problem at 7:54 it say can’t locate .net core

    • @ghostgamer_sk2647
      @ghostgamer_sk2647 3 роки тому +1

      When you Want to write dotnet you need to reinstal the dotnet console or what is it so reinstal and it should work

    • @augustobresciani1044
      @augustobresciani1044 3 роки тому +4

      I also ran into this problem. The whole dotnet folder you installed needs to be in the "MyAwesomeProgram" folder or whatever you named it. After you put it there, close VSCode and open again. Should work

    • @BELBAWM
      @BELBAWM 3 роки тому +1

      @@augustobresciani1044 it did not work

  • @moses-zuze
    @moses-zuze 2 роки тому +3

    Straight forward explanation, thank you very much.

  • @izstrella
    @izstrella 3 роки тому +5

    The majority of this looks like gibberish to me, but that just makes me more excited for the day it won’t. Let’s goooooooo!

    • @lionobama1397
      @lionobama1397 3 роки тому +1

      can you give us an update?

    • @izstrella
      @izstrella 3 роки тому

      @@lionobama1397 • I was doing well until my awful mental health took over and now I’m in recovery, woot woot! I still hope for the non-gibberish days but for now I’ll focus on one project at a time. 👍🏼 Best of luck to you though, mate!

    • @lionobama1397
      @lionobama1397 3 роки тому

      @@izstrella my .net thing didn’t work so i fucking punched a hole through my monitor

    • @izstrella
      @izstrella 3 роки тому

      @@lionobama1397 • For real? Geez, extra luck then. And maybe some anger-management courses, haha.

  • @shxm69
    @shxm69 2 роки тому +1

    worth it watching, I'm happy that I could learn something today!

  • @sevenfold.
    @sevenfold. 4 роки тому +18

    When I try to do the "Generate Assets for Build and Debug" it says: Could not locate .NET Core project. Assets were not generated.
    Could someone help me out?

    • @stripyrex_gaming
      @stripyrex_gaming 4 роки тому +1

      make sure that you created a new file using the terminal and then try opening your file with the terminal, 'dotnet run'

    • @orisfeliz9736
      @orisfeliz9736 4 роки тому +1

      @@stripyrex_gaming I have done that and i still get the same error too

  • @deviant_phi393
    @deviant_phi393 4 роки тому +34

    I hope this turns into a game programming course, and not just a general one.

    • @filgas0892
      @filgas0892 4 роки тому +3

      I think that brackets need a website to put in his video. And other things like programming tips, or what program chose.

    • @summonerdestroyer6965
      @summonerdestroyer6965 4 роки тому +2

      Yeah, me too because I know some C# and I came looking for the Unity side of things.

    • @josephbabu7588
      @josephbabu7588 4 роки тому +1

      Me too

    • @brosanimation5262
      @brosanimation5262 4 роки тому

      Me too but visual is better than unity I think that

  • @anuragk6722
    @anuragk6722 4 роки тому +8

    0:33 Node.JS is a not a language. It's a framework for making backend and libraries and uses Javascript.

    • @jakobnacanaynay9525
      @jakobnacanaynay9525 4 роки тому

      I was about the day that

    • @andreii1610
      @andreii1610 4 роки тому

      It's understandable because he's a game developer not a web developer

    • @Dev-Siri
      @Dev-Siri 2 роки тому

      Its a runtime not a framework

    • @瞎
      @瞎 4 місяці тому

      @@Dev-Sirino it’s a framework

  • @timklingler3448
    @timklingler3448 2 роки тому +1

    for anyone having issues with generate assets for build and debug: for me the fix was to relaunch the dotnet-skd setup file and press repair and from there on everything worked like in the video. The problem propably was that I launched the dotnet setup before installing vs code

    • @josiephillips4684
      @josiephillips4684 Рік тому

      I am so confused could you explain in even simpler terms like teaching a 5 year old

  • @pimpkin9708
    @pimpkin9708 3 роки тому +6

    I was wondering if i should get the newest versions of these or the versions you have? nvm this is so great man thankyou for being a human

  • @stopmotionknocks255
    @stopmotionknocks255 Рік тому +4

    Me a musician looking at thumbnail:
    How to program a C Sharp

  • @Eustass78
    @Eustass78 3 роки тому +11

    I was so proud of myself because i achieved my first achievement

  • @mydoghasschizophrenia
    @mydoghasschizophrenia 4 роки тому +59

    Programming isn't difficult. You just need to code. Without thinking.

    • @SpaceDave1337
      @SpaceDave1337 4 роки тому +13

      You just need to drink 2 liters of Tea. Earl Grey. Hot, pass out, wake up the next day and see everything coded

    • @gunslinger621
      @gunslinger621 4 роки тому

      ????

    • @jelle8055
      @jelle8055 4 роки тому +4

      And stack overflow to copy and paste!

    • @northdiddles
      @northdiddles 4 роки тому +1

      @@SpaceDave1337
      Ahh thats why my games dont break.

    • @Chadderbox
      @Chadderbox 4 роки тому +1

      I dunno. I don't think much, and all my code looks like a spaghetti factory when all the cutters break.

  • @davudaliyev3797
    @davudaliyev3797 2 роки тому +2

    My journey begins here guys after wanting to be doctor and then changing my mind wish me luck :)

  • @SwastikBiswas
    @SwastikBiswas 4 роки тому +11

    Brackeys, I have been facing a problem and its been a while now. The console isn't recognizing dotnet as an external application. Please help me. Also, I like your videos, and they're full of great content. Keep up the work.

  • @catthatisarat
    @catthatisarat Рік тому +1

    this is a really good starter tool for new game developers!

  • @daggercatz7297
    @daggercatz7297 4 роки тому +98

    Be carefull guys, it's sharp, handle with care.

  • @plasma8832
    @plasma8832 3 роки тому +6

    hey i need some help when i type general in the command palette and click the .NET: Generate Assets for Build and Debug nothing happens i dont get the vs code folder or anything.

  • @qub1998
    @qub1998 3 роки тому +6

    3:42 admit it, you at least smiled.

  • @itsdomie5382
    @itsdomie5382 3 роки тому

    this is the first time m doing anything useful. Thanks to brackeys

  • @sadpotato714
    @sadpotato714 4 роки тому +53

    I got to the part where he got to the .net generate parts and its raising errors that "Could not locate .NET Core project." google isn't helping, any ideas?

  • @catslovestuff
    @catslovestuff 3 роки тому +4

    Will this work with Visual Studio 2019?

  • @hugofoltin5647
    @hugofoltin5647 4 роки тому +7

    5:56 doesnt work for me, it prints out an error:
    dotnet : The term 'dotnet' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling
    of the name, or if a path was i
    ncluded, verify that the path is correct and try again.
    At line:1 char:1
    + dotnet new console
    + ~~~~~~
    + CategoryInfo : ObjectNotFound: (dotnet:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException
    Please help, thanks

    • @whyzen2081
      @whyzen2081 4 роки тому +2

      Same issue.

    • @AgentTurtles
      @AgentTurtles 4 роки тому +1

      First Download .NET: dotnet.microsoft.com/
      and then restart visual studio and then try again
      It will work i have tried it

    • @AgentTurtles
      @AgentTurtles 4 роки тому

      @Rhojan PH Yeah

  • @wulffiana9355
    @wulffiana9355 Рік тому

    No one can top this dude on Programming tutorials.

  • @h0rnet817
    @h0rnet817 3 роки тому +4

    dotnet : The term 'dotnet' is not recognized as the name of a cmdlet, function, script file, or
    operable program. Check the spelling of the name, or if a path was included, verify that the
    path is correct and try again.
    At line:1 char:1
    + dotnet new console
    + ~~~~~~
    + CategoryInfo : ObjectNotFound: (dotnet:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException

    • @Hackermanlmao
      @Hackermanlmao 3 роки тому

      Make sure you installed the .NET SDK

    • @clydexr
      @clydexr 3 роки тому

      @@Hackermanlmao They didn't link the .NET SDK link

    • @n.e.k.o.6443
      @n.e.k.o.6443 3 роки тому

      having the same problem

    • @obliviousmotors6525
      @obliviousmotors6525 3 роки тому +1

      You have to download the runtime as well as the sdk

    • @aryanpatankar8168
      @aryanpatankar8168 2 роки тому

      @@Hackermanlmao Thx bro

  • @ayaanhasan295
    @ayaanhasan295 Рік тому +3

    hey, on my vs code the Launch.json file does not have the default code like you do on 8:08

  • @FederalBureauofInvestigation37
    @FederalBureauofInvestigation37 3 роки тому +5

    7:53 i cant cuz it says ''Unable to generate assets to build and debug. OmniSharp server is not running.''

  • @gentlemanghost0
    @gentlemanghost0 Рік тому

    This is honestly better r
    Than most of the videos I watched before it told me what to actually do instead of just pick a programming language and go learn it some site or something like that.

  • @justboris8740
    @justboris8740 4 роки тому +11

    When i write dotnet new console it says dotnet : The term 'dotnet' is not recognized as the name of a cmdlet, function, script file, or
    operable program. Check the spelling of the name, or if a path was included, verify that the pat
    h is correct and try again.
    At line:1 char:1
    + dotnet new console
    + ~~~~~~
    + CategoryInfo : ObjectNotFound: (dotnet:String) [], CommandNotFoundException
    + FullyQualifiedErrorId : CommandNotFoundException . What do i do ? xd

    • @Daan-ds2jz
      @Daan-ds2jz 4 роки тому +3

      happens to me too

    • @fluffehpancakes1102
      @fluffehpancakes1102 4 роки тому

      I fixed it you need to go to the file manager and delete system32 it overthrows C# it works

    • @purupupup
      @purupupup 4 роки тому

      @@fluffehpancakes1102 are you nuts?

    • @fluffehpancakes1102
      @fluffehpancakes1102 4 роки тому

      @@purupupup it workes for me

    • @migoulebeats
      @migoulebeats 4 роки тому

      @@fluffehpancakes1102 wtf