Complete Rewrite In Go!

  Рет қаралды 217,794

ThePrimeTime

ThePrimeTime

Күн бұрын

Пікірлер: 382
@kafran
@kafran Жыл бұрын
“Go is like eating vegetables”🥕 Not tasty but good for your health. Love it. 😂
@_bradleystrider
@_bradleystrider Жыл бұрын
anyone who complains about veggies not being tasty just doesn't know how to season food
@danielvladco
@danielvladco Жыл бұрын
I love veggies 😋
@bryanenglish7841
@bryanenglish7841 Жыл бұрын
It's certainly been good to my salary and job opportunities
@blue5659
@blue5659 Жыл бұрын
Stop watching powerpuff girls, greens are tasty. Go is like a bad attempt to replace cpp as a next c. Insluters of cpp should atleast do a better job than cpp. How can people who wrote c and unix do a worse job and make go. I dont know why people like go and java. Its like tom in large scale.
@XDarkGreyX
@XDarkGreyX Жыл бұрын
​@@_bradleystridertrue true. Seasoning lets me eat veggies I despise to this day.
@BanAaron
@BanAaron Жыл бұрын
and then I rewote it in Rust
@jacquesfaba55
@jacquesfaba55 Жыл бұрын
And then rewrite that in CrabLang 🦀
@thingsiplay
@thingsiplay Жыл бұрын
@@jacquesfaba55 And then rewrite that in OCaml.
@whamer100
@whamer100 Жыл бұрын
@@thingsiplay And then rewrite it in zig
@realmimak
@realmimak Жыл бұрын
it's gonna be rewritten in js anyway so why bother
@livghit
@livghit Жыл бұрын
And it took us 5 years to finish the project
@AndersGustafsson87
@AndersGustafsson87 Жыл бұрын
Im convinced these blog reviews are just prime practicing his reading skills. I like it though, keep em coming, it somehow works
@ThePrimeTimeagen
@ThePrimeTimeagen Жыл бұрын
Thank you! I really enjoy doing this because it gives me a bunch of perspectives, I can think about them and argue with myself and with chat. It's a really fun time
@mannycalavera121
@mannycalavera121 Жыл бұрын
​@@ThePrimeTimeagen ​is also quality, enjoyable, but lower effort content. Win win
@KevinInPhoenix
@KevinInPhoenix Жыл бұрын
Several years ago I did a Go rewrite of a Perl codebase of a task scheduler program and its utility programs used by an ERP system. The task scheduler is used by the ERP system to run reports and ERP processes at scheduled times, days, and dates. It was becoming increasingly difficult to distribute the Perl code due to its reliance on external dependencies. Go's single binary distribution is what sold me on the project. The ease of the rewrite and the ability to use Go's goroutines to implement per O/S process monitoring instead of the Perl version's status loop monitoring was great.
@dsysd-dev
@dsysd-dev Жыл бұрын
kzbin.info/www/bejne/qHW2gKOoaNCojac
@ericb7937
@ericb7937 Жыл бұрын
Ok and what was the performance benefit?
@KevinInPhoenix
@KevinInPhoenix Жыл бұрын
@@ericb7937 The Go program used less CPU time and memory than the Perl program.
@adaniel2929
@adaniel2929 4 ай бұрын
@@KevinInPhoenix Don't forget it can now be maintained in Go instead of Perl
@TechBuddy_
@TechBuddy_ Жыл бұрын
I want a compilation of all the "The name is a ...agen"s. It just feels good hearing those 😂
@awikwok212
@awikwok212 Жыл бұрын
Someone make it, damn feel good
@dsysd-dev
@dsysd-dev Жыл бұрын
kzbin.info/www/bejne/qHW2gKOoaNCojac
@LambdaCalculator
@LambdaCalculator Жыл бұрын
You should really check out some of James Coplien's talks, he works with shops that successfully rewrite their codebases every 3 years. The problem people have with rewrites, is that they don't do them often enough. The longer you wait to do a rewrite, the more of a pain it's gonna be. Rewrites should be undertaken when the relevant domain knowledge is still fresh, so that the lessons learned from building the last iteration can be transferred to and codified better in the structure of the next one. If no one knows why something is there in the original codebase, then it's already too late to have a smooth rewrite. It's literally the same dynamic as refactoring smaller chunks of code, except that smaller refactorings are forced to keep the overarching structure of the system the same instead of rethinking it as well. Focusing exclusively on small refactors just leads to the silly situation of having fresh clean code for an outdated/clunky system design. Rewrites are just the holistic logical conclusion of refactoring.
@peppybocan
@peppybocan Жыл бұрын
Look, simple language like Go lets you focus on the product, on deliveries. Compare that to C++. Should you use this feature, or that feature, east pointers, west pointers, consts? auto? constexpr? constexpr if? Move? Or just copy? Pointers or references? And virtual tables? And standard library? And templates? Shared pointers? What about unique pointers? Why not raw pointers? Inheritance? Composition? Abstract classes? Who owns this piece of data?! And modules, And everything under the Sun... and you spend more time with the analysis paralysis and days go by. Go is simple, there is only one way to do it, just do it. Go! DGAF, just Go.
@deniyii
@deniyii Жыл бұрын
👏🏿👏🏿 beautiful
@isodoubIet
@isodoubIet Жыл бұрын
C++ is complicated because it solves complicated problems. It's pointless to compare with a language that declared all the hard problems to be outside of its scope; of course that language will be simpler.
@peppybocan
@peppybocan Жыл бұрын
@@isodoubIet and C doesn''t solve complex problems? What the actual fuck?
@elcugo
@elcugo Жыл бұрын
Most of your questions have clear answers: use the new features over the old ones that they replace, don't use raw pointers, avoid c-isms, don't use raw pointers, use smart pointers or RAII and for the love of Odin, don't use raw pointers.
@isodoubIet
@isodoubIet Жыл бұрын
@@elcugo I find raw pointers are often the best option for class members because they usually have the right semantics I want and aren't implicitly const, so they don't ruin the compiler-generated assignment operator and/or force me to use dirty hacks like std::launder. But I agree, _owning_ raw pointers have to die in a fire. In general I find this whole hemming and hawing about how complicated and awful C++ is to be vastly overstated in practice. I work with a lot of people with science backgrounds and little development experience. Juniors, essentially. We often do that thing where prototype code is written in python and later translated to C++. Basically all of them end up telling me how much python frustrates them and how much nicer C++ is to work with. "Oh but everyone will be paralyzed by indecision because the language doesn't force an opinion on how to align the */& with pointer/reference types!". It's ok, I do, and I set up clang-format to handle it and nobody has to think about it anymore. The compiler error messages are bad, that's true, but at least they don't happen 5 hours into a test because of a typo.
@woody5012
@woody5012 Жыл бұрын
It's definitely not perfect, though what language is, but I do love Go. It's brilliantly simple, easy, efficient, and has a lot of excellent tooling built around it.
@nodidog
@nodidog Жыл бұрын
Nothing is perfect though! Go strikes a great balance for most things
@nalcij
@nalcij Жыл бұрын
Yea I’ve noticed that too. Strikes a good balance between low and high level programming
@quarteratom
@quarteratom Жыл бұрын
Do you need a Google account to develop in Go?
@woody5012
@woody5012 Жыл бұрын
@@quarteratom Not to use it, no
@nafakirabratmu
@nafakirabratmu Жыл бұрын
Go is just vegetables until you start delving into channels and goroutines, they are delicious. I feel like a lot of people just look at Go and think, it's just a C with GC and inverted syntax, without realizing how elegant and powerful the goroutines and channels are (CSP)
@davidmcdonnel4831
@davidmcdonnel4831 Жыл бұрын
This. Only gripes were using struct{} in worker pools doubled overhead (deep in the reflect library every handoff was duplicating the object), and the lack of generics until 1.18. All the people complaining about Go error handling either : a) didn't have the foresight to write their own error handling b) worshipped uncle bob martin's minimal line rules and forgot about the other rules (a function should do one thing in one layer of abstraction) c) didn't have a language server installed with an autocomplete feature and were grumpy they had to write the same thing repeatedly d) junior devs used to only writing javascript or python happy path code
@МаркЧолак
@МаркЧолак Жыл бұрын
@@davidmcdonnel4831well the current error handling approach is still somewhat controversial. There are quite a few issues about it in go repo with solid arguments on both sides. I'm certainly not going to pass judgment on the current error handling solution - I use it as it is, it doesn't bother me much, but (hopefully) there's always room for improvement. The most unpleasant thing for me personally is when error checking is done several times in one scope in the following form: `if err != nil { return err }`. Really? This looks questionable for two orthogonal reasons: 1. Either it's poor error handling: no additional context is added to the error in the format `return fmt.Errorf("expect file to be writable: %w", err)` (as an example) 2.Either additional context is not important in current scope at all: all possible errors belong to one particular process in general, from which the error context will be clear even on stacks above. And then the repetition of the same constructions `if err != nil { return err }` looks excessive. And how am I supposed to figure out which particular case I'm looking at? Anyway, go has accustomed me to unhappy path and early return approaches and I use it effectively even in other languages.
@davidmcdonnel4831
@davidmcdonnel4831 Жыл бұрын
@@МаркЧолак I'm sure everyone wants to handle their errors differently, and there's a lot of flexibility. Golang has always had the ability to return multiple outputs which allows for errors to bubble up without using panic or try/catch. You could also use error channels to early cancel a unit of work from any stack depth. Breaking your app into layers, having error types specific to each layer (api, database, business logic, etc.), having an app wide logging channel for a fmt.Errorf that includes stack traces and other context, and another channel for application halting errors so you know when to gracefully terminate the process would be the most generic overall coverage (look into thread spooling for graceful failure logging). Just bundle it all up into a single object and append it to function arguments. Added benefit of being an entry point for a dummy test harness. You can use a closure like a try/catch/finally it just will be less performant than writing the error check and more hassle for a single error check. In general though, it's good hygiene to add context to errors right where they occur. Most developer time is spent debugging in the long run. Better to pay the toll up front.
@zhamed9587
@zhamed9587 Жыл бұрын
Until you start hitting race conditions, and writing convoluted code because golang doesn't have futures or tasks that allow returning values from them and synchronizing on them, and don't forget to pass context.Context everywhere and make sure you handle it correctly.
@nafakirabratmu
@nafakirabratmu Жыл бұрын
​@@zhamed9587 You are obviously way under qualified on this topic, and you're just making a fool of yourself. I would suggest reading "Do not fear first class functions" by Dave Cheney and watching Bryan Boreham's "An Actor Model in Go" presentation from Golang UK Conference 2016.
@oskrm
@oskrm Жыл бұрын
One go a day keeps nodejs away
@JohnDoe-mr6mq
@JohnDoe-mr6mq Жыл бұрын
It took a few to fall in love with Go and not willing to return to node anymore
@RaZziaN1
@RaZziaN1 Жыл бұрын
@@JohnDoe-mr6mq Are u sure? I've heard from colleagues that go is too easy and because its too easy it's unbearable to do hard things.
@JohnDoe-mr6mq
@JohnDoe-mr6mq Жыл бұрын
@@RaZziaN1 I guess it's their experience. Since I don't know your colleagues, I'd rather believe Google's success with it
@Patrickdaawsome
@Patrickdaawsome Жыл бұрын
@@RaZziaN1I completely agree with your take.
@dsysd-dev
@dsysd-dev Жыл бұрын
kzbin.info/www/bejne/qHW2gKOoaNCojac
@20dareason09
@20dareason09 Жыл бұрын
Prime is literally the only objective person in the Go versus Rust eternal debate. Everyone else is just stuck in my-tribe-your-tribe mentality. Is everyone egotistical? Evolve!
@ardawanx
@ardawanx Жыл бұрын
Some people are just too competitive and RUST is a good tool for them to show off they do better than others... Btw he is like 99% of developers who love to shove hundreds of libraries into a project. BUT must be in RUST. 😉
@gerooq
@gerooq Жыл бұрын
@@jamesnewman9547ain’t no way
@programaths
@programaths Жыл бұрын
@@jamesnewman9547 And most people don't even know all the bells and whistles of PHP. A nice one is the automatic initialization of arrays. $a['b']['c']['d']='e'; That statement just works and creates three arrays. Throw an exception in most other languages. So, no need to check if there is an array; just use the append operator: $a['b']['c']['d'][]=1; $a['b']['c']['d'][]=2; The first line would create an array of array of array of the array with 1. The second line would append 2 to the most profound array. I would not use PHP anymore though 😂
@zhamed9587
@zhamed9587 Жыл бұрын
golang and rust are not even in the same category, I don't know why people still compare them.
@nalcij
@nalcij Жыл бұрын
It really depends on the project.
@vanclief
@vanclief Жыл бұрын
Go is my favorite language, because its just super productive. Its indeed not sexy, but when you just care about getting the problem solved, its your best friend.
@hamzanajji8615
@hamzanajji8615 Жыл бұрын
I used to work in company were we had to migrate from spring boot 1.5 to 2 and as a result we had to rewrite our entire microservice stack . it was a nightmare because we ended having two teams where the first team keep adding new features to the old code and another team that keep migrating to the new one , the whole process took us about 3 years to finish and deploy
@jamlie977
@jamlie977 Жыл бұрын
go is probably my favorite language so far, i'm doing some projects in it for fun and i can see myself being productive in it, also the performance is pretty good
@jarnathan-snow
@jarnathan-snow Жыл бұрын
exactly, productivity and performance, the only two things a company should care about.
@hamm8934
@hamm8934 Жыл бұрын
Go is one of my favorite languages because how simple it is, how robust the standard library is, and how few updates it gets. Learn a Go standard package and that knowledge will be viable for years. Big fan.
@quarteratom
@quarteratom Жыл бұрын
If it's such a good language, why can't it support the superior style of bracing? Checkmate.
@maximofernandez196
@maximofernandez196 9 ай бұрын
​@@quarteratomjokes aside, I was like "what?" when I tried an else right in the same line of the if. Well, at least that is always consistent
@JonathanRose24
@JonathanRose24 Жыл бұрын
A straight rewrite is hard to justify unless the current code is so bad that you’re losing enough revenue to justify the cost (both the direct cost and opportunity cost). But a re-platforming can be more easily justified. If you do a rewrite as part of creating your “next generation” platform, now you can gain support outside of engineering by offering a better feature set that should help to bring in more revenue
@alangamer50
@alangamer50 Жыл бұрын
I love Go, such a simple language, with really clean syntax. It is a dead simple language and anyone can pick it up very quickly, however, I feel like Go sometimes tries too hard to make things simple, and they actually get more complex, like the critical lack of built-in methods. Why can't I have a Contains(array, element) on the standard library, no I fucking have to write it myself. It's not like it takes more than 2 minutes but damn is it annoying. Then there is Rust, it is so similar to go, yet it is almost a complete opposite. Rust is an extremely complex language with possibly hundreds of built-in methods for everything you could imagine, even more so than python, with a complex and expressive syntax, that will make it very clear what you are doing but also sometimes ends up with shit like Vec
@TheMr82k
@TheMr82k Жыл бұрын
you just described the exact reason why shifting to go from a Node and Js experience is tough. Some common string manipulation you'd expect, casting integers and decimals but like they purposefully not support it to make it more cryptic
@dsysd-dev
@dsysd-dev Жыл бұрын
kzbin.info/www/bejne/qHW2gKOoaNCojac
@yakwilik
@yakwilik Жыл бұрын
go has Contains function in `slices` package: slices.Contains([]uint64{1, 2, 3}, 3) == true
@abcabc-ur3bf
@abcabc-ur3bf 3 ай бұрын
One thing these click bait articles will never talk about is how much they have learnt in the original implementation. When they did the rewrite, they already knew the problem domain and the solution domain so well, and probably knew all the quirks for testing. The most time consuming part is not the coding part but figuring out the requirements, crafting the design and verifying the solution. The rewrite is fast because they already knew almost everything
@BloodEyePact
@BloodEyePact Жыл бұрын
This outro resonated with me. I had a similar experience with Haskell at the end of my Undergrad, only to find there were no jobs for it that didn't require 10 years experience or a PhD, so I wound up at my current company mostly writing Java and Python, until getting roped into the Docker/Kubernetes ecosystem, which is all in go, so now that's 90% of what I write now. I do like it for its simplicity, but find it somewhat restrictive (less so now that we have generics), but I still find my perspective and problem solving instincts are still colored by my time with Haskell, and I imagine it'll be the same if rust ends up imploding on itself.
@Palundrium
@Palundrium Жыл бұрын
10:26 "Go is like literally the dumbest language possible" And that's what makes it so good
@nyahhbinghi
@nyahhbinghi 10 ай бұрын
yes and no - using interface{} everywhere introduces bugs and the data races and unsafe access to nearly everything is bad
@likwidsage
@likwidsage Жыл бұрын
Go is great for getting working done quick. And I enjoy that feeling at the end of the task. If there was a measurement for dev cycle to performance, Go would probably top that list, all other things being equal.
@zhamed9587
@zhamed9587 Жыл бұрын
It just gives the illusion of doing work because of how verbose it is.
@likwidsage
@likwidsage Жыл бұрын
@@zhamed9587 I disagree. It's only an illusion if you determine work done by LOC, but then you have bigger issues. Go simplified high level programming much like what Rust does for low leveling programming.
@zhamed9587
@zhamed9587 Жыл бұрын
@@likwidsage golang didn't really simplify much. What constructs exactly did it bring to simplify that aren't available in Java or C#?
@likwidsage
@likwidsage Жыл бұрын
​@@zhamed9587 The most obvious thing that pops into mind is its concurrency/parallelism handling. The way it handles "classes" with interface and structs is also much simpler and more enjoyable DX. Deployment is much simpler as it doesn't require an interpreter (java) while maintaining cross platform compatibility (c#). Sure maybe it's concurrency is the only "real" thing it *bought*, but it also cut out the many ways to similar tasks. ie you iterate using for...range, regardless of whether it's an array, slice or map. Perhaps the most telling is the fact that Go is 25 keywords in total compared to 67 and 79, for java and c#, respectively. It's pretty much accepted that it's simpler; I don't think there's a simpler language that lets you do as much and gives you the same performance. You can even read all the comments below. Now whether simplicity is actually a negative or a positive is a whole different topic.
@Brajgamer
@Brajgamer Жыл бұрын
​@@zhamed9587Go didn't bring any construct and that's the whole point of go.
@bluehugh2
@bluehugh2 Жыл бұрын
Love how dude in the chat just got roasted for preferring allman syntax 😂
@ThePrimeTimeagen
@ThePrimeTimeagen Жыл бұрын
That syntax is just so verbose. I don't need that much white space.
@laughingvampire7555
@laughingvampire7555 Жыл бұрын
10 years ago, hipsters used ruby, today they use rust
@ficolas2
@ficolas2 Жыл бұрын
ok so, you have terraform, whose main purpose is to have infraestructure as code, then these guys make a wrapper, to use terraform, with a UI? I dont get it.
@aspiesoft
@aspiesoft Жыл бұрын
After starting to use go, I notice I spend less time debugging over simple problems like a typo, or an unhandled error.
@Jarek.
@Jarek. 11 ай бұрын
Go is like a fat and funny lady friend to whom you always come back to 🤣
@alexpyattaev
@alexpyattaev Жыл бұрын
You can compile python into static binaries with nuitka. It will produce somewhat oversized binaries, but much smaller than shipping python in docker. Also startup times get way better.
@arjix8738
@arjix8738 Жыл бұрын
pyinstaller bundles python and it is like 10~15 mb of extra size
@isodoubIet
@isodoubIet Жыл бұрын
@@arjix8738 I don't know what nuitka does but what pyinstaller does is essentially bundle an interpreter, extract everything to a tmp folder, and run everything there. It's a little silly tbh, and if you care about the startup times, all that unpacking makes it even worse.
@alexpyattaev
@alexpyattaev Жыл бұрын
@@isodoubIet Nuitka is a very cool python translator it replaces the interpreter loop with hardlinked calls to the functions that would have been called by the bytecode. If you have never tried it and you use python in production - you should try.
@asdfasdf9477
@asdfasdf9477 Жыл бұрын
Go was designed with a bunch of python projects in mind, it’s like Hack and php in Facebook, your python just slides into go like hand into a glove.
@Sapperbounded
@Sapperbounded Жыл бұрын
Go is the most bored I've ever been writing in a language. It also "just works", so i cant be too mad about it.
@jamlie977
@jamlie977 Жыл бұрын
that's me in C# as well, i find Go to be very nice and i enjoy using it (even though i used to hate it)
@Akhbash
@Akhbash Жыл бұрын
6:11 For python development i prefer pyenv + poetry, together they are like nvm + npm ;D
@bloody_albatross
@bloody_albatross Жыл бұрын
Oh, like nvm? I was looking for something that can manage different Python version installations.
@heroe1486
@heroe1486 Жыл бұрын
​@@bloody_albatrosspyenv let's you do that, you can for exemple just write "pyenv 3.8 shell" and your current shell would be using python 3.8, you just need to download it beforehand.
@fb-gu2er
@fb-gu2er Жыл бұрын
Using a scripting language for backend is madness
@ea_naseer
@ea_naseer Жыл бұрын
​@@fb-gu2erit's called scripting for a reason it's supposed to call efficient code but it usually doesn't
@TheHackysack
@TheHackysack Жыл бұрын
@@bloody_albatross I wrote a shellscript to do that for me. It's essentially a clone of Python Launcher for Windows, but with minimal features. Similar to the comment below yours, I only ever need to do `py -3.8` to interact with that version. However, every time I show it to someone, they ask "why do you have so many Pythons that you need a script to manage them?" It's obviously Linux only, requires that you download the Python version beforehand, and also that you install them all into a single location. As you can imagine, that got tiring to manage myself. So, now I just issue a `py --build` and it does it for me.
@canadianblitz3468
@canadianblitz3468 Жыл бұрын
Exceptions are the best part of programming! They tell you that you don't know what you're doing.
@vladimirburian8439
@vladimirburian8439 Жыл бұрын
It depends on scale and context. Huge rewrites taking months to finish (and to finally get something usable at all) are problematic. But otherwise, I'm more of a pro-rewrite person. I have so far rewritten 1 c++ and 2 python services in go. In case of c++, just better db client has made huge difference (pgx with statement caching and connection pool). And local results caching (very easy to implement in go) has made even bigger difference. I could do the same in c++ theoretically, but I think it was just faster to rewrite it completely. Besides that go has other advantages like tooling, safety and simplicity. And in case of python it was to gain speed and reduce memory footprint. And to join codebases in the other case. In general if there is some problematic component/service (okeyish most of the time, but sometimes not so much) and it's known how to solve it a better and more robust way, then I would be for rewrite instead of fixing and babysitting it repeatedly.
@armax00
@armax00 Жыл бұрын
The most hilarious thing is that who generally sponsors a rewrite is not knowledgeable of what has being rewritten. Like "wait, let's not improve what we have because I do not know how it works... let's do it from scratch without any experience whatsoever"... my 2 cents.
@shimadabr
@shimadabr Жыл бұрын
Usually managers who thinks a rewrite is a magic solution to solve all the application's main problems.
@armax00
@armax00 Жыл бұрын
@@shimadabr I have not experienced that, it has been a lot more like person X that wants to show how great they are and want to show complex work for a promotion.
@CodeWithCypert
@CodeWithCypert Жыл бұрын
Your signoff at the end describes my exact feelings between Go and Rust.
@dsysd-dev
@dsysd-dev Жыл бұрын
kzbin.info/www/bejne/qHW2gKOoaNCojac
@Yupppi
@Yupppi Жыл бұрын
I've seen so many videos about how great go is that now when I hear "nobody hear loves go", I add in my head "we just love using it because it's so great". People never talk about how go failed them and has this stupid thing for why it doesn't work for some use case they'd want. They just say something like "I don't love go, but it's awesome and definitely weapon of choice".
@xc13z829
@xc13z829 Жыл бұрын
Go over TS any day of the week. I have to deal wtih TS BS every f'n day at work. Barf.
@GunZFoX
@GunZFoX Жыл бұрын
Even if people do not like how Go handle errors. I personally find it really easy to debug, and that's why I love it
@ColossalMcBuzz
@ColossalMcBuzz Жыл бұрын
The single binary reason is a pretty good one. I was looking at static site generators a while back and Jekyll always made various lists for popularity. I went to install it and saw I needed Ruby, RubyGems (and the gems that Jekyll needs), gcc, and make. I then looked at Hugo and saw it was a single binary (written in Go) that didn't require any installation. I kicked Jekyll to the curb and went with Hugo.
@aaronevans6442
@aaronevans6442 Жыл бұрын
A single binary means a hundred binaries. High level languages were invented to solve cross-platform problems.
@roccociccone597
@roccociccone597 Жыл бұрын
I'm currently in a project where my team is moving from python to Go.
@isodoubIet
@isodoubIet Жыл бұрын
Anaconda is like the worst. Just grab the official package and pip install what you need. It'll take all of 5 extra minutes and it'll save countless hours of frustration when your packages installed with pip don't conflict with other packages installed with conda.
@dsysd-dev
@dsysd-dev Жыл бұрын
kzbin.info/www/bejne/qHW2gKOoaNCojac
@Edwin-nl3qu
@Edwin-nl3qu Жыл бұрын
"ohhhhh thats why you do that" man the number of times I've done exactly that with my own code.. 🤣
@JordanOConnell-z3v
@JordanOConnell-z3v Жыл бұрын
I was listening to this in the background not watching the video. "This blows my mind that you could build a backend in scratch." I thought this was some sort of hobby project where someone was actually rewriting their back in Scratch, not in Go from scratch. Big difference. It took me too long to realise that he wasn't talking about writing backend code in a coding language aimed at primary school students.
@manemobiili
@manemobiili Жыл бұрын
Go is pretty much modern C, devs hate it but end users like myself love it. Most of the time everything is a single binary and compilation is fast af.
@davidowens9597
@davidowens9597 Жыл бұрын
Why do you say devs hate it? Go was the #8 Most Loved programming language in the 2022 Stack Overflow survey.
@manemobiili
@manemobiili Жыл бұрын
@@davidowens9597 2023 survey is out so you might want to check it out.
@GearsDatapacks
@GearsDatapacks Жыл бұрын
I've been looking at Golang a bit recently, and I'm considering switching to it. - It's got easy, clean syntax - It's not too different a paradigm from what I'm used to (JS/TS) - It's pretty fast
@АлекСневар
@АлекСневар Жыл бұрын
Easy and clean syntax? Ahahahahahahahahahahahaha
@nalcij
@nalcij Жыл бұрын
@@АлекСневарCompared to other system programming languages? Most certainly.
@thatonehoots
@thatonehoots 5 ай бұрын
"Look at the thigh-gap in this code" is a comment I cannot wait to use
@UnhingedNW
@UnhingedNW Жыл бұрын
I want to learn Go really bad because I'm super tired of cooking for a living and want an fast way out lol.
@nodidog
@nodidog Жыл бұрын
I love Go, it's great ❤
@i3looi2
@i3looi2 Жыл бұрын
Depends on how old the architecture is. A full rewrite might be a well needed option.
@Satook
@Satook Жыл бұрын
My biggest lesson during a language transition: Use a newer structure but make your outputs match exactly, even the weird bits and refactor after you’ve moved off the old bit. Also, find a way to do it incrementally. A hard cutover will take 10x longer than replacing 1 endpoint/query/service cal at a time.
@dsysd-dev
@dsysd-dev Жыл бұрын
kzbin.info/www/bejne/qHW2gKOoaNCojac
@programaths
@programaths Жыл бұрын
For reference: Domotic application: Python: 3 years of development by a team of 10, delivery not implementing 100% of the features, slow and crashing. Totally unusable. Go: Almost a week of development by a team of 1, system trialed in production (yep), 120% of the features, speedy, actually used.
@SpikeTaunt
@SpikeTaunt Жыл бұрын
The Go hate is crazy, why are they hating on my little goober
@தமிழோன்
@தமிழோன் Жыл бұрын
coz that goober is a vegetable
@garagedoorvideos
@garagedoorvideos Жыл бұрын
2:16 "ohh that's why you do that.. " ahahh
@petlemons
@petlemons Жыл бұрын
1:25 I have never had someone so succintly describe the difficulties of my work
@HyperFocusMarshmallow
@HyperFocusMarshmallow Жыл бұрын
Doing a rewrite can be a great way to learn, but don’t count on it if you need to be finished in reasonable time and depend on getting things right. One of the hardest things for beginners and novices and probably even experts is to look at a piece of software and realize how many people it took how many hours to incrementally build the mess in front of you. If you’re not that many people and do t have that many hours and try to build it in a single piece you’re in for trouble. You could always try to build a piece, and then another and then another and maybe someone else will build a piece and eventually you’ve got something nice. This is advice from someone who has a strong urge to rewrite almost any piece of software I encounter. It’s like an itch I want to scratch. Not that I work with either ”go” or ”scratch” or even web stuff. Do you know what the worst part is. Just writing about it makes me want to sit down and rewrite something…
@dsysd-dev
@dsysd-dev Жыл бұрын
kzbin.info/www/bejne/qHW2gKOoaNCojac
@LiveErrors
@LiveErrors Жыл бұрын
I have almost formulated a drinking game out of your verbal habits
@AntranigVartanian
@AntranigVartanian Жыл бұрын
I just wanted to point out that we wrote our whole product from scratch 3 times in the last 6 years. why? because we learned from our mistakes and wanted something better every time.
@snorman1911
@snorman1911 8 ай бұрын
Rewrite it, baby! Sometimes you can only polish a turd so much.
@robertochostakovis
@robertochostakovis Жыл бұрын
That's what I'm doing, goodbye Spring Boot, welcome Go!
@gabrielnuetzi
@gabrielnuetzi Жыл бұрын
The language doesn't matter so much if your CI anyway runs containers for jobs/steps etc. All what matters is that you write clean modularized functions, test them and ship them in a container. Of course Go/Rust are nice because they boil down to a single execubtale which you need to download for your system. So if you get the right executable for your platform, you can also just get the container and run that, and everybody will be happy. A container offers even more benefits, because you can deliver at the same time config files and other stuff with the tool you run etc etc. But I agree writting in compiled static-typed languages is better as you are full-speed and can even containerize as well at the end.... Go on the other hand needs more boilerplate for CLI tooling out of the box than python out of the box with its standard library.
@Spirrwell
@Spirrwell Жыл бұрын
For whatever reason, your voice sounds like Fry from Futurama when you're reading. I'm sorry, I don't know why I felt the need to bring that up, but I just keep noticing it. XD
@aaronevans6442
@aaronevans6442 Жыл бұрын
Most of the time software need rewritten from scratch. It's usually that bad. But you probably can't do it better.
@ThePrimeTimeagen
@ThePrimeTimeagen Жыл бұрын
agreed
@tkg__
@tkg__ Жыл бұрын
The struct-align thing is readable IMO, but the real issue with it is that sometimes adding a single new field ends with a lot of lines of diff. Go is not super-sexy but it gets shit done and is a great tool. And it's easy to onboard new people.
@wcpodcast8642
@wcpodcast8642 Жыл бұрын
This is the first time that I saw your content, dude you sound like bill burr kkkkkkkk this is so good!
@Slacquerr
@Slacquerr 9 ай бұрын
12:06 this is shocking. What's going on here? flush-left columns are--I had thought--an excellent way to present columnar data. Is this a dyslexia thing? For accessibility and design purposes I'd really like to know. I was blind-sided. This is shocking.
@Reelix
@Reelix Жыл бұрын
Person said they wanted { on a new line because they're a C# dev. C# supports both - Simply have a basic code-formatting addon to convert it to the format you prefer, and everyone wins :p
@rafagd
@rafagd Жыл бұрын
The worst thing about Go imo is that it enforces that you have to remove imports. If you're testing some code out and that code happens to be the only thing importing something, it gets old REALLY quick...
@vladimirburian8439
@vladimirburian8439 Жыл бұрын
You can setup your editor to automatically run 'go fmt', 'goimports', etc. upon file save, to tidy the code. (Vscode does this by default I think.?) When I'm testing different approaches/algorithms I tend to just write different functions implementing those approaches and keep them all around. (Then I don't have problems with unused variables, imports...) Also, instead of commenting the code, you can temporarily "disable" it with 'if false {}'.
@jaysistar2711
@jaysistar2711 Жыл бұрын
You can just make them comments.
@likwidsage
@likwidsage Жыл бұрын
it also imports them automatically if you use them in the code. I generally don't worry about imports and just reference it in the code when I need it.
@biskitpagla
@biskitpagla Жыл бұрын
Isn't this like just a formatter issue that can easily be tweaked out?
@pif5023
@pif5023 Жыл бұрын
The outro is exactly how I am feeling about Rust in this period
@humanlytyped
@humanlytyped Жыл бұрын
Go is for people who have no time and joy in life. They have exhausted their capacity to learn anything new, so they force a language that regresses to the bare minimum of human intelligence. It also appeals to corporate capitalism because you can swap "human resources" at will.
@LEGnewTube
@LEGnewTube Жыл бұрын
I love golang. I find it fun to write. Also that naming at the end XDXD
@BosonCollider
@BosonCollider Жыл бұрын
The main issue I have with go is that it makes writing applications easy, but it makes writing libraries hard. So the library ecosystem will never be as good as in more expressive languages. It does not have good math libraries compared to python, c++, or even rust because those were excruciatingly painful to write without good support for generic programming. And when Go's largest and most widely used web framework (Gorilla) issued a call for maintainers, the community literally let their largest web framework just die with no maintainers. Similarly, when Prisma stopped maintaining Prisma-Go no one stepped up to maintain it until Prisma sighed and picked it up again, while in Python there are several unofficial clients to choose from, including a production quality one recommended by the Prisma team. Imagine if JS let Vue die or if Python let Django die and couldn't maintain sqlalchemy without corporate support. That is just not possible because those communities have a high ratio of library writers relative to number of users (Python a bit less but still acceptable). But most Go writers are ecosystem freeloaders, who will use a package without ever thinking of the ecosystem below it.
@BosonCollider
@BosonCollider Жыл бұрын
So the end result is that you have to assume that all go libraries will be unmaintained in five years, even if they have thousands of github stars. I would be very hesistant to use any go library in production. So unless the application is literally so simple that you can write it easily using only the standard library, I would avoid Go
@ameer6168
@ameer6168 Жыл бұрын
Then become a maintainer yourself it's opensource instead of blaming everyone you should take a step to make it better
@sdstorm
@sdstorm Жыл бұрын
Rewrite is my middle name. Rewrote a bunch of Java microservices into Kotlin. It was worth it every time.
@carlwilde635
@carlwilde635 Жыл бұрын
Lorem Ipsum ironically quoted in context . Abbreviated Latin for "Pain Itself" (Delorem Ipsum) - full text by Cicero 60BC
@bolow
@bolow Жыл бұрын
The thing that pushed me to learn Go was the goroutines because I couldn't do parallel calls for a web scrapper I was working on at the time. Since then I felt that it's more Pythonic than Python itself.
@dizphunkt
@dizphunkt Жыл бұрын
I love go for it's simplicity and the fact that it's cross-platform. Tried Rust but it has a steep learning curve and I have trouble to understand some of that language. Maybe it's because I didn't code in C before.
@dandogamer
@dandogamer Жыл бұрын
This is actually a rewrite I can approve of.
@pb8655
@pb8655 Жыл бұрын
0:45 netflix had a rewrite?
@carriagereturned3974
@carriagereturned3974 Жыл бұрын
1:53 in i hit like. LOVE IT. LOVE IT. " Ooooh that's WHY you do THAT." JEEZ LOVE IT. 10:15 "Go is dumbest language possible" HAHAHAHA LOVE It. True. PS I love Go stuff. Do more. just Epic.
@sunraiii
@sunraiii Жыл бұрын
At this point, I'd accept not having Internet for a month, if it would mean that Browsers running on Go / HTML / CSS become a thing.
@FzsHotDogInDonut
@FzsHotDogInDonut Жыл бұрын
So if I learn go lang , what kind of position am I aiming for?
@dsysd-dev
@dsysd-dev Жыл бұрын
kzbin.info/www/bejne/qHW2gKOoaNCojac
@egor.okhterov
@egor.okhterov Жыл бұрын
Why Netflix recommends me films I already rated? Why not use the rating to understand what I like and recommend me something I didn't rate?
@lambo1707
@lambo1707 Жыл бұрын
hi primeagen, i saw your course on front end masters. can i take the course even i don’t have knowledge in javascript/typescript?
@catcatcatcatcatcatcatcatcatca
@catcatcatcatcatcatcatcatcatca Жыл бұрын
10 days? I can barely configure a python project in that time.
@FicoosBangaly
@FicoosBangaly 9 ай бұрын
Go is great and all the complaints about it's rough edges are odd to me. Every language has them. You just kind of figure out the patterns, maybe get burned once or twice. I think the biggest issue people have with Go is that they look at the language itself instead of it's entire tooling. For example, there are a lot of stuff that can't be specifically expressed in it's type system directly. This is actually on purpose. It's type system can represent the vast majority of what you would want to write. The rest can be produced using code generators and some more advanced checks can be enforced using `go vet` extensions. They are really easy to write and allow you to enforce whatever policy you want.
@FabulousFadz
@FabulousFadz Жыл бұрын
I only discovered Go a year ago, and have been loving it since. Been looking for interesting open source Go projects to contribute to since at work I'm required to use C#. After watching this video I went to have a look at digger, read the code, saw an issue and fixed. Had my pull request accepted and merged 6 hours ago.
@TheMr82k
@TheMr82k Жыл бұрын
Man you must be incredibly divert if your first thought while learning a language is to add a PR
@FabulousFadz
@FabulousFadz Жыл бұрын
@@TheMr82k Well, I've been programming for a long time (professionally since 2003 but self taught before the world wide web in 1993 when I was a kid) so the only new thing to me was Go. I picked that up pretty quickly by building some none trivial things in my spare time.
@vvvorlds
@vvvorlds Жыл бұрын
go lang, hold my beer...
@pieflies
@pieflies Жыл бұрын
Vegetables vs hot, buttered crab
@ahmedb.hameed3330
@ahmedb.hameed3330 Жыл бұрын
We are encounter into a code that written by another company and it is a mine field of bugs, we can't add or alter anything without tons of errors.And guess what!!! no documentation hehe. I was fixing bug in that shitty code for months.
@galaxian_hitchhiker
@galaxian_hitchhiker 10 ай бұрын
I wish you also provide the links to the posts or reaction items.
@porky1118
@porky1118 Жыл бұрын
8:40 „A, Double-U, S“ I think English speakers should start calling Double-U just „We“ (pronounced like „meh“), just like Germans and probabld some other European countries.
@docmars
@docmars Жыл бұрын
It seems like Deno needs more time, but for any TypeScript lovers, it ships standalone binaries as well.
@gonza.shreds
@gonza.shreds 17 күн бұрын
I recently fell in love with Go and I love allman lmao. Love Go anyway
@friction5001
@friction5001 Жыл бұрын
fr writing a solid backend is so much effort
@Im_Ninooo
@Im_Ninooo Жыл бұрын
Go 💙
@max_ishere
@max_ishere Жыл бұрын
Can I please at some point get the point of go? I've been using it for 2m now and I still discover some crazy "simplicity" that's in my way or I should've known of.
@samueladole6074
@samueladole6074 Жыл бұрын
Funny enough, I’ll be interested in doing a Golang all project
@bobanmilisavljevic7857
@bobanmilisavljevic7857 Жыл бұрын
Im almost done with my first python book and am excited to either learn go or js. I found a JavaScript book from 2023 in the library so this is exciting to me because im sort of sick of reading off a glowing screen and the book is so new and untouched its like calling for me to use it 🤪. But go seems so exciting to learn for me too. I only want to focus on one language next so i can keep learning more python but have another language to compare and contrast for learning purposes. Im not really trying to speed learn a language either so whatever route i choose, i would like to take my time and really understand how the language works Any suggestions will be seriously considered. Thank you
@marcioandreyoliveira
@marcioandreyoliveira Жыл бұрын
If you want to learn a language that has several job offers, both JS and Go are fine, but I'd would pick Golang. If you're learning just for pleasure, why not try something really different? In this case I'd pick either Ocaml or Clojure. Good luck.
@bobanmilisavljevic7857
@bobanmilisavljevic7857 Жыл бұрын
@@marcioandreyoliveira thank you
@conorx3
@conorx3 Жыл бұрын
Learn French, and German, and Hindi, and Spanish. And if you want something fun learn Greek. Or just finish your first book… Ultimately, what reason are you learning to program? Do you like anything with charts/data analysis, desktop apps/games, quick projects, algorithms, …, then you’re wasting your time starting a new language. you will have to learn a new vocabulary, sentence structure, and complicated unique weirdness, just to get to the level you’re at now. Chances are, learning how to write tests will make you a better developer rather than restarting and learning how to implement a for loop or declare a variable. Build a project that will impress an employer, or follow a tutorial for an area that you’re interested in. You should get experience with multiple languages long term, but don’t switch after one book… that’s literally when the fun begins in that lang
@bobanmilisavljevic7857
@bobanmilisavljevic7857 Жыл бұрын
@@conorx3 thank you. I need to keep focus
@demolazer
@demolazer Жыл бұрын
There's a great go book simply called 'the go programming language' co written by one of the guys behind. It's excellent.
@scosminv
@scosminv Жыл бұрын
go can be improved while maintaining simplicity while I can't see how rust can be simplified unless it gets a garbage collector and drops devtime lifetime juggling nonsense.
@cbbcbb6803
@cbbcbb6803 Жыл бұрын
What can GO do thst RUST cannot do? And vice-versa? Doesn't the "Legacy" means "it works", as in Cobol, Fortran, C, C++, etc.
@maxnibler6090
@maxnibler6090 11 ай бұрын
Im teaching myself go now. Most of my experience thus far has been in python and c++. So far i rly like it
@MrOneart
@MrOneart Жыл бұрын
Rewrited our backend with 300k rows of code +/- in go from other popular in the past language. It wonderful, but i have feeling go doesnt really suitable for big monolith api servers. It works, but memory is leaking. Dependency injection quite tricky and testing all this monstrosity is a pain
@_bradleystrider
@_bradleystrider Жыл бұрын
sounds like your issue isn't the language
How GO Was Created - Less Is More | Prime Reacts
28:15
ThePrimeTime
Рет қаралды 150 М.
Prime Reacts: I like this Backend
34:07
ThePrimeTime
Рет қаралды 235 М.
УНО Реверс в Амонг Ас : игра на выбывание
0:19
Фани Хани
Рет қаралды 1,3 МЛН
Gleam is not Rust
7:46
Isaac Harris-Holt
Рет қаралды 27 М.
Is 2024 The Year Of Zig ?
48:20
ThePrimeTime
Рет қаралды 191 М.
which one of Schlatt's songs is the best?
17:26
protaco
Рет қаралды 773
This Will Make Everyone Understand Golang Interfaces
21:03
Anthony GG
Рет қаралды 57 М.
Linus Torvalds on why desktop Linux sucks
11:07
gentooman
Рет қаралды 1,5 МЛН
The RustConf Drama
35:28
ThePrimeTime
Рет қаралды 89 М.
Replace Is Number Saves 440GB A WEEK
9:54
ThePrimeagenClips
Рет қаралды 362 М.
Golang is BAD for SMART PEOPLE
27:25
ThePrimeTime
Рет қаралды 291 М.
Rust is Not C
16:24
ThePrimeTime
Рет қаралды 201 М.
УНО Реверс в Амонг Ас : игра на выбывание
0:19
Фани Хани
Рет қаралды 1,3 МЛН