My Initial Impresson Of Go

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 พ.ย. 2024

ความคิดเห็น • 188

  • @tielessin
    @tielessin 6 หลายเดือนก่อน +246

    When he started to talk in terminal commands I was really scared

    • @microburn
      @microburn 6 หลายเดือนก่อน +37

      Skill Issue

    • @Rana-yk6xn
      @Rana-yk6xn 6 หลายเดือนก่อน +13

      @@microburn nil issue

    • @opposite342
      @opposite342 6 หลายเดือนก่อน +3

      You don't need to do what he did. TeeJ shows the line count for his neovim config with the tokei package, which is one command and it gives out nicer output.

    • @Spelaren7254
      @Spelaren7254 6 หลายเดือนก่อน +3

      @@opposite342it’s not that hard to understand tho. Also that will work for everything, your config needs to be setup etc

    • @opposite342
      @opposite342 6 หลายเดือนก่อน

      ​@@Spelaren7254fair point

  • @TheMASTERshadows
    @TheMASTERshadows 6 หลายเดือนก่อน +129

    I feel like every primeagen video is just a showcase/flex of cmd line wizardry for us mere mortals ...

    • @MartinMarcher
      @MartinMarcher 5 หลายเดือนก่อน +3

      Really?
      I think that's just normal average usage? How else do you do that stuff?

    • @alexandrecosta2567
      @alexandrecosta2567 5 หลายเดือนก่อน +16

      @@MartinMarcher I count the lines of each file...

    • @harshitpant07
      @harshitpant07 9 วันที่ผ่านมา

      @@MartinMarcher why do you need to count no. of lines in the first place

    • @MartinMarcher
      @MartinMarcher 4 วันที่ผ่านมา

      ​@@harshitpant07 what? Because that's in the example? I don't care about counting lines of code, I was refering to a few pipes, command line parameters and a glueing things together. Nothing to do with counting lines of code.

  • @ccs4321
    @ccs4321 6 หลายเดือนก่อน +22

    go is so good for code reading for learning all thing other than coding.
    you can learn encrpytion, TCP , pacakge matching , media, h264 , FFT ...etc. , all those thing are way easier to read than all other language( yes, for code reading, It easier than python and JS)
    And because it so easy to read and have decent performance, you can see it can make a team project very easy.
    for me, go is always a good lenguage, not beacuse it easy to write, it because it easy to read.

  • @0marble8
    @0marble8 6 หลายเดือนก่อน +19

    I think with errors, there are three types: user errors (user enters an incorrect input), programmer errors (your algorithm is wrong) and enviroment errors (lost internet connection). I think only the user and possibly the enviroment errors have to be handled nicely, programmer errors should result in a crash

  • @_billitech
    @_billitech 6 หลายเดือนก่อน +87

    My mentality about writing code changed the day I discovered the power of golang interface

    • @Kane0123
      @Kane0123 6 หลายเดือนก่อน +8

      Go mentioned

    • @rez188
      @rez188 6 หลายเดือนก่อน +12

      Traits are way better

    • @carlosmspk
      @carlosmspk 6 หลายเดือนก่อน +1

      @@rez188 in what way?

    • @natescode
      @natescode 6 หลายเดือนก่อน +7

      ​@@carlosmspkin every way. They allow polymorphism but with proper type safety and no overhead of runtime dispatch

    • @carlosmspk
      @carlosmspk 6 หลายเดือนก่อน +11

      @@natescode but go lang's interfaces are also type safe. The check is performed before you run the code if I'm not mistaken

  • @hamm8934
    @hamm8934 6 หลายเดือนก่อน +52

    I agree, implicit interfaces in go really encapsulate some of the the sludge feeling in java and c#. This is such a goated feature in go. It makes scaling an app so much easier. Avoids so much frustrating refactoring when requirements change

    • @gusryan
      @gusryan 6 หลายเดือนก่อน +14

      I still wish you could do something like 'implements' just to make sure you're implementing all the methods you need

    • @bionic_batman
      @bionic_batman 6 หลายเดือนก่อน +10

      @@gusryan actually you can quite easily do that
      Just assign instance of your struct to _ variable of that particular interface type. The program won't compile if you don't implement the interface

    • @hamm8934
      @hamm8934 6 หลายเดือนก่อน +7

      @@gusryan if a function takes an interface and youre missing a method defined on the interface, it wont compile

    • @gusryan
      @gusryan 6 หลายเดือนก่อน +1

      @@hamm8934 It's way nicer to see it when you're actually writing the struct

    • @hamm8934
      @hamm8934 6 หลายเดือนก่อน +5

      @@gusryan i used to think this until i really used go and completely inverted my stance. Its just as safe, faster, and more flexible than explicit interface implementations. Have you tried using it?

  • @bitmasked
    @bitmasked 5 หลายเดือนก่อน +20

    In Go we call it "duck typing". It it looks like a duck and quacks like a duck, it's a duck.

    • @yugioh8810
      @yugioh8810 5 หลายเดือนก่อน +1

      no it's not duck typing, it's structural typing.

    • @adambickford8720
      @adambickford8720 4 หลายเดือนก่อน

      Incorrect. Duck typing is a runtime construct, not compile time.

    • @bitmasked
      @bitmasked 4 หลายเดือนก่อน +3

      ​@@adambickford8720 In the context of fully dynamic languages, you are correct. That said, the terms "structural typing" and "duck typing" are interchangeable in Go parlance, and the latter has been used more commonly in my experience.
      That said - if you mean to say that Go does duck typing stuff at runtime, that's false. All "quacks like a duck" checks occur at compile time, and at runtime only vtable lookups occur.

    • @adambickford8720
      @adambickford8720 4 หลายเดือนก่อน

      @@bitmasked Duck typing is run time, structural subtyping is at compile time.
      Conflating them is wrong.
      en.wikipedia.org/wiki/Duck_typing#:~:text=Duck%20typing%20is%20similar%20to,that%20is%20accessed%20during%20runtime.

    • @bitmasked
      @bitmasked 4 หลายเดือนก่อน

      @@adambickford8720 I agree with you on the original meaning. Doesn't change the fact that the term has been borrowed, somewhat incorrectly, and is well understood to mean what is effectively structural typing. Good day.

  • @GoWithAndy-cp8tz
    @GoWithAndy-cp8tz 6 หลายเดือนก่อน +8

    Hi! I really enjoy Go programming and all your videos, not just the ones about Go. I appreciate your talks. Cheers!

  • @theevilcottonball
    @theevilcottonball 5 หลายเดือนก่อน +3

    Its the same for me with C. Such a simple language, yet you can do a lot with it.

  • @MRlreable
    @MRlreable 5 หลายเดือนก่อน +2

    Dude, you are such a huge inspiration for me to get better and learn new stuff. Keep up the good work!

  • @pookiepats
    @pookiepats 6 หลายเดือนก่อน +3

    These are great points that all make me grateful I chose Swift.
    Protocols, optionals and final class solve so many problems for me

  • @bjni
    @bjni 3 หลายเดือนก่อน +6

    bruh I have been grinding, learning coding, built projects in go. and I still have literally 0 idea wtf he is saying

  • @krunkle5136
    @krunkle5136 6 หลายเดือนก่อน +33

    Those Bell Labs people were something else.

    • @gcxs
      @gcxs 6 หลายเดือนก่อน +10

      They are true engineers

    • @diskpoppy
      @diskpoppy 6 หลายเดือนก่อน

      Yet it's a deadend

  • @deado7282
    @deado7282 6 หลายเดือนก่อน +7

    U really start to appreciate a structural static type system if u want to test all of that stuff.
    It makes it much more enjoyable to test if u just hand in snippets instead of producing the mock-mess in a nominal static type system.

  • @olbluelips
    @olbluelips 7 ชั่วโมงที่ผ่านมา

    He's so goddamn right about structural typing

  • @guyvandenberg9297
    @guyvandenberg9297 6 หลายเดือนก่อน +5

    Really glad you are enjoying GO. I have been using it since 1.0 release. It is a great language, especially implied interfaces (kind of duck typing). Enjoy your channel. Thanks for the great content.

  • @tanko.reactions176
    @tanko.reactions176 3 หลายเดือนก่อน

    You should watch Mat Ryers talk titled "How I write HTTP Web Services after Eight Years"...
    he shows some really elegant idiomatic go code.
    and yes - duck typing interfaces (especially in tandem with struct embedding, which leads to inheriting its interface implementations) are game changers
    edit: the bit about the handlerfunc and idiomatic middleware chaining technique is mindboggling!

  • @hobyt3
    @hobyt3 6 หลายเดือนก่อน +8

    The title makes a good impresson

  • @TheRealMangoDev
    @TheRealMangoDev 6 หลายเดือนก่อน +42

    only the real ones remember the old title

    • @TheRealMangoDev
      @TheRealMangoDev 6 หลายเดือนก่อน +16

      impresson

    • @diego.almeida
      @diego.almeida 6 หลายเดือนก่อน +8

      @@TheRealMangoDev it's not a misspelling, he just says that word with a spanish accent

    • @ProjectTurtleTech
      @ProjectTurtleTech 6 หลายเดือนก่อน +2

      I'm 10x this level dyslexic so I won't notice the defense

    • @i-am-linja
      @i-am-linja 6 หลายเดือนก่อน +2

      It still says "impresson". Was there a correctly-spelled title before?

    • @TheRealMangoDev
      @TheRealMangoDev 6 หลายเดือนก่อน +3

      no i just thought itd change

  • @Yupppi
    @Yupppi 6 หลายเดือนก่อน

    I find it funny but I'm happy that last year prime poke fun at go and had sort of attitude "why would you do go when there's better options in everything" and now I've seen him do go every time I've opened the stream.
    I suppose it goes to show that every language has a reason it exists to begin with and sometimes you only realise it by diving deep enough. Or do a project different from your usual projects. Obviously some languages are just part of histort now or never really succeeded in why they were trying to do so there's also just better options for the same thing.

  • @marcs8325
    @marcs8325 6 หลายเดือนก่อน +8

    Go is the Toyota Corolla of programming languages. It gets the job done, but leaves me wanting for more.
    Still, it gets the job done. It's easy and fast. I like that aspect of it.

  • @Flourish38
    @Flourish38 5 หลายเดือนก่อน

    I didn’t know about structured typing, that’s actually really cool… that’s starting to feel a little bit like multiple dispatch in my Julia-brain. Definitely less powerful, but in practice I bet it’s almost equivalent.

  • @bcpeinhardt
    @bcpeinhardt 6 หลายเดือนก่อน +3

    In BEAM world defining your “error kernel” (the subset of you application where you simply have to be correct or crash) is a big part of application design 😌

  • @ProjectTurtleTech
    @ProjectTurtleTech 6 หลายเดือนก่อน +2

    I'm going to give go a go... Just say I'm going to give go a go.

  • @ikiris9456
    @ikiris9456 6 หลายเดือนก่อน

    You should rarely ever panic/crash, especially if you're a library or a goroutine, because if you're running a service that will kill the whole service. You really want to get into the habit of just returning proper errors.

  • @seannewell397
    @seannewell397 6 หลายเดือนก่อน

    Very interesting you felt that way about Go's structural type system. TypeScript would like a word.

  • @MrAlanCristhian
    @MrAlanCristhian 6 หลายเดือนก่อน +1

    I agree, structural typing is amazing.

  • @esra_erimez
    @esra_erimez 6 หลายเดือนก่อน +33

    After programming in C++ professionally, I think Go is a Godsend.

    • @i-am-linja
      @i-am-linja 6 หลายเดือนก่อน +4

      A GOdsend?

    • @esra_erimez
      @esra_erimez 6 หลายเดือนก่อน

      @@i-am-linja Precisely

    • @isodoubIet
      @isodoubIet 5 หลายเดือนก่อน

      It's really funny how people might say "structural typing is so good omg less than three" but then dunk on c++ in the same breath.

    • @Heater-v1.0.0
      @Heater-v1.0.0 5 หลายเดือนก่อน +2

      After programming in C++ professionally I find almost anything a Godsend. Assembler is good. Rust is better. I'm sure Go is great where it is usable.

    • @esra_erimez
      @esra_erimez 5 หลายเดือนก่อน

      @@Heater-v1.0.0 Oh my God, I can relate to assembler, at least with assembler you *know* that you have really cross your T's and dot your I's. I get a lot of hate for disliking C++. I think C++ was a squandered opportunity.

  • @dazoedave
    @dazoedave 6 หลายเดือนก่อน +2

    I thought it was called duck typing? Looks like a duck quacks like a duck... it must be a dog acting like a duck

    • @zyriab5797
      @zyriab5797 5 หลายเดือนก่อน

      Same

  • @k98killer
    @k98killer 6 หลายเดือนก่อน

    Python also has Protocols for structural/duck typing. The main difference is that you have to wrap each Protocol in runtime_checkable to be able to enforce it at run time, which kind of sucks.

  • @hatter1290
    @hatter1290 6 หลายเดือนก่อน

    Structural sub-typing is pretty freaking useful for scaling teams.

  • @DeanRTaylor
    @DeanRTaylor 2 หลายเดือนก่อน

    The funny thing is I started learning go because of your videos on how performant it was like three years ago but now you're saying you thought it was s**t. Maybe i misread the room, regardless I found it to be a good fit for me and am now a Go engineer.

    • @rajumondal4283
      @rajumondal4283 หลายเดือนก่อน +1

      Do u use golang in ur job ?
      Just asking

    • @DeanRTaylor
      @DeanRTaylor หลายเดือนก่อน

      @@rajumondal4283 yeah

  • @its_finn96
    @its_finn96 6 หลายเดือนก่อน +5

    Love Go, love Prime, love the uploads 🤌🏻🤌🏻

  • @christiansmith2658
    @christiansmith2658 5 หลายเดือนก่อน +2

    Your philosophy on crashing is valid but I don't think it's as universal as you might think. I used to work in aerospace and we had recovery plans within recovery plans within recovery plans. The final destination of which was an "totalizing system recovery", if you will. Your mentality has to change about these things when human lives are on the line...

  • @HaydenDoingThings
    @HaydenDoingThings 3 หลายเดือนก่อน

    Congrats on finally using a good language! 🎉 Go is crazy underrated. Has all but replaced Python for me, except for little REPL one liners.

  • @thekwoka4707
    @thekwoka4707 6 หลายเดือนก่อน

    I was hoping he was gonna say "and now iv been using go for 5 7 months, and I know it's shit"

  • @ThomasWSmith-wm5xn
    @ThomasWSmith-wm5xn 4 หลายเดือนก่อน

    typescript is a gateway drug to golang

  • @OceanSlim
    @OceanSlim 6 หลายเดือนก่อน +1

    You're going to give go a real... go!

  • @andrewmanninen1244
    @andrewmanninen1244 6 หลายเดือนก่อน +1

    I really want to like GoLang. I really do.
    My issue with it was I was trying to create an API that did some light computing on the data that it received and I kept running out of core memory for the application. No matter how I increased the memory for the stack, it would not behave after running the computation.
    Writing a similar API endpoint in nodejs with express was:
    1. Computed faster,
    2. Could be rerun without issues,
    3. Used less memory.
    I understand that I could've been doing something completely wrong with the ingested data (I was creating new objects for all 10k items in a JSON array) and I was doing this blind.

    • @ThePandaGuitar
      @ThePandaGuitar 6 หลายเดือนก่อน +8

      skill issue

    • @zyriab5797
      @zyriab5797 5 หลายเดือนก่อน

      Skill issue

  • @beest_
    @beest_ 6 หลายเดือนก่อน

    I'm a mostly Data driven programmer, but also very involved in text based languages.
    It's a very lonely place , because how prevalent text languages are and biased of text based developers.
    I honestly think you'd enjoy data driven languages too. It is utterly different paradigm and imo handles many development architects better. My opinion.😊

  • @felgenh399
    @felgenh399 6 หลายเดือนก่อน +1

    Were you overdoing Arc as well?

  • @Gornius
    @Gornius 6 หลายเดือนก่อน

    Go is such a great language, you really need to be nitpicky and have a lot of experience with it to actually point out its weak points. Every other language I tried I needed 2 hours with it to find something that annoys me or makes me anxious.

  • @kirillgimranov4943
    @kirillgimranov4943 3 หลายเดือนก่อน

    bro have known about implicit structural subtyping and the iterator pattern

  • @uuu12343
    @uuu12343 6 หลายเดือนก่อน +1

    After learning Rust, I really miss using C and am really happy with python and go

    • @kiwiladi
      @kiwiladi 6 หลายเดือนก่อน

      That's what rust does to ya. Your program is better but experience of making the program is a lot worse. Sometimes you just want to chill when you code.

  • @PhthaloJohnson
    @PhthaloJohnson 6 หลายเดือนก่อน +7

    The problem with Go for me is that it's very repetitive and its interface features are not really that great. You also don't get pattern matching or tagged unions and the error handling paradigm is kinda bad. There are just a lot of small things about it that don't really do it for me. Google's involvement in the project is not reassuring.
    While no language is perfect, I think it might be interesting if we had a language that's basically Rust, but garbage collected and maybe with a more extensive type system. You could argue that's Haskell or Ocamle but those languages just don't value reproducibility and backwards compatibility enough. If they had more of a backing from industry they would be a lot more enticing.

    • @diego.almeida
      @diego.almeida 6 หลายเดือนก่อน

      have you taken a look at Vlang? it's exactly what you're looking for, but still in alpha release.

    • @diego.almeida
      @diego.almeida 6 หลายเดือนก่อน

      Vlang is maybe what you're looking for

    • @ThePandaGuitar
      @ThePandaGuitar 6 หลายเดือนก่อน

      You don't need those features.

  • @ultraderek
    @ultraderek 6 หลายเดือนก่อน

    The Stringer interfaces is BA.

  • @srijanraghavula
    @srijanraghavula 6 หลายเดือนก่อน

    My uni taught us C. Then i started learning go, it feels so good

    • @srijanraghavula
      @srijanraghavula 6 หลายเดือนก่อน

      Dang, I should come back to this video after a good understanding of go

  • @soggy_dev
    @soggy_dev 6 หลายเดือนก่อน

    I've never thought go interfaces as being structural typing 🤔 I can see it but i associate that term so tightly with TypeScript it makes me feel weird lol

  • @GoddamnAxl
    @GoddamnAxl 6 หลายเดือนก่อน

    Structural typing good but it is also why we can’t have generic receiver method 😢

  • @FabulousFadz
    @FabulousFadz 6 หลายเดือนก่อน

    10:45 In face the guidance is that you should panic when the entire program is in an invalid state. Go panics if you try to access element 21 of a 5 element slice. That is an invalid operation and the assumption is that your logic is wrong. Likewise, as you say... when you unreachables have been reached then something is very wrong and very likely the best thing is to just dump the current state to a log and bail out. Essentially what Windows does with a BSOD. No time to figure out if this is somehow legit. This should not happen so pull the plug.

  • @conundrum2u
    @conundrum2u 6 หลายเดือนก่อน +2

    the tendency to do duck typing leads to an object doing all of the things. it leads to functions that are hundreds of lines that have a ton of side effects. the only advantage is that composition leads to excellent flexibility when refactoring. go's creators emphasizing that interfaces should be small is excellent architecture, but you can do that in most if not all strongly typed languages. strongly typed interfaces lead to your realizing that incorporating too many interfaces means the object is doing too much. of course if you're more senior you're going to have a lot of this worked out and you won't make as many of the above pitfalls, but when the possibility exists to "oh just one more thing" it will happen

    • @antoniong4380
      @antoniong4380 6 หลายเดือนก่อน

      Sounds right for me.

  • @LukeeeeBennettPlus
    @LukeeeeBennettPlus 6 หลายเดือนก่อน +1

    Came for the go, stayed for the fluent xargs

  • @ДмитрийКарпич
    @ДмитрийКарпич 5 หลายเดือนก่อน

    I try Go as my new language for pet project and its fun and horrible, just because I write GO in JS-style. And I think major criticize post about Go actually about Java-Go code. All you need - write Go Go code, its perfect.

  • @abelkasu8238
    @abelkasu8238 5 หลายเดือนก่อน

    "Loosey Goosey" lmfao

  • @bopon4090
    @bopon4090 5 หลายเดือนก่อน +1

    Bro how many channels you have?

  • @cariyaputta
    @cariyaputta 6 หลายเดือนก่อน +1

    Go is great.

  • @pleggli
    @pleggli 6 หลายเดือนก่อน +1

    I have been programming Go since before 1.0 and I never seen any issues with the structural typing interfaces.
    There are a bunch of things things in Go that potentially could be problematic (like null references) but in practise I very rarely see any null access panics reach production environments. I can probably count the number of times that has happened on one hand in the programs I have worked on.

  • @micahburnside2281
    @micahburnside2281 5 หลายเดือนก่อน

    This is so syntax heavy i won’t Go near it

    • @zyriab5797
      @zyriab5797 5 หลายเดือนก่อน

      Only 25 keywords my man

  • @phaZZi6461
    @phaZZi6461 6 หลายเดือนก่อน +1

    question: what are your editor text colors and whats the background color? i feel the contrast is just right without everything looking like a rainbow. please let me try them :P

    • @ristomatti
      @ristomatti 6 หลายเดือนก่อน +1

      I believe it's Rose Pine with the background color removed. For the background color of the terminal, I suggest you take out the color picker and grab it from the video. It looks pretty similar to what I've ended up using for years (#141414).

  • @demmidemmi
    @demmidemmi 6 หลายเดือนก่อน +1

    Having done a couple of years in go I have to say, there being no way to declare that a struct should implement an interface is up there with no enums as the most annoying traits of Go. Fixing it wouldn't even have to be a breaking change just give us a way to pin a struct to an interface for goodness sake. Even if it was just some absolute hack like using comments inside the string that would be better than nothing.

    • @diego.almeida
      @diego.almeida 6 หลายเดือนก่อน

      totally agree. Not having enums and union type is a bummer. the duck type for structs and interface is quite confusing too, and can get quite messed up if you split the implementation in multiple files. Rust is perfect in the way it addresses both things

  • @maleldil1
    @maleldil1 5 หลายเดือนก่อน

    What he described as a reason structural subtyping is good doesn't make sense to me. He literally copied the definition of the interface so he wouldn't get it wrong; would it hurt so much to declare explicitly that you're trying to implement the interface/trait/whatever so the compiler helps you?

  • @numeritos1799
    @numeritos1799 6 หลายเดือนก่อน +1

    This unironically happened to me with Java. Yes, it's very boilerplatey but using the right libraries the experience is great, OOP definitely has its upsides.

  • @The-Funk35
    @The-Funk35 6 หลายเดือนก่อน

    This might be my ignorance speaking but how is the structural typing in Go different from C++/Java interfaces? It's basically the same thing, right? Except maybe you don't have to explicitly declare what implements XYZ?

  • @dubolombI4
    @dubolombI4 6 หลายเดือนก่อน

    Why does Prime save files (:w) unchanged at 05:12, 05:14, 05:25?

    • @dustvoice
      @dustvoice 6 หลายเดือนก่อน +1

      The answer is: there probably is no reason.
      I do the same when my ADHD brain thinks about something and I use my keyboard or editor as some kind of fiddle toy. I also often unnecessarily save while editing and coding during mental pauses.
      It would be perfectly reasonable to save once you completed some kind of function implementation etc., but I just perma :w.
      I mean, when you watch the way he codes, it's all just immediate conversion of thoughts into texts so that he probably also saves in this reactionary way.

  • @crimsonmegumin
    @crimsonmegumin 6 หลายเดือนก่อน

    Impresoooon Jsoooon

  • @yonas6832
    @yonas6832 6 หลายเดือนก่อน

    and now Zig

  • @igorcastilhos
    @igorcastilhos 6 หลายเดือนก่อน

    Does he have published the code on GH?

    • @airkami
      @airkami 6 หลายเดือนก่อน

      He has tons of code on there. So, maybe

  • @AdamPoniatowski
    @AdamPoniatowski 6 หลายเดือนก่อน

    crashing works great in a container/orchestrator environment. but when it hits baremetal/VMs, then the IT/ops overhead starts to take its toll. then you need monitoring set in place, logging setup (or deployed, depending on how much your employer is willing to spend on it), etc. Crashing would then suck in prod, but it would make the noc team take their job more seriously... or rather they will no longer be bored at seeing a green board majority of the time XD

    • @Leeway4434
      @Leeway4434 6 หลายเดือนก่อน

      or you just have a daemon restart it?

    • @AdamPoniatowski
      @AdamPoniatowski 6 หลายเดือนก่อน +1

      @@Leeway4434 linux with systemd, sure... but what about the rest, like the sysv enjoyers, freebased lovers and the point-and-click adventurers aka windows admins? hence, my remark about the IT/ops overhead (meaning scripting involved to recover it automatically) ;)

  • @foxwhite25
    @foxwhite25 6 หลายเดือนก่อน

    structual typing is super hard to debug and refactor in a large codebase, it is such a pain to track down all the implement when it's effectively anonymous

  • @natethor
    @natethor 6 หลายเดือนก่อน

    Go Go Go!!

  • @jogurtnaturalny
    @jogurtnaturalny 6 หลายเดือนก่อน

    MRyogurt on the video

  • @dante600
    @dante600 6 หลายเดือนก่อน

    Impressón

  • @zeocamo
    @zeocamo 6 หลายเดือนก่อน +1

    11:28 i got a example about why you don't kill your app, or the "Java way of coding", why can't any one really use kdenlive, because if just the smallest of error happen, they kill the app, and the user lose all the work, and in the process of making a 1 hour video, you use 12 hours because it kill it self all the time.
    you can just print that and that feature have problems in a window and let the user try again,(and save) and in many cases stuff can work any way, so try to give the user the UX. and just killing the app is not that.

  • @sohn7767
    @sohn7767 6 หลายเดือนก่อน

    Empressión

  • @turolretar
    @turolretar 6 หลายเดือนก่อน

    let’s gooo

  • @TON-vz3pe
    @TON-vz3pe 6 หลายเดือนก่อน

    Keep selling

  • @dmitriyobidin6049
    @dmitriyobidin6049 6 หลายเดือนก่อน

    Is it cause of go? Or cause you left Netflix and just do what you like? )

  • @loczster
    @loczster 20 วันที่ผ่านมา

    😦😦😦

  • @nandans2506
    @nandans2506 6 หลายเดือนก่อน

    Duck typing is one of those things i don't like about go honestly

  • @AbstruseJoker
    @AbstruseJoker 6 หลายเดือนก่อน

    Tired this go love when the example programs are trivial

  • @nikgordon1288
    @nikgordon1288 5 หลายเดือนก่อน

    Ur a cutie

  • @deltapi8859
    @deltapi8859 6 หลายเดือนก่อน +2

    7K lines of a complex project like this? The guy is improving. Started as a JS kid and he's becoming a serious coder.

    • @frknue
      @frknue 6 หลายเดือนก่อน

      He should work at faang, netflix or something.

    • @deltapi8859
      @deltapi8859 6 หลายเดือนก่อน +1

      @@frknue Netflix doesn't say anything on how good a developer is. Especially at international scale.

  • @codding_ape
    @codding_ape 6 หลายเดือนก่อน

    please let me know what golang doing bettern then c# or rust, there is no reason to use this pice of shiet. I work as a golang developer over 5 years and trust me i relly do not wont to change golang to different lang, and i want to be good one but this is just poor language without any pros over this two before.

    • @obkf-too
      @obkf-too 6 หลายเดือนก่อน +3

      Here is my opinion, c# is Microsoft's shit and I will take google's shit over MS's shit any day, plus I don't want to see classes everywhere.
      As for rust, it is a different perspective to programming and I don't need the hustle that comes with it, Odin or Zig are way better IMO, plus go isn't trying to replace rust (it has a GC). Also rust is becoming the JS/TS of the system programming languages, with huge dependencies and long compilation times everywhere.

  • @micahburnside2281
    @micahburnside2281 5 หลายเดือนก่อน

    Way too many abbreviations and shortened words. Too hard to read.

  • @otockian
    @otockian 6 หลายเดือนก่อน +1

    Personally I think Go is the ugliest language.

  • @serhiiko7141
    @serhiiko7141 6 หลายเดือนก่อน +1

    415 in 14 min.
    TheVimeagen fell off

  • @windows99
    @windows99 5 หลายเดือนก่อน

    Stop using languages associated with Big Tech, i.e. Go, Java, C#

    • @motozirillo
      @motozirillo 5 หลายเดือนก่อน

      So, clojure. Got it thanks

  • @BrazenNL
    @BrazenNL 6 หลายเดือนก่อน +1

    x, err := so.annoying()

  • @KhaledKimboo4
    @KhaledKimboo4 6 หลายเดือนก่อน +1

    type Wether struct{
    Temp int32
    }
    Var t *Weather
    t==nil // True
    New temperature of 0 degrees
    t.Temp = 0
    t==nil // True (what??!!!??)

    • @diego.almeida
      @diego.almeida 6 หลายเดือนก่อน

      "In Go, the zero value is the default value assigned to a variable of a given type when it is declared without an explicit initialization. The zero value depends on the type of the variable. For reference types, like pointers, slices, maps, channels, and interfaces, the zero value is nil" - That is why it's called nil and not null, because it's essentially the zero value.

    • @massy-3961
      @massy-3961 6 หลายเดือนก่อน

      This isn’t how this works, you can’t compare a struct instance to nil in the first place it won’t compile, but even if you changed it to &Weather{}, t==nil would be false.

    • @KhaledKimboo4
      @KhaledKimboo4 6 หลายเดือนก่อน

      @@massy-3961 that's not the point just do
      var t *Weather , again you missed the point

    • @KhaledKimboo4
      @KhaledKimboo4 6 หลายเดือนก่อน

      @@diego.almeida not looking for an explanation I know all of that, bad language design leads you to this mess

    • @diego.almeida
      @diego.almeida 6 หลายเดือนก่อน +5

      @@KhaledKimboo4 well you'e comparing nil to nil why are you so surprised?