This Go package was archived. What do we do now?

Sdílet
Vložit
  • čas přidán 8. 04. 2023
  • At the end of 2022, something unexpected happened in the Go ecosystem. Due to this, a lot of code will likely need to be refactored and migrated in order to prevent against any potential future CVEs or vulnerabilities.
    In this video, I look at three other options to gorilla/mux, how to easily migrate over to any of these options and to talk about what I think this says about Go in the long term.
    #golang #coding #discussion
    My socials:
    Twitter: / dreamsofcode_io
    Discord Server: / discord
    Please consider supporting me as well!
    Patreon: / dreamsofcode
  • Věda a technologie

Komentáře • 223

  • @joro550
    @joro550 Před rokem +362

    If people were so concerned about this then they would take the project on themselves, one of the biggest negatives of open source is that people just expect everything to be free and accessible but no one contributes back

    • @user-fr2fm3ri3w
      @user-fr2fm3ri3w Před rokem +8

      Companies will if they make money from it

    • @joro550
      @joro550 Před rokem +51

      @@user-fr2fm3ri3w i would disagree, I've never seen a company take on an open source repo, they've taken advantage of them endlessly but hardly ever pay back in any way

    • @dandogamer
      @dandogamer Před rokem +33

      @@user-fr2fm3ri3w I've worked at 8 different companies and never seen them contribute back let alone sponsor.

    • @user-fr2fm3ri3w
      @user-fr2fm3ri3w Před rokem

      @@joro550 the key part is “if the make money from it”. Look at chromium Linux servers and JavaScript frameworks. Sometimes big companies even start opensource projects them selves like react.

    • @user-fr2fm3ri3w
      @user-fr2fm3ri3w Před rokem +13

      @@joro550 many people contribute to opensource as a way to demonstrate their skills and secure high paying positions. It’s especially useful if someone just finished uni but has 0 work experience. I’m this case contributing to an opensource project can make future employers feel more confident about hiring you than somebody who just has a uni degree and has had 0 experience in the industry.

  • @philipm1896
    @philipm1896 Před rokem +121

    As an open source contributer and developer myself, people are greedy and tell you about issues or what features they want but never bother fixing or contributing 😢

    • @Mempler
      @Mempler Před rokem +3

      This will look greedy but have you ever considered to ask for money for every bigger feature request?
      If there is a real need for it, someone will pay for it

    • @philipm1896
      @philipm1896 Před rokem +1

      @@Mempler you maybe correct, donation button or something might persuade me to do the work rather than relying on the open source community.

    • @Microphunktv-jb3kj
      @Microphunktv-jb3kj Před rokem +16

      It's actually because a lot of developers are not as experienced, the waorld is now filled with devs who wouldnt pass as juniors even 10 years ago.. muddle themselves thru via examples and tutorial videos, how to make something... ofc they cant contribute to open source...
      also opensource contribution doesnt actually work like you think.. most projects have handful of main devs who have made it... good example is in web JS ecosystem...
      good luck contributing into React, go make something and see if they will accept ur PR lol... never going to happen, ur just going to break the framework, because you dont understand how it all goes together and how it works under the hood .

    • @philipm1896
      @philipm1896 Před rokem +1

      @@Microphunktv-jb3kj You make good points.

    • @heroe1486
      @heroe1486 Před rokem +2

      @@Microphunktv-jb3kj You're taking an extreme exemple, most projects don't represent a percent of React but yes lack of skill is a thing

  • @shanduur
    @shanduur Před rokem +171

    The issue with Gorilla/mux was the fact that existing maintainers didn’t want anyone new and had bullshit level requirements for new maintainers. I wanted to participate in the project, but according to them, I’m too young, have not enough experience (7+ years in Go were a requirement) and they wanted someone with 3+ years experience in maintaining OSS projects.

    • @SergiobgEngineer
      @SergiobgEngineer Před rokem +57

      Some of you might be reading this and thinking that we didn’t give a fair shot to potential new maintainers, or that the bar for new maintainers was too high. The problem there is two-fold:
      There were no active contributors even triaging issues. The call for maintainers made it clear we’d help merge and do a final review for anyone wanting to start contributing. Instead, a number of folks raised their hands (read: commented in the thread) and then were never seen again. Many OSS projects have a number of casual maintainers: we just never seemed to get anyone to stick. Maybe the “utilitarian” nature of the libraries didn’t help, or maybe it was more compelling to author your own?
      These are widely used libraries. As we said in the original call for maintainers: “no maintainer is better than an adversarial maintainer!” - just handing the reins of even a single software package that has north of 13k unique clones a week (mux) is just not something I’d ever be comfortable with. This has tended to play out poorly with other projects.

    • @shanduur
      @shanduur Před rokem +8

      @sergio by no means I want to disregard or disrespect og maintainers, I think the main issue is the lack of “giving back” culture in companies using and depending on Open Source projects. Every company using OSS projects should donate time, resources or money to the projects they are using, not simply grab them and use them.

    • @balala4641
      @balala4641 Před rokem +12

      mfw people think having "must have 15 undecillion years of experience in underwater bucket weaving" is a good requirement:

    • @savire.ergheiz
      @savire.ergheiz Před rokem +1

      Dude more peoples does not always equate to better product if you have enough time on dev world you'll know that 😁

    • @twenty-fifth420
      @twenty-fifth420 Před rokem +4

      @@SergiobgEngineer For the first one, I think this is why extra modes of communication are helpful. It is easy to talk the talk, but not walk the walk.
      The second one I cannot comment on because I want to get into Open Source (Ruby, Go and C# in particular) but I don’t know where to start, how much your claim of clones in a month matter, what the impact is for the software ecosystem etc etc.
      So I am just going to nod my head and agree with what you said 😂

  • @SirAdamMcAdamson
    @SirAdamMcAdamson Před rokem +13

    Org went through an API refactor to Go last year, and went with Gin seeing the concerns with gorilla/mux. So far it's met our needs. Migrated existing codebase from express, and have built out several new microservices since with largely no issues.

  • @gordonfreimann
    @gordonfreimann Před rokem +12

    where i work, we migrated to chi a couple weeks ago. it took like 30 minutes to do so. so far we have no problem with it.

    • @dreamsofcode
      @dreamsofcode  Před rokem +1

      I think that's what we're going to end up needing to do as well!

  • @javiergomezve
    @javiergomezve Před rokem +2

    I'm currently using gin, i think is great, well documented, nice syntax. Is super easy to use

  •  Před rokem +9

    I like these microbenchmarks. 40x better, wow, most of the Go services have up to like 50 routes and also call database or other services. Performance of a router is literally non-issue in most scenarios.

    • @dreamsofcode
      @dreamsofcode  Před rokem +4

      I agree 100%. Optimizing anything that isn't the bottleneck isn't real optimization, especially as I/O is always going to be slower. I always prefer readable and maintainable code over "performance", hence why Chi is more appealing to me.

  • @kayodeadechinan5928
    @kayodeadechinan5928 Před rokem +5

    At this point, i think, i should do my best to stick with the standard library even if that implies more boilerplate.

  • @williamdrum9899
    @williamdrum9899 Před rokem +5

    I like your funny words magic man

  • @ko-Daegu
    @ko-Daegu Před rokem

    How do u edit your videos the style looks dope reason mainly why I sub 🎉

    • @dreamsofcode
      @dreamsofcode  Před rokem

      Haha it takes me a long time to edit them. I use davinci resolve!
      I'm glad you like the style.

  • @jackspdr
    @jackspdr Před 8 měsíci +2

    Archived, just means read-only. It wasn't deleted so it is still usable.

  • @SaljooqAltaf
    @SaljooqAltaf Před rokem +5

    I've been trying to create a reactive app where the backend uses rest apis for processing transactions and we sockets for providing alerts and so far guerilla seems like the only holistic solution in golang. I decided to just use the http library instead and write the logic by hand. Seems fairly easy to do in golang for now. Will worry about logging and middleware in the future

    • @dreamsofcode
      @dreamsofcode  Před rokem +3

      Agreed. It really is a wonderful package. Fortunately there's no CVE's at the moment, so it's still safe to use.

    • @ko-Daegu
      @ko-Daegu Před rokem +1

      I don’t see the issue with gin
      The reason I started to work with go from the get go

  • @Nonsense116
    @Nonsense116 Před rokem +9

    Heartbreaking to see so many problems in OSS happening recently.

  • @lukaswerner4390
    @lukaswerner4390 Před rokem +5

    I'm personally now switching over to my own router to have more control over that layer

    • @dreamsofcode
      @dreamsofcode  Před rokem +2

      That's cool! Are you using http.ServeMux or building your own abstraction?

    • @heisenberg6874
      @heisenberg6874 Před rokem +1

      @@dreamsofcode yes

  • @swibay
    @swibay Před 7 měsíci +2

    It's no longer archived now. Fun fact: I didn't even notice it had been archived

    • @dreamsofcode
      @dreamsofcode  Před 7 měsíci +1

      I have another video on its return!

    • @swibay
      @swibay Před 7 měsíci

      Watched it. It’s a great update 🔥

  • @georgelza
    @georgelza Před rokem +3

    i know i'm asking something I'm sure others asked for also, would have loved to have you compare against the Fiber framework also.

    • @dreamsofcode
      @dreamsofcode  Před rokem +5

      Haha yes a few have! I've got a video in the backlog to look at Fiber in more detail. Looking forward to doing so!

  • @khanra17
    @khanra17 Před rokem +64

    No maintainer means everybody is switched to rust

    • @tsalVlog
      @tsalVlog Před rokem +5

      This is probably more true than we all realize.

    • @dreamsofcode
      @dreamsofcode  Před rokem +23

      Haha.
      Rust had a similar drama a few years ago with Actix, although that turned out differently.
      For me, the root issue lies more with the industries relationship with open source.

    • @a_maxed_out_handle_of_30_chars
      @a_maxed_out_handle_of_30_chars Před rokem

      @@dreamsofcode this :(
      but I don't know how community will react if some industry tries to take over hte project

    • @Microphunktv-jb3kj
      @Microphunktv-jb3kj Před rokem

      or elixir :D

    • @godnyx117
      @godnyx117 Před rokem +6

      Anything other than this canceric languge

  • @aaksola
    @aaksola Před 6 měsíci

    Migrated to Chi. Went very smoothly as it has very similar interface and features compared to Gorilla.

  • @codingjitsu
    @codingjitsu Před 9 měsíci +3

    what's your thought on fiber?

  • @dandogamer
    @dandogamer Před rokem +26

    It's really not that much of a problem, the library is pretty complete

    • @dreamsofcode
      @dreamsofcode  Před rokem +14

      The bigger problem for me is the lack of maintainers who could take over the toolkit.
      There's no active CVEs though so you're right, the library is fine currently.

    • @satisfyingly1
      @satisfyingly1 Před rokem +1

      But what happens with new go versions and any deprecation or security fixes.

    • @dreamsofcode
      @dreamsofcode  Před rokem +3

      @@satisfyingly1 Yep. This is a big potential problem down the line.

  • @cccccc864
    @cccccc864 Před 6 měsíci +1

    No need to migrate! It's alive!

    • @dreamsofcode
      @dreamsofcode  Před 6 měsíci +1

      It is! I have another video on its return 😁

  • @andherium
    @andherium Před rokem

    lol the overstatement !!

  • @himabimdimwim
    @himabimdimwim Před rokem +1

    Hmm, this is disappointing news to hear. Luckily its in a good state right now, hopefully it'll get forked or maintained once something like a CVE occurs.

  • @Alex-hr2df
    @Alex-hr2df Před 9 měsíci

    I never used but the standard HTTP library or Gin.

  • @arieheinrich3457
    @arieheinrich3457 Před rokem +12

    What are your thoughts about Fiber ? From speed perspective according to the default tests, it seems to be the fastest.

    • @dreamsofcode
      @dreamsofcode  Před rokem +7

      A few have mentioned it so I'm gonna do a deep dive into it. Thanks for bringing it up!

    • @heroe1486
      @heroe1486 Před rokem +1

      @@Microphunktv-jb3kj webapps these days are an (or several) API + a frontend framework, if you're referring to a Django for go then no, but few languages have one and Django is also heavily used as an API framework these days

    • @heroe1486
      @heroe1486 Před rokem +1

      Bad reputation because based on fasthttp, being the fastest is a niche use case and you should know what you're sacrificing, namely net/http compatibility and thus a large portion of the ecosystem, it may not be worth for most people.

    • @OldKing11100
      @OldKing11100 Před rokem

      Personally, I like Go Fiber a lot as I'm building an Auth and CMS system. Losing HTTP/2 wasn't a big deal as I think HTTP/3 that uses QUIC and UDP will be a big game changer once everyone figures out how to implement it. Fiber has a healthy amount of premade middlewares also so it's quite nice, but writing your own is pretty easy. I think my biggest fear is that Fasthttp will fall by the wayside like Gorilla, but hopefully by then there will be an HTTP/3 framework.
      For those who say performance doesn't matter has never ran into the issue of scaling or having to pay for compute. Being able to stuff an app into a 1vCPU $2.50 VPS per month is pretty big for testing cheaply. Then deployment prices start to skyrocket if your app isn't able to sustain users. $20/2vCPU, $40/4vCPU, $80/6vCPU, $160/8vCPU... Go Fiber just delays the inevitable scaling issue that much longer without having to learn Rust APIs to squeeze out more efficiency.

    • @OldKing11100
      @OldKing11100 Před rokem

      @@Microphunktv-jb3kj Go is built for networking applications so it's incredibly powerful here with contexts and goroutines. I gave Rust the old college try at building an API and that was really rough with Axum which uses Tokio. I'd need another 6 months of learning Rust before I'd ever attempt that again. I remember looking at Elixir and running the other way as it gave me JVM vibes.
      As for the frontend material you are probably looking for a separate Node framework like Astro, SvelteKit, Solid...

  • @Mixesha001
    @Mixesha001 Před rokem +1

    Fiber is also a solid alternative.

    • @dreamsofcode
      @dreamsofcode  Před rokem +3

      I'm going to have to give it a go!

    • @climentea
      @climentea Před rokem

      Go "purists" ditch Fiber because it's not compatible with standard net/http library...

  • @TheRealisticNihilist
    @TheRealisticNihilist Před rokem +3

    Someone is going to fork it, guaranteed.

  • @egmluvr
    @egmluvr Před rokem

    Wes McKinney is laughing in the background...

  • @inaccessiblecardinal9352

    We have alternatives, and you can roll your own. It's your job, quite literally.

  • @its.arjun.s
    @its.arjun.s Před rokem +5

    Lol
    You know
    Express js is not maintained at all but every single backend js dev I know still use it even though there are so many properly maintained options

    • @victorray9369
      @victorray9369 Před rokem +4

      It’s wrong to say that express is not maintained. Express is stable. Expres 5 is beta for long time as they are working slowly for new feature due to stability.

    • @heroe1486
      @heroe1486 Před rokem +1

      @@victorray9369 Very slowly then, still no async route handlers, and nobody but the stability thing, the tracking issue for 5.0 has been opened in 2014 ... the developer himself have moved to another library, namely Koa, people just don't want to move because following the bandwagon, so yeah "somehow" maintained

    • @ThePandaGuitar
      @ThePandaGuitar Před rokem +1

      Express is stable and does not need any new stuff. It's minimal and works like a tank.

  • @tmahad5447
    @tmahad5447 Před 10 měsíci

    the last commit on mux was 2 weeks ago

  • @escapadechannel8379
    @escapadechannel8379 Před rokem +1

    what about fiber ?

  • @nutelhere
    @nutelhere Před rokem

    I mean, someone's gonna pick it up eventually if it gets outdated. Or start a new project. People can always migrate their systems to a more up-to-date library if they needed to. Also, maintainers often work for free, and they may lose motivation or dont have time, etc. In the first place - OSS is free to use, and you just cannot demand someone work for free. And finally, it's not a problem in OSS, but with people being used to thinking that they should get things for free.

    • @dreamsofcode
      @dreamsofcode  Před rokem +1

      I think the problem is that no one picked it up, despite lots of companies using it. Surely the cost of maintaining the package is cheaper than migrating.
      I don't think there's any expectation that anyone work for free. I just ask for more from the stdlib.

    • @AcidiFy574
      @AcidiFy574 Před rokem

      The solution is to make it copyleft

  • @satisfyingly1
    @satisfyingly1 Před rokem

    I like Chi

  • @IncomingLegend
    @IncomingLegend Před 7 měsíci +1

    if using native language features is such a headache, then at this point you should consider using another language...

  • @AdharshMk96
    @AdharshMk96 Před 11 měsíci

    They got some red hat devs maintaining it now

  • @snotchy2
    @snotchy2 Před rokem +2

    Just build your own. The go community pretty much is anti packages

  • @eduardabramovich1216
    @eduardabramovich1216 Před rokem +3

    what you think about Fiber?

    • @dreamsofcode
      @dreamsofcode  Před rokem +1

      A few people have mentioned it so I'm interested. Going to take a look and maybe do a video!

    • @seanknowles9985
      @seanknowles9985 Před 11 měsíci

      Fiber is number 1

  • @ThePandaGuitar
    @ThePandaGuitar Před rokem +5

    Go devs, JavaScript is waiting for you :D

  • @zigggen
    @zigggen Před 8 měsíci

    Go-Fiber

  • @EightSixx
    @EightSixx Před rokem

    Thoughts about Fiber?

    • @dreamsofcode
      @dreamsofcode  Před rokem

      It looks pretty good, although it's similar to Gin and Echo it seems, so breaks the `http.Handler` interface.

  • @ko-Daegu
    @ko-Daegu Před rokem

    So back to Gin I guess 😂

  • @RedStone576
    @RedStone576 Před rokem

    rip go

  • @CURIOSITYcapital
    @CURIOSITYcapital Před rokem +3

    I knew it..lot of open source projects are going to be abandoned.

  • @jazzycoder
    @jazzycoder Před 10 měsíci +1

    Gorilla Mux is now being maintained again and is unarchived.

    • @dreamsofcode
      @dreamsofcode  Před 10 měsíci +1

      You're correct. I have another video on this as well

  • @muhaha21
    @muhaha21 Před rokem +4

    How about fiber ? :D

    • @dreamsofcode
      @dreamsofcode  Před rokem

      A few have mentioned it so I'm gonna do a video on it. Thanks for bringing it up!

  • @shmuelbisberg4396
    @shmuelbisberg4396 Před rokem +2

    What about Fiber???

    • @dreamsofcode
      @dreamsofcode  Před rokem

      I'm going to have to give it a go! A lot of people have recommended it. Excited to try it

    • @dreamsofcode
      @dreamsofcode  Před rokem

      I'm going to have to give it a go! A lot of people have recommended it. Excited to try it

  • @bebobauomy1265
    @bebobauomy1265 Před rokem

    Did you try fiber?

  • @jorgealarconalvarez
    @jorgealarconalvarez Před 2 měsíci

    This is already fixed, gorilla has new maintainers

  • @flamendless
    @flamendless Před 11 měsíci

    What about fiber?

  • @dylhack
    @dylhack Před rokem

    This is really bad for Caddy.

  • @GmanGavin1
    @GmanGavin1 Před rokem +2

    You know what, I think there is a bigger problem. The learning resources. Why are there tons of tutorials on these APIs but hardly any for not using them.
    An archived project feels like it's treated like the death of a god and their magical blood will soon dry out.
    I really really wish content would better show how "black magic" everything actually isn't.
    I thought programming was about making solutions not waiting for others to. Just a rant from me where I accidentally figured out how to do season auth from standard go and my brain broke because "it can't be that simple otherwise there wouldn't be 0 tutorials on it"

    • @dreamsofcode
      @dreamsofcode  Před rokem

      Interesting take! Of course, everything can be achieved using the stdlib, but then we live in a world now where we have reusable code and abstractions. Coming from C++, I tend to use dependencies less, but that doesn't change the fact that a large number of repositories were dependent on gorilla/mux and other packages in the gorilla toolkit.
      I don't think it's going to be the death of Go or anything close to that, just a moderate headache in the long term as projects have to be migrated. I'm more concerned how a package like gorilla/mux can end up archived and without maintainers, especially as I would consider some larger companies are using it.

  • @pepperparkffm
    @pepperparkffm Před 11 dny

    As of today, gorilla/mux is not archived and seems to be actively maintained. Isn't it?

    • @dreamsofcode
      @dreamsofcode  Před 11 dny +1

      I have a couple of other videos in this series! There's one about Gorilla being back and another about using the standard library following Go 1.22.

  • @delduked
    @delduked Před 7 měsíci

    Why no gofiber?

    • @EricDBrown
      @EricDBrown Před 5 měsíci

      Because it's based on fasthttp, which isn't compatible with the standard library, and doesn't support HTTP/2. Very niche (if at all) circumstances where it would even remotely be beneficial.

  • @willi1978
    @willi1978 Před rokem +3

    Gorilla can still be used. It is just not developed anymore.

    • @dreamsofcode
      @dreamsofcode  Před rokem +1

      Absolutely, although let's hope there's no bugs in there.

  • @voidwalker7774
    @voidwalker7774 Před rokem +4

    Well, you still can use Rust, with its web frameworks, like Actix-Web, Axum or Rocket :D

    • @shadowangel8005
      @shadowangel8005 Před rokem

      Rust frameworks are very good. Rocket could be maintained more and Axum could do with more documentation but it's a very good start.

  •  Před rokem +4

    Is this actually a go killer situation ?

    • @tsalVlog
      @tsalVlog Před rokem

      For user-facing web services? Maybe. Not necessarily for glue / automation / protocol implementation.

    • @marcs9451
      @marcs9451 Před rokem +1

      no

    • @nictibbetts
      @nictibbetts Před rokem +1

      Lol what the fuck are you talking about

    • @dreamsofcode
      @dreamsofcode  Před rokem +10

      No, absolutely not. Go will be fine, especially as there's alternatives. I think it's just a headache to migrate over.
      The main issue for me is the lack of a decent router in the stdlib and that gorilla was unable to find maintainers.

    • @Microphunktv-jb3kj
      @Microphunktv-jb3kj Před rokem +1

      ​@@dreamsofcode It's because oldschool coders are not morons and dont want to work for free... my freiend always laugh how stupid JS ecosystem people are.. early 20s people maintain stuff for free like slaves.. and by the time theyh are 30, completley burnt out
      that was the answer when i asked why he has almost empty github profile since he has worked as back-end engineer for 15~ years.

  • @code1860
    @code1860 Před rokem

    Your content would be much better without background sound. Please consider.

    • @dreamsofcode
      @dreamsofcode  Před rokem +2

      I shall consider! Thank you for the feedback.

  • @massy-3961
    @massy-3961 Před rokem +1

    You missed Fiber, the best one of all

    • @dreamsofcode
      @dreamsofcode  Před rokem

      A lot of people do love Fiber! It looks pretty good.

  • @AmarjeetAnandsingh
    @AmarjeetAnandsingh Před 11 měsíci

    WTF thumbnail says. 😝
    Its a problem with mux, not Go.

  • @304nokia
    @304nokia Před rokem

    Hello, why are you deleting my comments with help on the topic?

    • @baxiry.
      @baxiry. Před rokem

      youtube removes any comment contains a link

    • @dreamsofcode
      @dreamsofcode  Před rokem

      Not me. Might be that CZcams is removing them?

  • @ruralcoder
    @ruralcoder Před 7 měsíci

    Go Fiber is sooooo much better

  • @post1999
    @post1999 Před rokem +3

    PHP for the win :-)

  • @spiritualagnostic209
    @spiritualagnostic209 Před rokem

    hetchTTP?

  • @mentalmarvin
    @mentalmarvin Před rokem +6

    Go's wasm frameworks has also been dying. I don't know if Go will still be around in the future. I moved to Rust

    • @baxiry.
      @baxiry. Před rokem +1

      Where did you get this information??
      Go and tinygo both support wasm

    • @mentalmarvin
      @mentalmarvin Před rokem

      @@baxiry. I mean like Vecty and Vugu for frontend wasm. I'm using Yew now

    • @voidwalker7774
      @voidwalker7774 Před rokem +2

      Welcome to the Rust-Family :D

    • @heroe1486
      @heroe1486 Před rokem +5

      I moved from python to Assembly

    • @dreamsofcode
      @dreamsofcode  Před rokem

      I'm a big fan of Rust.

  • @terrencemoore8739
    @terrencemoore8739 Před rokem

    Was going to try go and the install kept failing. That's all she wrote for go😂

    • @dreamsofcode
      @dreamsofcode  Před rokem

      I remember back when you had to only write code in the $GO_PATH. That was a nope from me. I'm glad they changed that.

  • @nictibbetts
    @nictibbetts Před rokem +1

    lol that’s what happens when you use third party dependencies.

    • @dreamsofcode
      @dreamsofcode  Před rokem

      Aye. It's always a risk. I just wish the stdlib would provide a better solution.

  • @jsonkody
    @jsonkody Před rokem

    Its aitch not haitch 😅

    • @dreamsofcode
      @dreamsofcode  Před rokem +1

      I will never forgive whoever created a letter without it's own sound at the front 😂

    • @jsonkody
      @jsonkody Před rokem

      ​@@dreamsofcode yeah .. this year I've discovered many stupid things about how english write things vs how it pronounce them - it's so unbelivebly inconsistent.
      In my language (czech) we are very consistent about how things are written and read. English is just a mess overall.
      PS: in the video you sometimes say 'aitch' and sometimes 'haitch', I've found that very interesting. Mostly people say it just one way, right .. or wrong xD

    • @dreamsofcode
      @dreamsofcode  Před rokem

      @@jsonkody I grew up saying "haitch" which I later realized was incorrect. Now I try to force myself to say "aitch" but it's very hard to relearn how to pronounce something. Since moving to the U.S. I also try to pronouce `tu` sounds as `too` instead of `choo` which is the British way. (i.e. "Toosday" instead of "Choosday")

    • @jsonkody
      @jsonkody Před rokem

      @@dreamsofcode hmm, that must be difficult .. I was told as a little youngling that H is pronounced 'aitch' so I really never didn't think about that much. And a few years back I've discovered that there is a lot of people who say 'haitch' and that it's all some secret war of 'haitchers' vs grammar nazis.
      Btw also I've found that many people across the world mistake two words: his/her .. and I absolutely don't know why. Maybe there are languages where they have only one word for both sexes? I don't know :D

  • @savire.ergheiz
    @savire.ergheiz Před rokem

    Just move on nothing to see here 😂
    Its just the way oss nowadays, either that or its being under developed project owned by enterprise like flutter it goes nowhere now so F slow in development 😂

  • @Stopinvadingmyhardware
    @Stopinvadingmyhardware Před rokem +3

    Not going to miss it, Erlang is better

    • @nictibbetts
      @nictibbetts Před rokem +5

      Miss what? How does a third party dependency equate to a programming language?

    • @dreamsofcode
      @dreamsofcode  Před rokem

      I really like Elixir, but that memory usage is so high 😭

    • @heroe1486
      @heroe1486 Před rokem

      @@nictibbetts Man you're on CZcams, that's like Reddit, the average comment is made by a dunce.

  • @necroowl3953
    @necroowl3953 Před 10 měsíci

    Overrated package

  • @meaningfulname9437
    @meaningfulname9437 Před rokem +1

    Now I know why GO is garbage.

  • @soundofprice
    @soundofprice Před rokem

    fibre is better

    • @dreamsofcode
      @dreamsofcode  Před rokem

      I'm also a fan of the British spelling 😉

    • @soundofprice
      @soundofprice Před rokem

      ​@@dreamsofcode yes....spelt be the English