Switch FROM Rust TO Go Backend?? | PrimeReacts

Поделиться
HTML-код
  • Опубликовано: 16 апр 2023
  • Recorded live on twitch, GET IN
    / theprimeagen
    Original: levelup.gitconnected.com/why-...
    MY MAIN YT CHANNEL: Has well edited engineering videos
    / theprimeagen
    Discord
    / discord
  • НаукаНаука

Комментарии • 295

  • @theLowestPointInMyLife
    @theLowestPointInMyLife Год назад +1362

    I once accidentally paused a Primagen video and it took me 10 minutes to realise he wasn't doing a dramatic silence

    • @ThePrimeTimeagen
      @ThePrimeTimeagen  Год назад +392

      D R A M A T I C _ S I L E N C E

    • @deathlife2414
      @deathlife2414 Год назад +4

      ​@@ThePrimeTimeagen when is the next live stream prime

    • @echoptic775
      @echoptic775 Год назад +3

      Says a lot about how prime never wastes time on stream and always gets to the point. But im not hating since hes one of most popular tech streamers so hes clearly doing something better than others

    • @RenderingUser
      @RenderingUser Год назад +27

      10 minutes???
      Man that's some immutable silence

    • @theLowestPointInMyLife
      @theLowestPointInMyLife Год назад +19

      @@RenderingUser I just assumed he was pushing the boundaries of what was acceptable in society

  • @farqueueman
    @farqueueman Год назад +181

    I went gigachad mode and migrated to HTML backend.

    • @ThePrimeTimeagen
      @ThePrimeTimeagen  Год назад +47

      The truest programming language

    • @filipstudeny
      @filipstudeny Год назад +23

      You use HTML ? I use pigeons to deliver data packets

    • @TechBuddy_
      @TechBuddy_ Год назад +10

      @@filipstudeny You use pigeons! pffff! I shout in binary at the top of my lungs

    • @filipstudeny
      @filipstudeny Год назад +2

      @@TechBuddy_ Binary ? I am sending atoms that made the data

    • @TechBuddy_
      @TechBuddy_ Год назад +2

      @@filipstudeny I really want say quarks but no we'll stop it here.

  • @bryanenglish7841
    @bryanenglish7841 Год назад +183

    All of the feedback that Prime is giving here is really great, but there inherently is the problem: the vast majority of the issues that the original author of the article goes over are things that are dealt with by a more experienced Rust engineer. Going from playing with Rust to production Rust is a huge jump for most devs, myself included.

    • @martinvuyk5326
      @martinvuyk5326 Год назад +14

      Yeah, the learning curve is real

    • @LtdJorge
      @LtdJorge Год назад

      Or mostly just not using Mac for compiling Rust in containers.

    • @RichM1967
      @RichM1967 Год назад +29

      @@LtdJorge It's the maintainability that Go strives to overcome. When you've got millions of lines of code maintained by hundreds of programmers. Go was designed by programmers not for the fun of creating a new language but to solve the code complexity issue. To make code that is blazingly fast to write, modify, add new functionality as business requirements change -- and still be performant. Is it as fast as Rust - No. Is it faster to write in Go vs Rust -- yes. And remember development time is money. If I need raw speed it's cheaper to put it behind a load balancer and run 2 servers than it is to add weeks to a development cycle.

    • @Saffat-Hasan
      @Saffat-Hasan 10 месяцев назад +3

      Is there evidence to support that rust is slower to write (AND maintain) than other languages? Specifically you cite adding "weeks to the development cycle" but I find many teams lose velocity from bugs in the system (current team specifically has Onduty rotations.
      I haven't really used rust professionally but I am pretty happy generating code using bard and like the wasm stuff so far

    • @Comeyd
      @Comeyd 3 месяца назад

      ⁠@@Saffat-HasanI agree! Time spent debugging is always “glossed over” by devs that don’t use Rust.
      Rust may take a bit more time to write, but once you’ve written it, you’re done. The code is **done**.
      Yes, done. You don’t look at it ever again.
      It’s such an insane paradigm shift that I can’t make the trade offs of any other language worth it.
      For example: I wrote a service in Rust. I probably could’ve gotten the bones of it working in something like C# a lot faster, but I probably would’ve run into a lot of runtime errors. Some of the assumptions I was making were bad assumptions to be making. Rust didn’t allow me to make them, and it forced me to write better code the first time.
      That service has been deployed in production for the last 4 months. It’s been running, solid, for 4 entire months. Not a single downtime event. No memory leaks. Nothing. It’s silly how reliable it is.
      Just having errors as types alone make Rust worth it! Exceptions are horrible awful things! Exceptions for errors make for terrible unreliable code. I don’t care how many try catch blocks you think you need, you’ll never get them all right.
      Errors as types though? You can’t get around handling all errors!

  • @awnion
    @awnion Год назад +33

    You can just do RUN --mount=type=cache,target=/target cargo build... And enjoy incremental builds. And it also works for production where you just drop cache every run if you want 100% clean build.

  • @ko-Daegu
    @ko-Daegu Год назад +8

    I love how comments are :
    - teach him about traits
    - tell him about docker
    the guy clearly explained

  • @RealYethal
    @RealYethal Год назад +16

    You can mock S3 for tests by setting up a sidecar container with minio (s3 compatible oss object storage)

  • @jonnyso1
    @jonnyso1 Год назад +29

    The only point I really felt on my skin so far was the async traits one. Its just as he said, async is great, traits are great, both of them together not so much, throw a closure that returns a future on the mix and you'll hate yourself in no time.

    • @AediusFilmania
      @AediusFilmania Год назад +4

      That's why many people are working on it, their are so many edge case ^^

  • @naplesnola
    @naplesnola Год назад +12

    There is nothing better than Primagen reading abbreviations. I just love it 😂

  • @AGAU1022
    @AGAU1022 Год назад +4

    I'd love more detail on why you prefer Rust to Go (usually? in general? In some contexts?), both subjective reasons and objective advantages.

  • @J4j4yd3r
    @J4j4yd3r Год назад +6

    Re: virtual mounting
    I wonder if the culprit is linking. As in, they're using some system library that gets called out to from their compiled (from rust) binary. Inside the container, that virtually mounted binary would be linked to a, for example, glibc residing in the host OS/file system's `/lib` - *outside* of the container.
    I know Go tries to compile eveything into a single static binary, but not sure if it can do that with calls to (host) system libraries as well. If it can, then that might be why the article's author implicitly found Go to work better for them.

    • @ko-Daegu
      @ko-Daegu Год назад

      maybe also readability and ease of use another reason why ?

  • @nabeeghahmed8530
    @nabeeghahmed8530 Год назад +23

    Is it just me or does prime look a lot like the gamer Dr Disrespect?

  • @shaunkeys7887
    @shaunkeys7887 Год назад +2

    I would just use a vmount to link the binary into the container and build locally. I have to build for a fairly old system at work and nobody ships cross-compilers that work for it. If you know how C linkers work and aren’t afraid to spend a day or two perusing the package repository of your OS and installing a few things manually, you can build a decent sysroot with everything you need and compile right on your mac. Skip that virtualization layer and the compile times decrease dramatically. Then vmount it into your container and problem solved! I’ve even made a nice little alias that I just prepend to my cargo commands and it configures the C linker paths, targets, sysroot dirs, etc for me

  • @bjesuiter
    @bjesuiter Год назад +5

    Virtual Mounts might fail when you want output hot reloading because you probably get nasty situations with detecting file changes properly.
    Also, you'd need to recompile on the host machine an then somehow tell the container to reload your stuff inside the container

    • @loading_wait
      @loading_wait Год назад +2

      Bind mounts rely on the host file system so the container doesn't have to update a reference or anything.
      The software running in the container would need to detect an de change if he wanted hot reloading on that. That's as easy as compiling rust within the bind mount, and watching the directory for changes within the container. Entr can observe and rerun commands on file changes.
      Sounds pretty straight forward if you ask me.

  • @aztro8323
    @aztro8323 Год назад +82

    How in the world does Prime find these amazing articles?

  • @KalleJillheden
    @KalleJillheden 7 месяцев назад

    Run all auxiliary services with docker-compose, and run the thing you're developing on bare metal, without container. Works great.

  • @blastys
    @blastys Год назад

    "I know most those words (hesitates)....in that sentence" then goes straight to an ad. I was in tears 🤣

  • @mahdiaghaei8154
    @mahdiaghaei8154 Год назад

    Hey prime, can you talk a little about how do you read the tech books (I mean how do you get the most out of it and learn the stuff init), great videos by the way

  • @magfal
    @magfal 6 месяцев назад

    I've written an S3 request sigining function in a postgres SQL function based on pg_crypto.
    SQL is my favorite language for backend logic that doesn't need to do extreme amounts of compute per request.

  • @illegalsmirf
    @illegalsmirf Год назад +15

    What's the advantage in switching between programming languages for your 'backend' constantly?

    • @dejangegic
      @dejangegic 10 месяцев назад +10

      It's fun

    • @duckblast
      @duckblast 4 месяца назад +1

      Job security

  • @pyakz2906
    @pyakz2906 Год назад +72

    At this point i want our small app with 15 users to migrate in Rust because its the new thing 🥴

    • @ThePrimeTimeagen
      @ThePrimeTimeagen  Год назад +20

      i ackshually really like rust :)

    • @Peshyy
      @Peshyy Год назад +3

      B L A Z I N G L Y F A S T

    • @youtubeenjoyer1743
      @youtubeenjoyer1743 Год назад +9

      Migrate to C and never look back nor front

    • @tumescent
      @tumescent Год назад

      Must adopt the next big thing! Must watch codebase become unmaintainable once the language dies!

    • @avexxed6624
      @avexxed6624 Год назад

      @@tumescent win32kfull_rs.sys

  • @evanhowlett9873
    @evanhowlett9873 Год назад +20

    I never understood the complaints against Rust compile-times. Because it has an ML-inspired type system, you're getting significantly more tests for free than your C-descendant languages. What you'd have to manually write tests for, the Rust compiler auto-implements. Then, all you really need to do are integration tests.

    • @eng3d
      @eng3d 11 месяцев назад

      What if you want to build a fast code?

    • @evanhowlett9873
      @evanhowlett9873 11 месяцев назад +12

      @@eng3d Rust is basically as fast as C, sometimes faster. And if you need speed more than anything else, you want to use FORTRAN.

  • @SJ-eu7em
    @SJ-eu7em Год назад +2

    His problem might be x64/86 container running on M1 emulation (arm to x64/86) meaning that inside container it doesnt compile for arm so volume mount wouldn't work

    • @ThePrimeTimeagen
      @ThePrimeTimeagen  Год назад

      oh... sheee interesting. i don't use macs so this is a world i am completely confused by

  • @piyushaggarwal5207
    @piyushaggarwal5207 Год назад +3

    I loved the live beep sounds. 😆

  • @CallousCoder
    @CallousCoder Год назад +2

    Yeah lifetimes are one of those rare uses that you’ll need to look up. I know (or b c d e whatever) and put it on the type. But where… well documentation is my friend. And in a year of rust I’ve only had to do it twice.

    • @ThePrimeTimeagen
      @ThePrimeTimeagen  Год назад +1

      same.. i do it so rarely that i have to re-remember how (i usually can guess into the right syntax)

  • @tauraamui
    @tauraamui Год назад +6

    I would do the Docker instance to provide a real connection for integration tests only, whereas I don't want to have to rely on that same fairly heavyweight mechanism for hundreds of unit tests. I want my unit tests to be as simple as possible, and sometimes the only way to increase coverage is to be able to simulate, using dep injected mock versions) otherwise impossible to recreate errors which never happen using the real DB instance.

  • @_____case
    @_____case Год назад +2

    The entire article could have just been, "Build times on large codebases."

  • @billgrant7262
    @billgrant7262 Год назад +2

    fwiw I once tried to build a js project sitting on my host in a wsl container (it needed an older node version) and the performance was horrible because (if i'm not mistaken) the folder was mounted with some slow network protocol, and it had to read tens of thousands of files in node modules.

  • @an-nq2bd
    @an-nq2bd Год назад +1

    The only go projects at work are kubernetes controllers. They take an awful long time to build, like several minutes on our CI agents. But this is probably because you essentially have to build the whole k8s API?

  • @indignocat
    @indignocat 10 месяцев назад

    How about using sccache as a rustc wrapper? It keeps an artifact cache like ccache, and can speed up compile times.

  • @filiformis
    @filiformis 10 месяцев назад

    1:58
    When Prime tapped out "FMS" in Morse code, I felt that.

  • @sadDota
    @sadDota Год назад +1

    "guiquil" really cot me off guard tho

  • @shapedthought
    @shapedthought Год назад +1

    Multi stage build using cargo chef to cache the dependencies.

  • @penguindrummaster
    @penguindrummaster Месяц назад

    The question about virtual mounts and incremental reloads/recompiles might be dependent on their work environment. Then again they said personal/side projects so maybe less of an issue for them and it's just a knowledge gap.
    At my employer, we are restricted in our access to the latest tools, so things you Docker file watcher are two minor versions ahead of what we are currently approved for using. I'm looking forward to when it's approved for use though as it will dramatically improve development workflow

  • @guitaripod
    @guitaripod Год назад

    The king returns

  • @vroomerlifts
    @vroomerlifts Год назад

    6:20 Yeah, that's what you do, make a docker volume and compile outside docker.

  • @vitezslavsimon4140
    @vitezslavsimon4140 4 месяца назад

    Thanks for the video. I can't find that article anymore.

  • @JohnCarrot
    @JohnCarrot Год назад +6

    I think the author problem is with cross compilation on a Mac to Docker Linux. I switched from Rust to Zig due to this issue last year.

  • @rohitbokade5771
    @rohitbokade5771 Год назад

    You will be pleased to find about Vlang... which is like baby between Go and rust

  • @an0784
    @an0784 Год назад +1

    On Mac OS i find rust compilation inside a docker container too slow. I got a humble 2012 Macbook Pro, now I installed Pop Os Linux in it and using it for devel, much better 😁

  • @einfacherkerl3279
    @einfacherkerl3279 4 месяца назад

    mounting something in docker to get things done is a very unusual thing to do and not a common practice for building containers

  • @cabeloDoPardal2
    @cabeloDoPardal2 Год назад +1

    I am willing to try to use only rust in front, back, back-front, front-back and arounds. And I am still learning. Am I mad?

    • @HrHaakon
      @HrHaakon Год назад

      If your goal is to learn stuff? No, not at all.
      If your goal is to have a product that multiple people work on, just a little bit. But we're all mad here. You must also be mad, or you wouldn't be here... :3

  • @supergogeta7003
    @supergogeta7003 Год назад

    What's the rust book that you showed briefly? Is it beginner friendly, I've never used rust before but wanted to try it, also do they have an online playground similar to golang?

  • @bobanmilisavljevic7857
    @bobanmilisavljevic7857 Год назад +26

    So after taking advice and learning to type, I'm almost at my random style typing speed with correct typing and id say it was worth taking a few days to focus on.
    Are there any other super common annoying things newby devs do (like not knowing how to type for example)? I want to iron out these kinks and get a solid foundation. Any suggestions will be taken seriously so I appreciate you in advance 💪🧙‍♂️

    • @ThePrimeTimeagen
      @ThePrimeTimeagen  Год назад +13

      DSA

    • @bobanmilisavljevic7857
      @bobanmilisavljevic7857 Год назад

      ​@@ThePrimeTimeagen thank you 🥳

    • @tombenham9458
      @tombenham9458 Год назад +3

      @@bobanmilisavljevic7857 What is DSA ?

    • @lucass5852
      @lucass5852 Год назад +8

      @@tombenham9458 Data Structures and Algorithms. He made a great free course at frontendmasters about it, I recommend!

    • @bobanmilisavljevic7857
      @bobanmilisavljevic7857 Год назад +1

      @@lucass5852 awesome to know. I wrote down that website the other day but now I have a great reason to check it out. Thanks for the help 💪

  • @a13m34
    @a13m34 Год назад +3

    Everyday I learn how little I actually know about software engineer

    • @sporefergieboy10
      @sporefergieboy10 Год назад

      Web developers and rustvestites like to circlejerk about their abstraction layers. You can safely ignore everything they talk about

  • @jonasync
    @jonasync Год назад +5

    It's not always the case, but DI/IoC solve problems caused by OOP mindset. I'm currently doing a bunch of VT100 parsing stuff and originally had a "trait of callbacks", which is a very OOP/patterns way of approaching things. Tests were a giant pain in the ass. Now I'm simply returning an enum from the scanner, and no IoC is required. The code is about 1/5 LOC, is much easier to understand, a more obvious solution (in 20/20 hindsight), and is more fun to write.
    In other words, to avoid having to inject Diesel or run a container at all (please don't do that, when used for "real" problems data seeding is extremely time consuming), have your route handler pull data out of the DB and then pass it to the logic, instead of having your logic interact with the DB.
    You can then have a few integration tests (that do interact with a real DB) to smoke test the route handlers.
    The meta-cognition in Rust seems to be based around data flow, instead of GoF design patterns. Think about where the data comes from, how to transform it, and where to send it. Those should be treated as distinct responsibilities.

  • @tajmeet
    @tajmeet Год назад +1

    Maybe I'm mistaken but I seem to remember support for virtual mount on m1 is bad...

  • @codeman99-dev
    @codeman99-dev Год назад +1

    I'm so confused. I develop solely in containers via devcontainers. Rust compile performance is totally acceptable.

  • @daltonyon
    @daltonyon Год назад +4

    Yeah, not only Rust.. container in test to Java (Sorry, I use Java yet) is painful too, but to me running test in container is more complicated most of the time and more your application grow up more "unproductive" or too slow me is your test/delivery. Containers too me was only useful when I need third parties apps like RabbitMQ, Database and etc.

    • @ThePrimeTimeagen
      @ThePrimeTimeagen  Год назад +3

      for real. containerization most certainly solved some issues whilst creating new issues

    • @tablettablete186
      @tablettablete186 Год назад +1

      May I ask, were you developing natively in Linux?
      Because containers have 0 impact in performance for me (not kidding literally 0 -> a used a program for protein folding)
      Virtual Machines in other hand have a ton of overhead

    • @jongxina3595
      @jongxina3595 Год назад +2

      @tablet tablete I dont think runtime performance suffer. He meant more like dev time. Takes time to build and reload these containers.

    • @azufendusgarendum6583
      @azufendusgarendum6583 Год назад +1

      ​@@jongxina3595 you shouldn't be rebuilding containers for development, you should be using a virtual mount with a live reload daemon/server or something running inside the dev container. The big question is why the author of that post didn't do that, maybe containers on macOS are much slower than Linux wrt live reload (owing to VMs/completely different storage device/network stack/kernel vs Linux)? Or not, who knows

  • @Lolucantcast
    @Lolucantcast Год назад +2

    Some chat gems summary of the S3 authentication misreading:
    - you upload a file to get authenticated
    - if you can upload the file, you are good to go
    - file sessions on S3
    :D

    • @ThePrimeTimeagen
      @ThePrimeTimeagen  Год назад +1

      reading is hard

    • @Lolucantcast
      @Lolucantcast Год назад

      @@ThePrimeTimeagen hardo' meter -> reading > writing code
      but :P
      writing code on paper no keyboard involved (oh my gud') > reading > writing code

  • @npgoalkeeper
    @npgoalkeeper Год назад +1

    Docker is the reason why I started running Asahi Linux despite being alpha quality. Asahi Linux (back in its pre-gpu accelerated state) is why I just bought a thicc x86 laptop and sold my MacBook.

  • @jonathanduran2921
    @jonathanduran2921 Год назад +1

    Prime, can you start a service where you read us medium articles? It's the only way I can get through em'.

  • @alejandrollisocosin7041
    @alejandrollisocosin7041 Год назад +2

    I would suggest to use docker-compose volumes for solving the issue at 6:25

    • @nsk8ter524
      @nsk8ter524 Год назад

      Going to guess that its beyond slow. The mac file system is hard for I/O with docker.

    • @nirnullz
      @nirnullz Год назад

      @@nsk8ter524 i get good i/o performance using virtiofs on docker mac m1.

    • @alejandrollisocosin7041
      @alejandrollisocosin7041 Год назад

      @@nsk8ter524 I didn't use it with Rust but I used it for Java with Spring Boot and it is pretty fast in M1. I also tried to develop using the same setup on Windows, but it was TOO slow.
      I try to always use Linux but I was forced to use Windows on my last job and it was painful.

  • @pastenml
    @pastenml Год назад

    Bleeping R*st at the end is so brilliantly passive aggressive

  • @RuslanKovtun
    @RuslanKovtun Год назад

    It feels more like the guy was short on time and picked up the things that works for him without need to learn/invest more time into something before starting doing actual work.

  • @olafbaeyens8955
    @olafbaeyens8955 Год назад +2

    The prime has real physical books!

  • @daviidon
    @daviidon Год назад

    Would love to hear your thoughts on lobster lang

  • @2.5Sigma
    @2.5Sigma Год назад

    7:00 can virtual mount on a M1 or M2 apple silicon simulate amd64 architecture?

  • @74Bagas
    @74Bagas Год назад

    now i read postgres ... postgreEe.... as always thank you prime!!

  • @ahqsoftwares
    @ahqsoftwares 2 месяца назад

    1:49 It was GraphQL shortened as GQL

  • @happyfella89
    @happyfella89 Год назад +4

    The Rust Foundation copyright claimed this comment.

  • @jandorniak6473
    @jandorniak6473 Год назад

    There was a similar issue a month or two ago on r/rust. TLDR? Docker bind mounts on anything but Linux suck ass. The person we talked with experienced something like 15x slow down when building in a bind mount.

  • @yusufmalikul
    @yusufmalikul Год назад

    I just realized that Prime presses a button to make the R and other F words censored.

  • @myronkipa2530
    @myronkipa2530 Год назад +3

    Rust this, Go that. All I want is tendies, cute girl and a place to enjoy them (own a house)

  • @TehPwnerer
    @TehPwnerer Год назад +1

    Gee-Quill like See-Quill

  • @mariobisignani4477
    @mariobisignani4477 Год назад

    I previously wrote a comment which was recently removed, could I please know why? It was a just a simple question about the author's setup.

  • @jongxina3595
    @jongxina3595 Год назад

    I ran into this docker problem too. My solution is simply dont run it until u are in the last stage of the verification lol

  • @tiagocerqueira9459
    @tiagocerqueira9459 Год назад

    I've been developing on aosp and 3 mins compile times would've been a breeze

  • @cfuendev
    @cfuendev Год назад

    8:53 Also Dart, Angular and Lit WCs.. :P

  • @defnlife1683
    @defnlife1683 Год назад +3

    Switch from JS to C for frontend.

  • @DiscipleW
    @DiscipleW 3 месяца назад

    When RUST becomes hard? I mean when started reading "THE BOOK" everything is explained so well and not so complicated.
    Does the hard part comes in a large code bases or something?
    The Borrow checker seems so simple and elegant way to handle memory, in a few projects I believe we will not even think about it idk maybe I am wrong.
    Is the problem that there might not be good idiomatic way to structure projects and modules?

  • @scottb4029
    @scottb4029 Год назад

    he even said the solution implement! impl -duh

  • @michaelz8260
    @michaelz8260 Год назад +12

    All programming languages are a memes to an end.

  • @happyfase
    @happyfase Год назад

    I bought zero2prod because your flashed it on screen in another clip. The book is amazing.

  • @johnnybegood8531
    @johnnybegood8531 8 месяцев назад

    "JavaScript being a means to Purgatory", that one got me :D. I think Dante would certainly disagree and say, it's more like the 3rd inner circle to hell, followed by Brainfuck and Bracket.

  • @someonewhowantedtobeahero3206
    @someonewhowantedtobeahero3206 Год назад

    Babe, wake up, it's ThePrimeTime.

  • @CielMC
    @CielMC Год назад

    6:26 Shared compile cache with something like sccache?

  • @whig01
    @whig01 Год назад

    Cargo Chef to do fast recompiles in containers.

  • @Glitch-txs
    @Glitch-txs Год назад

    Nice video about Ru**, I mean Go

  • @samarnagar9699
    @samarnagar9699 Год назад +1

    PETITION to make the reading prime reacts to be prime reads and visvual things should be prime reacts as it is RUST AND VIM ARE BLAZZINLY FAST

  • @mariobroselli3642
    @mariobroselli3642 3 месяца назад

    What is the difference between go and zig?

  • @ddddddddd345
    @ddddddddd345 Год назад

    cargo chef, next

  • @bemofresh3117
    @bemofresh3117 Год назад

    How am I gonna move on from using cargo?

  • @nekoill
    @nekoill Год назад

    Gequil O'Neill is my favorite basketball player btw

  • @dan_rad
    @dan_rad 7 месяцев назад

    Do you mean JDSL? Glad it’s gaining more mainstream popularity.

  • @dracula5752
    @dracula5752 Год назад

    Time to start writing that go,dart,and carbon so google ai overlords happy

  • @an0784
    @an0784 Год назад

    Is cargo-wharf outdated ?

  • @itzik975
    @itzik975 Год назад

    maybe he can use some docker alternative.

  • @ere117
    @ere117 8 месяцев назад

    nowadays heard rust hate issue, so many told us to not use rust, and Im gettig so suspicious.

  • @killiangrieg
    @killiangrieg Год назад +31

    Rust and Go are both great. They don't suffer from JVM issues like Java and didn't originate as proprietary technology like C#. You can't lose with either one.

    • @user-nw8pp1cy8q
      @user-nw8pp1cy8q 10 месяцев назад +16

      >didn't originate as proprietary technology like C#
      Is it important how technology originated if it is open source now?

    • @brainnotwrkin
      @brainnotwrkin 9 месяцев назад +15

      I mean technically go was proprietary technology and then google open sourced it. Like Microsoft did with C#…

    • @rutabega306
      @rutabega306 8 месяцев назад +2

      What's wrong with JVM? IMO that's one of Java's key strengths!
      (Saying this as someone who isn't particularly fond of Java, the language)

    • @martijn2973
      @martijn2973 6 месяцев назад

      None of those points actually mean anything

  • @grim.reaper
    @grim.reaper Год назад

    6:37 virtual mount may not be possible on Mac m1 because docker runs inside a vm

    • @npgoalkeeper
      @npgoalkeeper Год назад

      @avfr they work, they just run slow asf

  • @js-ny2ru
    @js-ny2ru Год назад +1

    Today at work I deployed my first Rust app!

  • @tradeordie
    @tradeordie Год назад

    fucking love that book

  • @caseyclayton01
    @caseyclayton01 Год назад +5

    I find myself using Go over Rust when a library I need doesn't have Rust SDKs and I'm feeling too lazy to write a lib myself. Go is still great for backend but just isn't quite as fun to write as Rust, I don't feel as accomplished afterwards.

    • @ThePrimeTimeagen
      @ThePrimeTimeagen  Год назад

      reasonable

    • @alkolaqi83
      @alkolaqi83 Год назад +6

      “As acomplished” wtf is that even mean

    • @caseyclayton01
      @caseyclayton01 Год назад

      @@alkolaqi83 It means what it says? There are two reasons why, one of them should have been easy enough to infer from my original comment.
      1. When I'm not being lazy or needing to get a POC out fast, I take the time to write the lib or create the bindings I need when they don't exist. So I'm literally acomplishing more.
      2. I'm less familiar with Rust and when I do write it I try to do things I haven't done in the language before, so it's more work.

  • @ajmgdaj
    @ajmgdaj Год назад

    Prime choking on the abbrevs hd m in sttchs...

  • @cfuendev
    @cfuendev Год назад

    Following up on the pronunciation of GQL: Like in the acronym GIF, the 'G' in GQL would make "Gah-Quill" the correct pronunciation, rather than "Yee-Quill"

  • @ExpertOfNil
    @ExpertOfNil Год назад

    You wanna be a good butcher? You gotta sharpen them knives at home.

  • @xunjin8897
    @xunjin8897 Год назад

    "JavaScript being means to purgatory"

  • @T1Oracle
    @T1Oracle Год назад

    Gee Cue Ell is what I'd say.
    I've never tried to say it...

  • @coast-guard-1cargo-spectio552
    @coast-guard-1cargo-spectio552 Год назад

    : Bust.

  • @martinbecker1069
    @martinbecker1069 Год назад

    The container thing is nonsense, if you mount your project directory as the workspace any updates you make will propagate into the container.