Prime Reacts: Building a Startup in Rust; I won't do it again

  Рет қаралды 224,881

ThePrimeTime

ThePrimeTime

Жыл бұрын

Recorded live on twitch, GET IN
/ theprimeagen
MY MAIN YT CHANNEL: Has well edited engineering videos
/ theprimeagen
Discord
/ discord

Пікірлер: 438
@ze2like
@ze2like Жыл бұрын
I tried and failed to build an entire startup in Rust... I created an array of 1000 Customer instances but no money went to my bank account.
@ThePrimeTimeagen
@ThePrimeTimeagen Жыл бұрын
damn
@lucaslopes1260
@lucaslopes1260 Жыл бұрын
Maybe you forgot to implement the pay trait on the customer struct.
@RenderingUser
@RenderingUser Жыл бұрын
​@@lucaslopes1260 I don't think it's possible The customer may have the broke trait
@brutetriple8637
@brutetriple8637 Жыл бұрын
did you forget to call `.collect()` to actually collect it from the iter?
@RenderingUser
@RenderingUser Жыл бұрын
@@brutetriple8637 sadly, the IRS called .collect() on iter first 😔
@SebastianSipos
@SebastianSipos Жыл бұрын
IMO the dude who wrote the article and his team were slowed down because they were trying to build a startup in rust while also learning the language.
@bug3937
@bug3937 Жыл бұрын
Literally this.
@3DArea
@3DArea 27 күн бұрын
Is it not how it is usually done?
@flarebear5346
@flarebear5346 22 күн бұрын
Why would you build a company around something that you are not good at?
@spyseefan975
@spyseefan975 7 сағат бұрын
@@flarebear5346 how do you protect an idea for years while you learn something new?
@rednafi
@rednafi 10 ай бұрын
These language wars are so funny to see when you've worked in multiple successful startups that became successful writing their products in Django, Laravel, Node.
@tomaszn9201
@tomaszn9201 6 ай бұрын
Actually it is completely bullshit. Over 50% of the most successful startups started with Python backends: google, youtube, dropbox, spotify, instagram, pinterest, uber, tinder, stripe, reddit. Rest started with PHP, java, erlang. Startups biggest disaster is hiring javascript full stack developer...
@rodreiser
@rodreiser 6 ай бұрын
@@tomaszn9201 source: my head
@joshuaokunola6261
@joshuaokunola6261 4 ай бұрын
​@tomaszn9201 node just came into the picture in 2009. Most of these companies u mentioned are older than fullstack js itself.
@rodreiser
@rodreiser 4 ай бұрын
@@joshuaokunola6261 yes, and they all have nodejs api's as well.
@tomaszn9201
@tomaszn9201 4 ай бұрын
@@joshuaokunola6261 Give me the list of very successful companies started with nodejs.js . Nodejs is is red flag for VC the same like TDD or 100% coverage
@richardgeddes630
@richardgeddes630 Жыл бұрын
A mate who programs in C/C++ tried Javascript and was confounded by the plethora of values in a truth table. His final approach was to use === and its variants. However, there so much code out there that depends on == and its variants, that you're force to cope with it.
@Flameandfireclan
@Flameandfireclan 11 ай бұрын
Js stands for: “Just Stop”
@jonaskoelker
@jonaskoelker 9 ай бұрын
> confounded by the plethora of values in a truth table. I'm mainly confounded by the fact that == is not an equivalence relation. Here's stuff I expect from _every_ equality operator: (a) x == x for all x (b) if x == y then y == x (c) if x == y and y == z then x == z (This is the definition of an equivalence relation.) I remember that JS violates at least one of these but I can't remember which one(s) or how many. Other confounders: there is no simple 'add' operation, there is only "coerce my arguments and then add whatever the results were". See also Gary Bernhard's "Wat" talk. I could go on.
@sacha9593
@sacha9593 6 ай бұрын
Is there any JS dev who still use == instead of === ?
@richardgeddes630
@richardgeddes630 6 ай бұрын
@@sacha9593 There's plenty of legacy code that relies on == . That's the reason why == won't be deprecated any time soon.
@sacha9593
@sacha9593 6 ай бұрын
@@richardgeddes630 I was talking about writing new code with ==, not about deprecating the feature.
@trebabcock
@trebabcock Жыл бұрын
It definitely took time to become efficient, but I absolutely love writing a separate backend and client. Go for backend, Vue for frontend. Keeps me sane.
@trebabcock
@trebabcock 8 ай бұрын
@@darthvader1191 I mean, I don't choose what I use at work, but everyone can choose what they use for side projects.
@daphenomenalz4100
@daphenomenalz4100 21 күн бұрын
I love rust, nd will never stop loving it. But man it takes time to do almost anything, so I started using go. It is also fun like rust, nd atleast I am able to do stuff with time constraints 😂
@wadecodez
@wadecodez Жыл бұрын
Ah yes a planned rewrite on the client’s time that will go smoothly.
@ThePrimeTimeagen
@ThePrimeTimeagen Жыл бұрын
classic rewrite
@abdelhaksaouli8802
@abdelhaksaouli8802 Жыл бұрын
man why did not prototyped with python. if things work go on full performance mode and re-write it with rust ?
@SokimMan
@SokimMan Жыл бұрын
I guess its just because I have not gotten used to the Rust syntax yet but readability being one of the top pros is kinda surprising to me. Rust code does not immediately seem incredibly readable when first learning the language. Probably because the syntax uses a lot of punctuation marks, that you just need to learn.
@sk-sm9sh
@sk-sm9sh Жыл бұрын
"Just have to learn" this is the opposite of readability. If you swim long enough in poop river poop river doesn't stink anymore. Same with ugly code.
@BosonCollider
@BosonCollider Жыл бұрын
@@sk-sm9sh using :: instead of . in some places does not make something inherently less or more readable, it just means you are free to give . consistent semantics where it is always member access. Rust makes everything explicit, without requiring you to write a page of code. As far as readability goes, that is its main value propositions. It makes any potential footgun explicit.
@06kellyjac
@06kellyjac Жыл бұрын
I will take code that is easily readable for experienced devs over code easily readable to new to the lang devs any day. You only stay new to a lang so long
@sk-sm9sh
@sk-sm9sh Жыл бұрын
@@06kellyjac there is no such thing as "code easily readable by experienced dev". It only gets slightly easier due to experience however mental toll persists forever as your brain is decoding it whilst it could be doing something more useful. Asking junior devs opinion is great tool to use as experienced may become unaware of constant complexity that their brain need to solve. Also you must consider situation where experienced devs might join team whilst not being experienced with your language you will be losing a lot of essential time there - and training experienced devs ain't cheap.
@06kellyjac
@06kellyjac Жыл бұрын
@@sk-sm9sh everyone I've interacted with who've spent a just handful of hours with rust grow to love the syntax. It is objectively true that golang's if err != nil xyz blah blah. is easier for beginners to grasp than `?` because `!=`, `nil`, `return` are concepts someone is bound to have picked up previously, ? is used for many different things in many different languages. But there's a reason why goland goes and hides all that guff doing essentially what `?` does in the first place.
@StingSting844
@StingSting844 Жыл бұрын
Agree with the article fully. The saying "done is better than perfect" is always correct. Optimization is the enemy when you want to find a product market fit. Once you start making money, then you can figure out the slowest parts and rewrite as necessary. This doesn't apply for products which require hardened security from day one. For ex, auth, financial products
@sck3570
@sck3570 Жыл бұрын
👌
@irlshrek
@irlshrek Жыл бұрын
i dont remember where I heard it but I really like the "make it work, make it right, make it fast" order. are you saying that you cant really do that in rust?
@StingSting844
@StingSting844 Жыл бұрын
@@irlshrek definitely not saying that. But doing that in a language that has a steep learning curve is not a good idea. We can do it but capitalism is brutal and the product can go under very fast. I have worked in a failed startup and it was hard even to do it with easy to write languages. We rewrote large parts of the app according to feedback from the market/investors. Doing things like that in rust would have been unimaginable.
@akshay-kumar-007
@akshay-kumar-007 Жыл бұрын
@@irlshrek startups follow the ideology of fail fast and build fast. We as developers are obsessed with building the most beautiful piece of code but that takes time. There's a whole separate world of product management and sales (even though i hate those). Shipping things faster can really put you ahead of competition. Also, people leave companies and hiring/re-hiring someone for a language that's just used by 1% of developers doesn't make sense. Rust is a great language. But in my opinion it should only be used for systems where we can leverage whats unique about it. For majority of the projects Java/Go, React and React Native are a perfect stack.
@CuriousSpy
@CuriousSpy Жыл бұрын
I'am as a developer don't write code as much as i edit it. Unlike with js, with rust i'am always confident that my app works lol. Delete/Rewrite half of the App? easy! In js/ts? OMG WHY IS THIS NOT WORKING!!!! wasted few days just to find a bug :D
@usamesavas9848
@usamesavas9848 Жыл бұрын
Love your thoughts. Very informative too. Thanks for these videos.
@rostislavzhuravsky3342
@rostislavzhuravsky3342 Жыл бұрын
One point that I think is really important as well is how many developers you can choose from when it comes to hiring and their cost. Usually Rust isn’t their first language, which means that a developer is likely to be a senior.
@jk-pc1iv
@jk-pc1iv Ай бұрын
But if you hire for less seniority and js to be quick on your feet, do you re-hire once you decide it’s time to start building a solid foundation.. 🤔 everything will take even longer then
@michaelz8260
@michaelz8260 Жыл бұрын
"Rust provided us with an incredibly solid foundation" Never again...
@ThePrimeTimeagen
@ThePrimeTimeagen Жыл бұрын
haha
@Originalimoc
@Originalimoc Жыл бұрын
What happened?
@Holobrine
@Holobrine 5 ай бұрын
@@Originalimoc The Rust Foundation
@creativecraving
@creativecraving 4 ай бұрын
😂 Well, a solid foundation is quite antithetical to a startup, so that's not surprising.
@shaunkeys7887
@shaunkeys7887 Жыл бұрын
I find that writing in Rust dramatically increases my productivity during prototyping when using “unclean” rust (clones, extra loops, Rc, etc). When you’re still figuring things out, the “fearless refactoring” principle is invaluable, because I don’t have to throw out the entire codebase or spend hours or even days trying to figure out why the connection between these two modules no longer works. Rust Analyzer tells me *everything* and walks me through my execution and information flow, leading me directly to the problem. Every bit of time you lose writing slightly better code is immediately gained the moment you have to change a lynchpin module in your prototype
@sk-sm9sh
@sk-sm9sh Жыл бұрын
Have you been living under a rock? Static languages had been doing this for more than 30 years. If until now you chose to go with Perl-like philosophy of pulling strings together and "hoping it works" it's kind of your own fault. And even in most popular languages that didn't used to have static checking they got it solve. For example in case of javascript - google closure compiler enabled (if you learned how to use it) writing statically checked and sound code about 15 years ago - long before even typescript arrived.
@zzzyyyxxx
@zzzyyyxxx Жыл бұрын
Exactly, just clone where required, get product market fit, then optimize. The difference with TS is while it may be fast at first, you literally can't optimize it later on (perhaps when your AWS credits run out after a year which is usually how long they give you them for) simply due to TS being garbage collected.
@cherubin7th
@cherubin7th Жыл бұрын
I stopped prototyping in python because I became slower in it than Rust. I learned Rust after years of using unhappily Python. I am just wired for Rust I guess.
@zzzyyyxxx
@zzzyyyxxx Жыл бұрын
@@cherubin7th Same, and the frustration for Python begins from the toolchain itself. I was trying to set up a new project for some AI stuff and it was like pulling teeth compared to a simple "cargo new"
@HotakaPeter
@HotakaPeter 8 ай бұрын
I write in Erlang. I have two uses for Rust, performance critical code, and low level interfacing. For proof of concept and quick prototyping Erlang is great.
@mario7501
@mario7501 Жыл бұрын
Fully agree with you "get it done first" mentality. Optimising before you have anything useful not just makes you waste time on low value things, it also burns you out because you don't really have anything to show for a very long time. Writing rust feels like writing a decluttered version of modern c++ which doesn't carry decades of baggage. It's truly amazing and if you look at where modern c++ is going for example it feels like they are trying really hard to be more like rust. The only thing I miss when writing rust is more flexible operator overloading and function overloading in general. Generics are a bit lacking compared to c++ as well, but I guess that's where macros come in. Something I still have to take a closer look at
@robrick9361
@robrick9361 10 ай бұрын
C++ is always trying to be more like everything..............which is the problem. Gotta get every damn feature into the language. But the problem is that every standard does have some stuff that I like. So I guess I'm part of the problem.
@theplanebrain
@theplanebrain Жыл бұрын
I enjoyed your prototyping examples using “clone”. It’s a great point.
@dealloc
@dealloc Жыл бұрын
With regards to the two modes of Rust. One thing to consider here is idealistic vs. realistic. Ideally we would write things fast and make it nicer later. But in reality this is rarely the case, especially considering you're also building a startup. Let's say you wrote all your business logic with this mindset and you get to a point where things take up a lot of memory and you end up with slow hot paths. During profiling you recognize that the problem is that you're cloning things and passing them around. To avoid this, you now need to start pass references which means you're going to deal with lifetimes. Depending on the scale of your project, this can be a massive undertaking and not easily done in isolation. Anything that uses those APIs will also have to deal with lifetimes. That said, I love Rust and personally also take the approach to write quick and dirty code to get an idea, then later, once I've found the right approach, rewrite it with a nicer API and error handling. However these projects are _tiny_ compared to a lot of startups.
@ThePrimeTimeagen
@ThePrimeTimeagen Жыл бұрын
i do this in small scopes though. i am totally on your team with this. I get the smaller chunk well thought out, then move into the more "beautiful / idiomatic" code. I would never do a project like this. I always do what i call shitty / not shitty coding :)
@Luxalpa
@Luxalpa Жыл бұрын
The advantage of using Rust here is obviously that you probably never actually optimize your code because it's fast enough from the get-go, while in garbage collected languages we need to optimize the hotpaths pretty much always as the GC makes things very slow. Also another thing I love about Rust is that you know while you're writing the code how to optimize it. Like, when you put `clone` everywhere you can immediately write the todos, and also when looking at rewrites later, you can easily find the places where you used `Rc`, `unwrap`, etc, because these things are all explicit in Rust.
@dealloc
@dealloc Жыл бұрын
​@@Luxalpa That depends on what you're doing. Clone doesn't always mean that memory will be allocated-it may very well be optimized away; it depends on what happens at runtime, over time, as you scale. Rust doesn't automatically make all your worries about memory leaks and CPU loads dissapear. Some things just cannot be optimized away by the compiler, and others may require a different approach to prevent these types of issues which can cost $$$ if you're not careful.
@not_ever
@not_ever Жыл бұрын
This doesn’t make sense. I can’t wait for the, “I thought creating a start up in some other language and rewriting it in Rust would be a time saver but I was horribly mistaken” article. There so obviously are better reasons not to use Rust, I can’t help but believe this is Rustacean reverse psychology trolling.
@ThePrimeTimeagen
@ThePrimeTimeagen Жыл бұрын
yes, the idea of writing a startup and then rewriting it in rust once you find your direction sounds like a real bad idea. it makes no sense (i should that out in this)
@not_ever
@not_ever Жыл бұрын
@@ThePrimeTimeagen yeah I heard you shout out. I agree with all your takes, except the Go thing, since thankfully I know nothing about Go. It was an interesting video about a terrible article. I just have a hard time believing the article was this awful by mistake.
@echoptic775
@echoptic775 Жыл бұрын
And people dont usually do that, but keep expanding using nodejs
@Cookiekeks
@Cookiekeks Жыл бұрын
What are the obvious reasons not to use rust?
@not_ever
@not_ever Жыл бұрын
@@Cookiekeks I said obviously better reasons than the ones given. Not obvious reasons not to use Rust at all.
@nandans2506
@nandans2506 Жыл бұрын
Its about libraries and community for me, typescript/ golang community, packages and libraries are so vast that there's very little custom things you need to build and get most things done fairly easily. This is very important for early stage startups with very limited resources.
@Cookiekeks
@Cookiekeks Жыл бұрын
Isn't that true for rust too? There are tons of crates out there
@Luxalpa
@Luxalpa Жыл бұрын
I found Rusts ecosystem way more mature than javascripts. The main thing is that I don't have to dive through weird docs or simply no docs at all and I don't have to deal with monkeypatching etc. The Rust crates just have all those methods and you just immediately know if they are fallible, if they can return None, what kind of types they expect as parameters, etc. With any new JS library I first need to learn how to actually use it by trying different things because even with Typescript typings, they are very often inaccurate and very hacky.
@TheMrKeksLp
@TheMrKeksLp 11 ай бұрын
Rust's ecosystem might not be as big yet but the libraries are almost universally much higher quality than any other ecosystem I have seen
@ericdonaldpitcher
@ericdonaldpitcher Жыл бұрын
Slow iterations is a relative thing I suppose. How quick are you in your editor and how experienced are you in the language you’re developing in. Varies from developer to developer. The design phase is also a point where you should be able to determine if your product idea is useful. Figma has such great prototyping tools that it almost can feel like the real app were you to demo your idea to friends or potential customers
@dawngunz
@dawngunz Жыл бұрын
I would _love_ to see you give a solid explanation on how you perceive proper error handling. I'm still new-ish, but I dont really have an issue with error handling in go.
@bionic_batman
@bionic_batman 5 ай бұрын
The core idea of Go to handle errors as values is great and it is a proper way to do error handling (unlike hidden control flows with try/catch and exceptions). Rust does it exactly the same way Some people just hate it because it is verbose Personally I find it a bit more readable than Rust "?" operator which often feels a bit like magic if you are new to the language although It essentially does the same as err != nil check in Go but implicit
@kenchilton
@kenchilton Жыл бұрын
I suspect everyone who tries these startup efforts (which in some ways are like running and tying your shoelaces at the same time) regrets decisions they made and thinks that the grass would have been greener if done another way. However, every way of doing it will be wrong in some way - that is (unfortunately) the nature of the beast and one reason why not everyone can do it. My experience is to lean toward processes that produce results that you can live with forever. For code, every line you invest work in can be one that will be in the code base when it ships. Yes, it is an investment in your future, and the cost now will reap rewards later. The more you can do to make the right investments, the better. Yes, the customer may require changes, but what does not change is closer to shippable, even if not perfect. If you want the product code in Rust, hire coders who know Rust and write it in Rust. And please, stop writing _anything_ in Javascript. 😂
@sacha9593
@sacha9593 6 ай бұрын
"My experience is to lean toward processes that produce results that you can live with forever. For code, every line you invest work in can be one that will be in the code base when it ships. Yes, it is an investment in your future, and the cost now will reap rewards later. The more you can do to make the right investments, the better" For most startups this looks like a terrible advice. It depends of course of the kind of startup* you want to build and the kind of money you will be able to raise or invest at first but for the typical reasonably small app/website/software you will probably have at the beginning: few customers, little availability requirements, no need for performance, not enough money to hire the kind of developers you would like to have, potentially quite a lot of change to do all the time (potentially many full pivots when you will drop most of your company's code)... Yes if you are successful you may run into scalability/technical issues later because of this strategy, but by then you will have the money, people and experience to handle them.** By priority: - Choose a language that many people use in your domain or location - Choose a language you are confortable with (if you are the tech lead) - Choose a well established language (not a recent one) - Choose a still relevant language (a language that it still widely used for new projects) - Choose a language that allow fast iterations - Choose a language that is junior friendly (if you don't have the money to hire seniors) Don't be fancy if you don't really have too. *Of course if your startup launch satellites the problem is not exactly the same. **The scalability issues tends to be overblown: GitHub is still a Rails monolith, using a language notoriously slow and a framework that allows fast bootstrapping but is known to be difficult to scale, and it works fine. (Not that I would recommend Rails nowadays.)
@dadlord689
@dadlord689 5 ай бұрын
Many old projects have died and have burned all the money they made in attempt to get rewritten. This was the reason some authors have wrote books about design patterns. So having money in your pocket today is not saying you will keep them. And so the project planning is indeed a big thing. The scalability and flexibility are essential. Unless you can just sell the product and forget it (like a mobile game or just a single player one). And so I would say that architecture is far more important than language. If you can't plug/unplug stuff without resetting the whole thing - what are you even complaining about?
@NickWindham
@NickWindham Жыл бұрын
I was about to comment, “Why not use Go as the happy medium?” Then you immediately launched into explaining exactly why. Thanks!
@ThePrimeTimeagen
@ThePrimeTimeagen Жыл бұрын
i think go has a lot of potential
@BennyDeeDev
@BennyDeeDev Жыл бұрын
I would love to use Go, but everytime I do, I just hate how much boilerplate code is needed to write some small task like adding a query to my Url. Then I just quietly go back to my TypeScript.
@rammrras9683
@rammrras9683 Жыл бұрын
I read that article one week ago and I didn't understand why he wouldn't recommend or use it again from the beginning. It's just one basic downside and a lot of great features expecially for his startup that seems to be around safety logins or something
@orterves
@orterves 7 ай бұрын
8:56 it's true, the type system is a real draw of Rust - sum-types are massively underrated and I wish more developers were willing to put in the effort to understand why. I think the biggest benefit from Rust is how it has combined multiple concepts into one great language (with a few missteps to be fair, like Async), it has all you need to build solid, reliable, maintainable systems for any purpose.
@bsmithril
@bsmithril Жыл бұрын
I come from a place where I have no idea even remotely what "line didn't live long enough" could be referring too. I can see it being a good example of the compiler learning curve.
@syzore2
@syzore2 Жыл бұрын
I think he meant *Above and Behind the scenes* , which would be like above and beyond but behind the scenes in such a way that you don't event notice it..
@Leto2ndAtreides
@Leto2ndAtreides Жыл бұрын
When you're doing a new startup, it's good to prioritize just making things work. If you take the AWS credits... Again, you just don't know yet if your startup is going to live. Most startups likely don't come anywhere near using up their $100K in credits... Because they fail before that.
@herkulessi
@herkulessi Жыл бұрын
One important point is, you can (relatively) safely throw something together without any real error handling and stuff like that, because Rust basically forces the crate devs to write good code. The only time I managed to have a library panic was nesting Tokio instances... Basically telling async code to block forever...
@mario7501
@mario7501 Жыл бұрын
His analysis isn't wrong. But if you build your system in python and want to scale it up, what path are most companies going to take? The answer is they will probably build systems around python to prevent having to rewrite the entire code Base, creating more and more technical debt.
@guycomments
@guycomments Жыл бұрын
The technical debt is there whether you rewrite the code or not
@JustinBarak
@JustinBarak Жыл бұрын
Who cares if you need to rewrite it in 5 years when you’ve scaled up?
@MrIlsundur
@MrIlsundur 11 ай бұрын
If your solution to a scaling problem is changing the language of your code base, then you didn't have a scaling problem in the first place.
@vikramkrishnan6414
@vikramkrishnan6414 9 ай бұрын
You first cache your reads, queue your writes, you split up the high volume stuff into its own service. When all of that stops working you rewrite in a new language
@user-oo1ew4pk9c
@user-oo1ew4pk9c 8 ай бұрын
You would be suprised how big of system you can make with python.
@doxologist
@doxologist Жыл бұрын
What I've started doing is creating my own boilerplate framework, where I define a skeleton I'd use for almost any project, built on top of existing packages e.g: REST (Actix), DB (sqlx), Errors (thiserror + anyhow), Integration Testing (bespoke framework), MQ (lapin). This helps me iterate really quickly since dev-processes can be easily documented, and we don't need to think much about the underlying technology, just write the business logic (endpoints, queries, etc). Once the startup fails we just move along with the same skeleton :) Quick.
@bug3937
@bug3937 Жыл бұрын
Sounds good, would it be possible to see a repo of the basic skeleton starter?
@jk-pc1iv
@jk-pc1iv Ай бұрын
Yeah share it 😊
@TheSkepticSkwerl
@TheSkepticSkwerl Жыл бұрын
at my work, when i'm building a product, probably 20% of my time is spent deciding how to write it. then i build it out. doing it right the first time has so much more time savings than anything i've ever noticed.
@lhd7105
@lhd7105 Жыл бұрын
Hmmm has anyone written a guide/book that essentially lasso's together all the techniques that one can employ to rapidly prototype with Rust? And then in the advanced chapters show how to refactor the "dirty rust" code to something respectable. Maybe talk about guard rails or bookmarking code that are "dirty rust" so that you don't leave them accidentally behind.
@BlurryBit
@BlurryBit Жыл бұрын
IMO it should be a case per case thing to decide the tech. Not every startup (heck, not two startups even if they are selling the same thing) are the same. Money, team, management are different. Even the customers can be different for different businesses even if they are offering the same thing (depending on what audience they are targetting). Don't Deny or Accept a tech just because someone told you to. :)
@ducksies
@ducksies 11 ай бұрын
match is very common across post-ML functional programming languages
@ykhi
@ykhi Жыл бұрын
It was again super interesting to hear your thoughts on this!!
@joshuarowe8410
@joshuarowe8410 Жыл бұрын
I'm testing out Elixir and Phoenix for my backend so I can iterate fast. So far I'm really liking it
@sandworm9528
@sandworm9528 Жыл бұрын
That's Erlang right
@lod2414
@lod2414 Жыл бұрын
@@sandworm9528 same runtime I believe
@JeyPeyy
@JeyPeyy Жыл бұрын
I haven't done much Rust, but isn't match pretty much the same as any pattern matching in functional languages like Haskell or F#?
@RedHandedBug
@RedHandedBug Жыл бұрын
This video gave me the inspiration to make a startup in Rust.
@ThePrimeTimeagen
@ThePrimeTimeagen Жыл бұрын
rewrite rust in rust
@wlockuz4467
@wlockuz4467 Жыл бұрын
@@ThePrimeTimeagen Isn't the Rust compiler self-hosted? so technically its already writing rust with rust.
@cherubin7th
@cherubin7th Жыл бұрын
@@wlockuz4467 Rewrite it again and again in Rust. XD
@arturfil
@arturfil Жыл бұрын
I know this channel is very pro Rust and I have tried Rust myself and I like it (dont' love it) BUT for rapid prototyping and also having a good dev experience and be able to train and hire I do find Go very easy to choose as a language. For me, in terms of syntax, has some similarities to typescript but obviously has a lot more features once you get to know the ins and outs and I would feel that it would be a good language to choose, to build a startup.
@pascualsu
@pascualsu Жыл бұрын
I totally agree. I really like rust but I doubt I could ever be as fast at prototyping something as I currently am in go
@peter9477
@peter9477 11 ай бұрын
​@@pascualsuFor me the jury's still out on that question. It feels like the only reason I'm not producing working prototypes in Rust as fast as I can in Python is my relative unfamiliarity with the right libs. Sure, I can write lines of code faster in Python, but then I need to test/fix/test/fix and deal with unexpected runtime failures because I was a bit too fast and sloppy. With Rust it goes a little slower up front but then just works. And when I need to refactor (mandatory when prototyping) with Rust it's trivial and with Python I'm back to test/fix/test/fix. So once I'm more comfortable with the right Rust crates I now expect to go faster with it than with Python even in the prototype stage.
@marusdod3685
@marusdod3685 Жыл бұрын
tldr: they were more in love with the language than the product they were building
@pangolinSoftware
@pangolinSoftware Жыл бұрын
I like Go error handling. It does make the code a bit more verbose, but it's very straightforward, like all other things in Go
@jasonwhite5578
@jasonwhite5578 Жыл бұрын
Yes, sir. The error handling model in Go forces the programmer to handle them, it provides transparency and is definitely not a weakness of the language.
@CuriousSpy
@CuriousSpy Жыл бұрын
erm... No
@mohdsalmanansari5992
@mohdsalmanansari5992 Жыл бұрын
no
@_slier
@_slier Жыл бұрын
the most shitty error handling in the universe..
@avithedev
@avithedev Жыл бұрын
Agreed
@__jan
@__jan Жыл бұрын
Seeing the progression of Prime's opinions on Rust as he learns the language more has been interesting. At first sceptical, just dabbling in it a bit, still under the belief that other languages are just more productive and the safety/performance are not good enough to offset the supposedly lower productivity. Then as you start using it a bit more for more involved projects, those belief systems kinda fall apart when you realise you're actually just as productive in Rust, but you also get all the other benefits. Suddenly it seems like Rust has no downsides... why isn't everyone using this thing?!?! And now you're a full-on Rust propaganda machine. It turns out that a well-thought out static type system (traits and enums with pattern matching) combined with best-in-class tooling (cargo, rustfmt, clippy, rust-analyzer) is such a massive productivity boost that even with the lower compile times and "type juggling" you still end up churning out blazingly fast code blazingly fast. Last step is realising that the language is actually kind of incomplete and there are still tons of rough edges. However, seeing the steady progress without compromising on the core values of the language means it's only going to get better, and the future is bright. :)
@ThePrimeTimeagen
@ThePrimeTimeagen Жыл бұрын
:) i like this answer
@roblesrt
@roblesrt Жыл бұрын
Prime's tries things in Rust, so you don't have to.. err so you get better insights in Rust. Thanks a lot Prime for sharing.
@SumoCumLoudly
@SumoCumLoudly Жыл бұрын
Rust analyser is not best in class, it's bloated and slow. Cargo is great, altho compile times are a joke. As someone who doesn't shoot myself in the feet, and who doesn't have any issues whatsoever with memory management, Rust doesn't really appeal to me. The only time I'd ever use Rust is if threre is a better library written in rust compared to the cpp version. This rarely happens.
@neildutoit5177
@neildutoit5177 Жыл бұрын
@@SumoCumLoudly what's your secret for memory management?
@fulconandroadcone9488
@fulconandroadcone9488 Жыл бұрын
@@SumoCumLoudly say what you will, you almost never work alone and the amount of gunshot wounds I saw was immeasurable in js, you might be good but if language doesn't allow bad things every one will be good.
@sawood2010
@sawood2010 Жыл бұрын
I used dotnet for my server because I already had years of xp with it and wanted to get my ideas off the ground. Dotnet does come with a bit of overheard, I'm learning Rust and hoping to implement it in the future.
@uppu04
@uppu04 Жыл бұрын
Any good resource for learning rust that you recommend?
@sunitjoshi3573
@sunitjoshi3573 6 ай бұрын
I’m in the same boat. I like C#, but Rust just seems fascinating.
@benwilcox1192
@benwilcox1192 Жыл бұрын
Anyone notice that when Prime highlights text, he always leaves out the first and last letter from the selection? 7:33 9:24 lol
@floriansalihovic3697
@floriansalihovic3697 Жыл бұрын
“Inherently colours your thoughts” - a valuable idea for a lot of people
@georgehelyar
@georgehelyar Жыл бұрын
I don't think writing it in one language then rewriting it in another language is a good idea for start ups anyway. You start, hire a few language X devs, get something working, then tell them to throw that away and rewrite in language Y, which they are probably not as familiar with. In reality these early decisions will stay with you for a long time so start as you mean to go on.
@Luxalpa
@Luxalpa Жыл бұрын
Exactly. I've been in 3 startups so far and they all suffered from this same problem: a few years after the initial launch of the product, their code is in very messy state. They don't even want to switch to Rust because all their devs are familiar with JS, their code base is far too large to change anyway, and it's so unmaintainable that even small changes take weeks to complete. Like, I know the Rust compiler is quite slow, but looking at how long some of these Typescript projects take to compile in the CI given their rather medium size, it's crazy.
@michaellatta
@michaellatta 4 ай бұрын
I agree you can code rust for early iterations using things like ARC rather than the super strict version. The challenge is identifying the risks and eliminating them quickly. Then rewrite/refactor as you progress toward MVP.
@richardgeddes630
@richardgeddes630 Жыл бұрын
The problem with using Rust or any other language sparingly, is just that. You won't become productive by "timid" programming. When you code, day-in and day-out, with a particular language, you become productive with it. Stick with it, the "muscle memory" will kick in.
@___gg421
@___gg421 Жыл бұрын
Always find it strange when people try to choose the right language for a project when the right language is the one you know well.
@s3dev
@s3dev Жыл бұрын
There is Wails for Go UI. It's kinda like Tauri, but for Go and is amazing in combination with Svelte.
@akshay-kumar-007
@akshay-kumar-007 Жыл бұрын
No offense, but I don't understand why people have an urge to combine both frontend and backend in a single framework. I have written Django code for 3 years and I absolutely hated it(atleast writing UIs). There was always some complex JS/JQuery which I had to write. At that point just use a simple JS framework like Vue, Svelte or React. I code in React/Next.js and NestJS/SpringBoot(for Backend) and I really enjoy the separation it offers.
@Ash-qp2yw
@Ash-qp2yw Жыл бұрын
@@akshay-kumar-007 Probably because that means using Javascript, which is a horrible language. I've specifically designed my current project around Go's built-in HTTP templates instead of working with something like svelte just because I don't want to have to work with JS or TS
@s3dev
@s3dev Жыл бұрын
@@akshay-kumar-007 You misunderstand. Wails is for Desktop apps. So with it you write a "backend" (that communicates with the filesystem, handles logic etc) an the frontend is separate from it. Wails automatically generates the bindings between front- and backend in a really easy to use way. It's not really "combined".
@raianmr2843
@raianmr2843 Жыл бұрын
​@@akshay-kumar-007 Your frontend and backend is still separate in Wails. They just bundle the app down to a single native binary that uses the default webview of the platform. The last part is important here. People have use cases where you don't want to target the web but using web-related technologies is a nice way to go. It seems that you don't have this use case and that allows you to target the web the way its meant to be targeted. As for Django, afaik it precedes the JS boom of the last two decades. Almost no one was writing complex frontends back then and so it makes sense that Django doesn't play nice with the modern JS ecosystem.
@akshay-kumar-007
@akshay-kumar-007 Жыл бұрын
@@s3dev oh my bad.
@shivamjhaa
@shivamjhaa Жыл бұрын
"When you are building a product, boring is okay"
@MrVeps1
@MrVeps1 Жыл бұрын
I agree wholeheartedly that postponing is expensive. There's always something new to add, unfucking old mistakes that still aren't a huge problem will always just help you sustain your current revenue flow. Suddenly, you'll find yourself in your tenth year of your two-month refactoring project wondering why people won't leave you alone to focus on fixing ancient code. Technical debt is a real thing, and when it hits, it hits hard.
@NuncNuncNuncNunc
@NuncNuncNuncNunc Жыл бұрын
Not sure what was being said about not being able to handle error in javascript with fetch_user. It would be either a Promise, an awaited Promise, or an Observable, and all of those have patterns for handling thrown errors. I'll grant that an '?' is more succinct than try/catch but that's it. If it's really a burden configure your ide to write the try/catch block.
@DNA912
@DNA912 Жыл бұрын
real talk, I have a bachelor in CS and been working at my company for a few month. I still have no idea what I'm doing in JS
@myname2462
@myname2462 Жыл бұрын
Well, JS is garbage
@JustAnotherLight
@JustAnotherLight Жыл бұрын
what would you use instead of match btw?
@IanLaffey
@IanLaffey Жыл бұрын
You can do SQL compile time checking with Typescript & Supabase
@nateshih
@nateshih Жыл бұрын
is there a video of prime's 100m dash? Heard he runs a 10.5 and I wanna see
@AdrianDiaz-ob8qn
@AdrianDiaz-ob8qn Жыл бұрын
that fly-like thing at the bottom of the screen was triggering my anxiety levels to the roof, I think I need therapy now
@fiskegalendbpk
@fiskegalendbpk 5 ай бұрын
I built a million dollar app in typescript, now all my dependencies keep deprecating every two weeks, what do i do? All my friends say I should refactor to a “real” language, but I can’t hear them over my soy latte and M1 ARM chip…
@einfacherkerl3279
@einfacherkerl3279 6 ай бұрын
if you read the book database systems by C J Date, the inventor of SQL, he clearly mentioned that STRUCTURED QUERY LANGUAGE should be pronounced as S.Q.L not sequel or "squeal".
@marcusrehn6915
@marcusrehn6915 Жыл бұрын
I like the fact that you pointed out that even if you are a good programmer in another language, that doesn't mean that you will write good Javascript. So finding fantastic rust developers who are also good javascript developers, and who are willing to even touch javascript, will probably be hard.
@abhisekde6841
@abhisekde6841 6 ай бұрын
I am building a product in my spare time in Go. I just wish Go had enums out of the box.
@peterdecroos1654
@peterdecroos1654 Жыл бұрын
go also has a garbage FFI. I think ocaml is a better middleground with the exception of the ecosystem being smaller
@replicator__
@replicator__ Жыл бұрын
For me, Gos biggest weakness is that it misses so many nice syntax features I love in Rust. Macros are on the extreme end of that. Go is designed to be super simple and, for my liking, it compromises too many features for that. But I get the reason and understand why it's the case. Still, even with go modules and go workspaces it doesn't convince me.
@PouriyaJamshidi
@PouriyaJamshidi Жыл бұрын
Nim seems to be a better option than Go. It has a better and optional GC, syntax, features and more mature imo.
@laughingvampire7555
@laughingvampire7555 Жыл бұрын
when the time comes to optimize for scale the decision is always to defer as much as possible, because coding time is always more expensive than CPU time.
@thomassparrevohn8577
@thomassparrevohn8577 Жыл бұрын
This is most common argument you hear when it comes to code for startups, but behind it seems to be an assumption that the main reason to do the start up it to get it it sold and move on hence architecture, longevity and future cost is of little or no concern. It's one of the things you normally look out for when assessing aqusitions or long term financing. Unfortunately there are often a common synergy between "startup" and people who specialise in financing startup's where immediate results are more important. Nonetheless 80% of the future cost relates to these decisions and very often the viability of the product
@user-mj7kk8tu1e
@user-mj7kk8tu1e 8 ай бұрын
The best part is, almost 90% of the "pro's" and "reasons" to use rust, exist in Java, except that Rust is more performant due to absent layer of interpreter. So, as a Java developer, I am actually pretty happy here and have plenty of jobs to choose from :D And another point is... Java is actually very good nowadays and GC have been improved dramatically.
@MarcosVMSoares
@MarcosVMSoares Жыл бұрын
Elixir you don't need k8s, it's faster to write even than JS, Ruby, GO etc because it's no OOP and not strongly type. And you have case/1 instead of match. And don't forget too, sqlx it's amazin but ecto ... and you have sandbox mode when testing.
@zzzyyyxxx
@zzzyyyxxx Жыл бұрын
Elixir is kinda the worst of both worlds to be honest, no static types means there will always be some bug or another, plus not as fast as TS, much less Rust.
@MarcosVMSoares
@MarcosVMSoares Жыл бұрын
@@zzzyyyxxx not fast as TS? are u crazy? Static type dont save you from bug, is much better to have good testing for that propose.
@zzzyyyxxx
@zzzyyyxxx Жыл бұрын
@@MarcosVMSoares hahaha, static typing doesn't save me from bugs? Good one, I had a good laugh. Manual testing is in no way a substitute for something I can have the computer do automatically, like why would I manually write out data type checking tests? Waste of time (not other types of tests though of course) And yes, Elixir is not as fast in runtime as TS which when transpiled to JS runs on V8 and its very fast
@MarcosVMSoares
@MarcosVMSoares Жыл бұрын
@@zzzyyyxxx ok with you say so ^^
@highlyevolved4977
@highlyevolved4977 Жыл бұрын
For me, the biggest negative for rust is actually that it’s not statically compiled. I love everything else about it..
@Cookiekeks
@Cookiekeks Жыл бұрын
What does that mean? Sorry I'm new to this.
@Luxalpa
@Luxalpa Жыл бұрын
It is statically compiled.
@dn5426
@dn5426 Жыл бұрын
Go with a slightly better type system would be perfect.
@LoftwahTheBeatsmiff
@LoftwahTheBeatsmiff Жыл бұрын
If you've got a team already comfortable with the concept of the backend being decoupled from the front-end do you think it is worth looking for something with a more full stack approach that you get with something like Django or Rails? I almost assume I'll be hooking up JavaScript to a REST API or something.
@zzzyyyxxx
@zzzyyyxxx Жыл бұрын
God I hate full stack frameworks. I used to work in Rails and while the happy path is good, when you need to have something custom, you literally can't do it without removing Rails, basically.
@eddwinnas
@eddwinnas Жыл бұрын
django sucks go flask
@LoftwahTheBeatsmiff
@LoftwahTheBeatsmiff Жыл бұрын
@@zzzyyyxxx I work with Rails but I think I'd prefer Sinatra.
@LoftwahTheBeatsmiff
@LoftwahTheBeatsmiff Жыл бұрын
@@eddwinnas what about FastAPI?
@eddwinnas
@eddwinnas Жыл бұрын
@@LoftwahTheBeatsmiff It always had some memory leaks or issues with missing certain features at this startup I worked at. That was 2 years ago though. Flask/starlite/fastpi cant go wrong. Django is great if you need a huge project with lots of required things for coporate enviroment like admin / group privalages. Flask is good if you need tons of library with flexibility. Starlite/fastpi is probably the way I would ultimately go now for backend API's though in python.
@johanlarsson9805
@johanlarsson9805 Жыл бұрын
What is the editor/command promt he is using?
@dixztube
@dixztube Жыл бұрын
Use that Theo stack (I didn’t lol I wanna learn computer science) but if you got business just use that jawn
@warever9999
@warever9999 Жыл бұрын
If you love enums, then how it is possible that you are not using match expressions? )
@grim.reaper
@grim.reaper Жыл бұрын
This video makes me want to learn rust 😅. The channel itself was enough boost but Prime reading the article and explaining things I can relate it to missing pieces in Go …
@karl4813
@karl4813 Жыл бұрын
Yo Prime! I want to see you break down CS50's Tideman task in C ;)
@venicebeachsurfer
@venicebeachsurfer Жыл бұрын
What about NestJS? You try that yet?
@diadetediotedio6918
@diadetediotedio6918 Жыл бұрын
10:00 the definition of entrepreneurship
@michaeloconnell145
@michaeloconnell145 Жыл бұрын
Something I would have expected to see with this article is a reference to cold start time for AWS Lambda functions with rust, as of my last time checking Python and Typescript/JavaScript had the lowest cold start times. This could be a differentiator based on their expected traffic, thresholds, and scaling model.
@ccgarciab
@ccgarciab Жыл бұрын
Aren't Rust cold starts really fast too? It's just a binary after all. No need to JIT anything.
@orychowaw
@orychowaw Жыл бұрын
Sounds a lot like they decided to use Rust for their startup because they heard good things about it, but where not proficient with it. So they had to learn the language at the same time as building their value. IMHOP a) they would have been happier with using a language/tech stack they were already comfortable with and b) now that they are familiar with Rust it will be easier to use for a new startup...
@ferretcode
@ferretcode Жыл бұрын
it seems like a lot of companies are choosing go rather than rust for startups
@boredstudent9468
@boredstudent9468 Жыл бұрын
Holy shit that pronounciation of SQL...
@esra_erimez
@esra_erimez Жыл бұрын
I'd go so far to say boring is good. We are migrating our backend from C++ to Go. I find C++ to be a waking nightmare with unexpected surprises and Go to be boringly predictable. I like Go because it is feature rich like Java and C# and at the same time natively compiled. It is unlike C# that is closely tied to the Microsoft ecosystem and unlike Java which needs a JVM.
@ThePrimeTimeagen
@ThePrimeTimeagen Жыл бұрын
appreciate this
@metaltyphoon
@metaltyphoon Жыл бұрын
Sorry but have you been living under a rock? C# is very much free from MS ecosystem only for more than half a decade. In fact I use C# from macOS do deploy to Linux environments on AWS 😂
@RemotHuman
@RemotHuman Жыл бұрын
I think you can compile java not to need the JVM but I'm not sure
@jasonwhite5578
@jasonwhite5578 Жыл бұрын
@@metaltyphoon She doesn't mean that it doesn't cross compile, she means if Microsoft decides to stop supporting C#, you're done. Another thing that's nice about Go, I can download the whole language and have it entirely separate from anything Google. Don't even have to install anything on my PC. Just point an environment variable to the language folder, and I'm up and running.
@hck1bloodday
@hck1bloodday Жыл бұрын
@@jasonwhite5578 since c# is opensource, you can say the same about it, download it, compile it and use it. also google is known to kill its products whenever it feels like, so I would be more worried about go losing support from google than C# losing support from microsoft
@pxkqd
@pxkqd Жыл бұрын
I read this article a couple days ago as well. I don't know Rust well, I mostly do Typescript. And I disagreed with it. If you already know rust, use it.
@paulholsters7932
@paulholsters7932 Жыл бұрын
I am gonna begin a startup for a product. Should I use Go or Rust? Is error handling really this terrible in Go? Right now I am building a prototype in JavaScript
@joseandkris
@joseandkris Жыл бұрын
Go is fine
@paulholsters7932
@paulholsters7932 Жыл бұрын
@@joseandkris thx for now I will go with go but I am still gonna investigate rust ..
@kriscarr5839
@kriscarr5839 Жыл бұрын
Quick tip, make a handful of code snippets to insert the if err == nil block in a few keystrokes rather than typing it all out every time. It does make it much easier to refactor into more fanciful error handling later already having the block compared to splitting out ? chains in rust later into match expressions causing it to break the ownership rules. Whether you care about that of course comes down to if you care about having a more fanciful error handling later or not.
@ernesto8738
@ernesto8738 Жыл бұрын
"Slower iterations" i think is more about "am i building the right features" not "do i have the right solution to this technical problem that itself is contingent on us having product market fit already"
@u9vata
@u9vata Жыл бұрын
Why I choose to stay with C++ instead is because for me its just so much faster to develop. Rust I find more beneficial in bigger teams where code review would not scale well anymore... People also misunderstand why people use C++: I don't give a shit that I can shoot myself in the foot, I give a shit for zero cost abstrations that are FAST TO WRITE. That's all. This is why C++ and RUST live together and not one over the other because the reason why one picks up a tool is actually totally different. To be honest more web people pick up rust than C++ people I would say.
@cruz9617
@cruz9617 Жыл бұрын
07:31 This was literally me 🤣😅
@shwetagk5362
@shwetagk5362 Жыл бұрын
Twitch is on Ruby why not set direction of startup in it and then double down on performance with rust or go
@br3nto
@br3nto Жыл бұрын
12:20 yeah rewriting and starting again in a new language is a pretty big call. At what point do you make that call? At what point is it too late? And it’s not just the code, it’s also the whole deployment pipeline, and any other tools you’ve written, and the people hired with the specific skill sets. And maybe the frameworks used with the two languages aren’t exactly compatible, so you may have to restructure the code too. Not that it can’t be done… it’s just a big call… Personally, I would only make that call if something had catastrophically gone wrong with the first language choice or the first choice was going to financially ruin the company or hold it back in some significant way.
@raybarrera9002
@raybarrera9002 Жыл бұрын
1:45 Nails on a chalkboard
@MrWorshipMe
@MrWorshipMe Жыл бұрын
I'd use python for prototyping, then replace safety critical and performance critical parts with rust.
@MrKKrueger
@MrKKrueger Жыл бұрын
I really like the way you pronounce SQL
@Titsnitch
@Titsnitch Жыл бұрын
Yeh same but then I get offline satchel raided and it’s just so tough to come back to a raided base
@jaredsmith5826
@jaredsmith5826 Жыл бұрын
Hot take: language development for the last ~15 years has been trying to find the sweet spot in terms of how strong the type system should be. At the time Rust, TS, Swift, Kotlin, etc were being created we knew that Haskell was too much and Java/C#/C++ and the popular dynamic languages were not enough. Go is the outlier: a conscious rejection of the zeitgeist. Time will tell I guess.
@akshay-kumar-007
@akshay-kumar-007 Жыл бұрын
Go is perfect sweet spot for writing backend code. Change my mind.
@jaredsmith5826
@jaredsmith5826 Жыл бұрын
​@@akshay-kumar-007 Imagine that you had to defend Go based solely on the support you get from the compiler/type system. Go has many many sterling qualities: fast cycles, simple familiar syntax, best-in-class concurrency primitive multiplexed seamlessly to real OS threads, solid toolchain/ecosystem, strong corporate backing, tons of pedagogical resources, etc. But all of those (except the first one and _maybe_ the second) are orthogonal to my point: you could conceive of a language that did everything Go does but gives you a better DX via a less primitive type system. Don't get me wrong, if you're asking me to choose a backend language in a carte blanche greenfield project I might very well pick Go, but if I were to design my ideal language it... wouldn't be quite like Go. Adding generics has helped a lot, but even Java had those in 2004. Still, in terms of what language to pick in 2023 it's a very solid choice, maybe even the best choice, it's just not the best *possible* choice. At any rate, my point wasn't even really about Go, it was more about how similar all of the other languages that came out in the same era are, and my stab at an explanation of why.
@chh4516
@chh4516 Жыл бұрын
@@akshay-kumar-007 Try Kotlin. You get all the Java Ecosystem for free, have amazing typesafety, nullsafety, super readable code and a wide variety of options to solve your problems. It is made to be simple, beautiful and powerful.
@owenwexler7214
@owenwexler7214 6 ай бұрын
Got a backend rewrite in either Go or Rust planned for 2024 so this is very timely.
@owenwexler7214
@owenwexler7214 6 ай бұрын
Hmmm I think we are solidly in "it's time to scale"/"we have a solid direction and don't want too much tech debt" mode. Gonna do some prototyping with Rust and either Diesel or sqlx depending on the DX and if it fits our needs.
@stephenreaves3205
@stephenreaves3205 Жыл бұрын
wholeheartedly agree that Go's lack of UI tools hamstrings it in certain scenarios
@jasonwhite5578
@jasonwhite5578 Жыл бұрын
But what language actually doesn't lack UI tools to some degree - they all do, even Rust. Show me one language that has the robustness of Go and at the same time provides the developer a cross platform UI toolkit built in, and I'll tell you you're high haha.
@stephenreaves3205
@stephenreaves3205 Жыл бұрын
@@jasonwhite5578 rust wasm at least feels native. Doing any Golang wasm feels so hacky
@narekasadorian
@narekasadorian 9 ай бұрын
i think the article should be renamed "building a startup in rust while learning rust" if you already know the language, you can move really quickly...
@masoodahmad3312
@masoodahmad3312 Жыл бұрын
Any comments on clojure vs rust?
Rust Absolutely Positively Sucks
20:15
ThePrimeTime
Рет қаралды 242 М.
8 deadly mistakes beginner Rust developers make
14:14
Let's Get Rusty
Рет қаралды 157 М.
Smart Sigma Kid #funny #sigma #comedy
00:19
CRAZY GREAPA
Рет қаралды 20 МЛН
Always be more smart #shorts
00:32
Jin and Hattie
Рет қаралды 26 МЛН
1 класс vs 11 класс  (игрушка)
00:30
БЕРТ
Рет қаралды 4,3 МЛН
Code That MURDERED 6 People | Prime Reacts
17:57
ThePrimeTime
Рет қаралды 227 М.
AWS Fooled Devs & Sabotaged The Industry | Prime Reacts
21:47
ThePrimeTime
Рет қаралды 213 М.
Programming robots with Rust? | arcTech
1:53
arculus – a Jungheinrich company
Рет қаралды 1,9 М.
100 Seconds of Rust | Prime Reacts
10:38
ThePrimeTime
Рет қаралды 308 М.
Rust is Not C
16:24
ThePrimeTime
Рет қаралды 190 М.
I'm Coming Around To Go...
21:33
Theo - t3․gg
Рет қаралды 101 М.
Rust Interior Mutability - Sneaking By The Borrow Checker
16:02
Code to the Moon
Рет қаралды 64 М.
Dear Functional Bros | Prime Reacts
26:03
ThePrimeTime
Рет қаралды 191 М.
I spent six months rewriting everything in Rust
15:11
chris biscardi
Рет қаралды 408 М.
Zig is FASTER and SAFER than Rust | Prime Reacts
31:19
ThePrimeTime
Рет қаралды 185 М.
Неразрушаемый смартфон
1:00
Status
Рет қаралды 1,5 МЛН
Lid hologram 3d
0:32
LEDG
Рет қаралды 4,4 МЛН
Iphone or nokia
0:15
rishton vines😇
Рет қаралды 1,8 МЛН
#miniphone
0:16
Miniphone
Рет қаралды 3,5 МЛН
Разряженный iPhone может больше Android
0:34