In Search of Code Purity

  Рет қаралды 93,304

No Boilerplate

No Boilerplate

Күн бұрын

Alternate title: Rust's Hidden Purity System
I was taught formal methods at university but these ultra-safe development techniques are expensive, require using unusual external verification languages, and most damning for web and application developers, they slow down iteration.
After graduating and getting a webdev job, I despaired that the safety and guarantees of the formal systems that I had been introduced to weren't available to me as a web developer.
I was going to have to act if I wanted to live in a different world.
❤️ If you would like to support what I do, I have set up a Patreon here: / noboilerplate - Thank you!
📄 All my videos are built in compile-checked markdown, transcript source code available here github.com/0atman/noboilerplate this is also where you'll find links to everything mentioned.
🖊️ Corrections are in the pinned ERRATA comment.
🦀 Start your Rust journey here: • How to Learn Rust
👕 Bad shirts available here www.teepublic.com/user/no-boi...
🛰️ Lost Terminal is here: • Lost Terminal Episode ...
🌕 Modem Prometheus is here: • Modem Prometheus 1 - #...
📓 The Phosphene Catalogue is here: • The Phosphene Catalogu...
🎵 My published albums are on spotify, itunes, etc, but I have a lot more unpublished work over at / namtao
🙏🏻 CREDITS & PROMO
My name is Tris Oaten and I produce fast, technical videos.
Follow me here tech.lgbt/deck/@noboilerplate
Website for the show: noboilerplate.org
Come chat to me on my discord server: / discord
If you like sci-fi, I also produce a hopepunk podcast narrated by a little AI, videos written in Rust! www.lostterminal.com
If urban fantasy is more your thing, I also produce a podcast of wonderful modern folktales www.modemprometheus.com
👏🏻 Special thanks to my patreon sponsors:
- JC Andrever-Wright
- Miah Beach
- Taylor Dolezal
- Thomas Picard
- David Senk
And to all my patrons!
Alternate title options:
1. In Search of Code Purity
2. Rust's Secret Purity System
3. My Journey from Haskell to Go to Rust
4. const fn: Pure Functions in Rust

Пікірлер: 429
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
ERRATA - Wikipedia's got a great overview of Formal Methods: en.wikipedia.org/wiki/Formal_methods - 7:00 : typoe Cofigurable -> Configurable. - 9:04 typo: faddone -> addone
@raskr8137
@raskr8137 4 ай бұрын
The quote at the end says "purerer" instead of "purer"
@ToranSharma
@ToranSharma 4 ай бұрын
5:41 should rstest be in the [dev-dependencies] section?
@Isaac-zy5do
@Isaac-zy5do 4 ай бұрын
Coq has been renamed to rocq for obvious reasons. (If you're interested, thr new name is short for Rocquencourt, where the prover was first developed)
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
ah, probably
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
hehe yes, that's me being daft
@mattiasmartens9972
@mattiasmartens9972 4 ай бұрын
"I am not sure if what you want is actually what will make you happy" is such a baller comment to leave on someone's technical question
@FrederikSchumacher
@FrederikSchumacher 4 ай бұрын
You can't always get what you want But if you try sometimes you just might find You get what you need
@KoltPenny
@KoltPenny 4 ай бұрын
Your average SO answer.
@irlshrek
@irlshrek 3 ай бұрын
thats some gandalf level shit
@kevinsmirnov264
@kevinsmirnov264 3 ай бұрын
Especially when giving no more information
@oredaze
@oredaze 4 ай бұрын
"It's not C++, but better. It's haskell standing on lisps shoulders, hiding in C's coat to sneak into production" Ok, that is next level :D I love it. I am not a programmer (just like reading about it as a hobby), but you may make me start learning it for real with your videos and rust. Are you interested in making videos targeting beginners (using rust of course)? It would be an interesting idea/challenge to teach rust as first lang.
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
Thank you! I already did: kzbin.info/www/bejne/eXvXp6GbpbKJd7c
@BboyKeny
@BboyKeny 4 ай бұрын
Do it!! Programming is tons of fun.
@creativecraving
@creativecraving 4 ай бұрын
Programming is empowering, and very fun if you like hard, structured things like RimWorld or Dwarf Fortress or Factorio. It can also be painful to learn and do at times. (You're always building new brain muscles.) Best of luck!
@Vingdoloras
@Vingdoloras 4 ай бұрын
Love how this channel has turned into a huge ad for Rust. I've been reading about Rust from an outside perspective for years but always thought it'd be annoying/painful to get into. Your videos slowly warmed me up to the idea that this is not the case. Someone got me a physical copy of Crafting Interpreters for Christmas and I decided to pick up a new compiled language before I work through the book (the last compiled language I used was Java 8-9 around 10 years ago and I did not feel like going back to Java lol). Went through your entire Rust playlist during downtime between festivity-related business and started working through the rust book, one chapter a day. It's been a blast so far!
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
Wonderful! yes, I'm desperate to tell people about this incredible language because it's so *chill* to code in, I don't write... BUGS!
@creativecraving
@creativecraving 4 ай бұрын
Speaking as a relative newbie, you'll want to have tight integration between rust and your IDE, so you can proactively respond to error messages, at least until you instinctively learn the rust idioms. VSCode does this okay with minimal setup. The type system makes a very strong contract with your code, so I find myself twiddling function signatures a lot to change the contract to allow me to add the behavior I need. This is more rewarding than debugging, but is a big time-sink in the beginning. Occasionally, I realize I'm not smart enough to express what I want in the type system, so I have to move on to a different strategy. I recommend learning about type aliases early on, as they can help save typing when you're repeating a long type annotation and need to tweak it. Also, Rust a lot easier to learn if you already know Haskell. Then, all you have to learn are lifetimes and borrows + syntactic differences. You don't have to learn to build or understand macros upfront, although you'll probably use a few. Just treat them like the annotations and typeless functions from other languages at the start. That mental model is working okay so far. Coming from an OO language, you'll find several new things: composition used in place of inheritance; new and powerful kinds of polymorphism; sum types (enums); enums used instead of null (Option/Result); traits instead of interfaces.
@axelcool1234
@axelcool1234 3 ай бұрын
What a coincidence! I've started to read the Rust book as I plan to tackle the Crafting Interpreters book with Rust!
@em_the_bee
@em_the_bee 18 күн бұрын
And why exactly do you love it?.. Are you that much in need of someone confirming your point of view that all the kilotons of Rust ads out there are not enough for you?
@Vingdoloras
@Vingdoloras 18 күн бұрын
@@em_the_bee ​ Are you getting angry about a comment I made months ago on a video? Wow! Maybe read more than the first sentence of a comment before replying with passive aggressive questions, though. The second and third sentence of my comment answer your question and point out that what you're trying to complain about is not what's happening.
@mskiptr
@mskiptr 4 ай бұрын
I don't think we _have to_ compromise. Designing an ergonomic language that can still be formally verified is definitely a challenge, but I am confident that with managed effects, capabilities and dependent types we will one day create something you can fairly quickly iterate on at first and later on still add proofs, formally verified optimizations, etc.
@mskiptr
@mskiptr 4 ай бұрын
Just a quick "ad" for three languages: - Ownership and borrowing of linear resources are basically purity. You just need a capability system. For an excellent example of that, see Austral. - If you want to see Haskell, but with neatly integrated formal methods, take a look at Idris. - And purely functional languages can absolutely be ergonomic. Elm is the easiest language I've ever seen.
@laundmo
@laundmo 4 ай бұрын
hmm, and yet nobody has managed yet. Rusts practicality is imo a big reason its actually gotten popular unlike many other languages which try new thinga
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
I applaud the effort, but over and over we have seen that if you make that language, no-one will use it enough to solve the problems in the world we're hoping to solve, and it'll be another Haskell, languishing with Matlab on this graph redmonk.com/sogrady/2023/05/16/language-rankings-1-23/ All the features you mentioned in your other comment can be built inside rust using the Macro system, and many of them are (go check lib.rs!) which is tremendously exciting!
@Speykious
@Speykious 4 ай бұрын
@@NoBoilerplate I don't think it's a good argument to only look at the failures of today's languages. I too am hopeful for such a language to exist. After all, before Rust, it was either you manage pointers directly and have to compromise on safety (even in C++ where you have somewhat decent pointer management helpers), or you use a garbage collector and have to compromise on performance. Rust made it so you don't have that compromise anymore _by language design._ Language design is the kind of stuff that can solve these problems, so being hopeful about it isn't unrealistic.
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
Totally agreed, and I'm expecting the next best thing to be bootstrapped in Rust :-D
@ItsVasl
@ItsVasl 4 ай бұрын
Such possitiveness, you are a stress relief! A big fan of lost terminal as well btw:)
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
Thank you so much!
@Turalcar
@Turalcar 4 ай бұрын
7:11 probably the best description of function purity (and encapsulation in general) and why it's good
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
thank you so much!
@earthmusician
@earthmusician 4 ай бұрын
I feel like this video is a great way of explaining modularity of Rust as a language. Making Rust more specialized i.e. making Rust a more pure language via an easily controlled limitations by adding rules to compile e.g. minimalistic linting and some added packages is definitely is a great boon to language. Also, the phrase "Rust is a pure as possible, but no purer", really solidified the idea in the end. Your video gave me just one more reason to love Rust, and insight into programming languages in general. Thanks for the great videos as always!
@sebred
@sebred 4 ай бұрын
I am a fan of formal methods and rust has so much to offer in that area. One of the most interesting things for me is how the compiler has so much information about the code that some very interesting optimisations become available. And while most of my more esoteric projects in rust eventually end in me bemoaning the absence of dependent types (const generics are not enought) the rest of the time I am quite glad that I do not have to depend on somebody doing very elaborate type shenaningans.
@sids911
@sids911 4 ай бұрын
Hi tris, a random viewer here with a take... This seems very similar to c++ consteval/constexpr, and zig comptime functions. In c++ consteval/constexpr is very strict scope like in rust although comparably less strict, it allows arithmetic on Floats etc. but rest are pretty similar. To me it just seems very similar in terms of purity, one of my tricks when writing a pure function in c++ is to just slap a constexpr at it and see if the code compiles...
@mikehoughton204
@mikehoughton204 4 ай бұрын
Thanks! Your vids are sweet and to the point. Excellent signal/noise ratio! :)
@N....
@N.... 4 ай бұрын
It's nice to see C++'s constexpr being brought to life in Rust as well, that's really cool as it has many of the same benefits in both languages. Being able to easily see a function has no side effects just from glancing for that `const` is really useful.
@xore_1798
@xore_1798 4 ай бұрын
Man your video's are hella motivating. You're an inspiration, keep up the good work!
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
Thank you!
@linkernick5379
@linkernick5379 4 ай бұрын
I have made the transition from Haskell to Rust too, for me the main reason was the lack of control over inner runtime "gears" that made really hard the performance tuning. I liked pretty much the monads and the type system though.
@Ketsur0n
@Ketsur0n 4 ай бұрын
Hey mister no boilerplate I started following you some months ago your videos on time management and such really helped me out ❤ thank you
@CalifornianViking
@CalifornianViking 4 ай бұрын
I love the perspective you bring to programming. You are like the carpenter who is also a philosopher. You understand the practicality while putting it in the context of the meaning of life. One commenter says that the channel is an ad for Rust. I disagree with this comment. I am confident that you will call out the things you do not like, and I don't believe you are paid.
@theKC66Youtube
@theKC66Youtube 4 ай бұрын
I'm glad your channel exists. I got back to learning Rust again after i dropped out for a while. Thank you for existing!
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
My pleasure, this kind of excitment is what I'm here for!
@creativecraving
@creativecraving 4 ай бұрын
@@NoBoilerplate You're causing me to hate the language (C#) I use at my day job. Presumably, that's _also_ the excitement you are here for! :-p :-D
@mello1016
@mello1016 3 ай бұрын
@@creativecraving C# is the cream at the top, appreaciate it, 99% things are much worse
@trevorroddy3773
@trevorroddy3773 4 ай бұрын
loved haskell in school and am now two weeks into learning Rust, again your video has been perfectly timed. excellent!
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
wonderful!
@Skerathh
@Skerathh 4 ай бұрын
This channel inspired me to cover Rust in my upcoming bachelor's thesis (somehow, I haven't figured out yet what practical topic I could cover as I have to be very specific with things). I really want to see it get adopted more.
@zanbaldwin
@zanbaldwin 4 ай бұрын
How did I not know about const functions? The way you presented this has given me so many ideas :) I really liked this video
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
Zan! Hope you're having a great time. Yeah, right!? What else is this fun language hiding from us!
@rahul38474
@rahul38474 4 ай бұрын
I feel like Zig also incorporates concepts of pure functions through the compile time evaluation. Functions that run at comptime cannot have any runtime side effects. The compiler caches the call of the function, so calling a function with the same inputs at comptime will be guaranteed to produce the same result. It also doesn’t have many of the limitations of Rust const fn. You can have any loop you want (and even inline the loops too, if the bounds are compile time known). Additionally, you can assert and compileError or panic to stop the compiler. And since some comptime functions can also run at runtime, you can keep the purity of the function too (only it won’t be guaranteed unless you run the function at compile time first to verify).
@sids911
@sids911 4 ай бұрын
I see zig comptime more comparable to c++ consteval/constexpr it's more of a compile time execution for a function (I absolutely love it, I use them as primary design for 2 of my major projects). But I doubt they are similar to rust const fn... For example floating point operations are allowed.
@SimonClarkstone
@SimonClarkstone 4 ай бұрын
0:40 Now I have that tune in my head.
@AK-vx4dy
@AK-vx4dy 4 ай бұрын
Your conclusions are so unconvetional but the same so practical. Never stop to be amazing !
@sambroderick5156
@sambroderick5156 4 ай бұрын
One of your best so far. Bit dense but invites deep thought.
@user-zz6fk8bc8u
@user-zz6fk8bc8u 4 ай бұрын
Formally proving code is almost mever done, not even in medical devices and at NASA. Sometimes very very small parts of the code base are formally proven. But it doesn't really solve much because compilers are to complicated to formally prove, CPU microcode is not formally proved, the hardware itself isn't. And even if all that where, if a cosmic ray hits the hardware in an unlucky way, all bets are off. In practice software is split into small units and those are tested to a required level.
@jackhales6179
@jackhales6179 4 ай бұрын
This video couldn't have come at a better time for me. In the middle of learning Rust for the 2nd/3rd time, starting to get it, and this cut at the reason I was looking at it. The "const fn" attributes you describe remind me of Python's Numba library, where there are similar restrictions in NoPython mode. That library is one of the reasons I went further into Rust, because Numba is so fast, but Rust was faster. Thanks!
@Felipe-53
@Felipe-53 4 ай бұрын
You are a very inspirational person! Your work is awesome! Thanks!
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
Thank you so much! I'm hoping to help as many folks as I can (and I'm learning a lot in the process!)
@okie9025
@okie9025 4 ай бұрын
4:30 could you explain the "garbage collector" part for Nim? I'm not a Nim user, but don't all of the languages on the list except Rust use a garbage collector? Why is Nim's garbage collector emphasized here?
@janAkaliKilo
@janAkaliKilo 4 ай бұрын
I also don't understand. Nim is also, probably, had one of the best GCs from that list: fast, deterministic, low-overhead, no 'StopTheWorld', memory safe, thread local. But it's definitely not an issue now with ARC/ORC being default in 2.0.
@julienmarcuse9023
@julienmarcuse9023 4 ай бұрын
Great video! I have spoken with my friends (one of whom is a Haskell enthusiast) about purity several times in the past, and kept coming back to const fns. It is kind of disappointing how limited they are, but I came to the same realization that due to the borrow checker, I really don't *need* a purity system. If a function takes in no mutable parameters, I can be reasonably sure it's not going to have any side effects *that matter to my code*.
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
You've got it exactly. Also, we don't need Rust to be Haskell, we've already got Haskell! We need something that brings MOST of Haskell's features to the masses, and that's Rust
@Randych
@Randych 4 ай бұрын
@@NoBoilerplate imo if that was your message, then const fns is very far from something that I'd call best for showcasing this
@laundmo
@laundmo 4 ай бұрын
Really liked this video. very clear and well reasoned, and about a topic which hasnt gotte enough love!
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
Thank you so much Laund, and thank you for your help!
@Speykious
@Speykious 4 ай бұрын
Agreed
@michelnielsen2855
@michelnielsen2855 4 ай бұрын
Really useful knowledge. I have a mostly functional programming background and is working on learning embedded rust, so I highly value this kind of knowledge. I always wished that I could just write all my code in something like Idris, but have concluded that Rust is good enough for now. ..and love that night club image :p
@redreality6940
@redreality6940 4 ай бұрын
I'd love to see you talk Nim more. I've started using it recently and it seems like the Leonarod Da Vinci of programming languages, defying conventional wisdom by doing so many things and doing them so well. Combining the features from other languages that are normally really the main reason people use them (pythons simple syntax, C's low level performance, C++'s versatility) It might become the "anti-rust" competitor language.
@pik910
@pik910 4 ай бұрын
Its creator is what I'd call a religious fascist who has called for violence on various occasions and believes there is some queer dystopian conspiracy. This personality reflects in conflicts inside the project and management style and pretty much assures that the language is going to stay obscure. There are many great ideas in nim but the language is not perfect and will probably get eaten up by the next language that figures that developer experience and performance are both important. As well as marketing and community building. Maybe mojo.
@janAkaliKilo
@janAkaliKilo 3 ай бұрын
​@@pik910 What? I'm relatively new to Nim community and I have no idea who you're talking about.. Yes, Araq has some conservative views, but calling him fascist has absolutely no bearing with reality. "This personality reflects in conflicts inside the project and management style" - my impression is totally opposite, Araq can be grumpy and harsh in words, but he's also not the last to apologize and admit his mistakes and flaws. P.S. regarding "queer dystopian conspiracy" - he's not far off if we're talking about modern social-political discuss in and around US, but that's totally off-topic =).
@djazz0
@djazz0 4 ай бұрын
4:21 Nim is my go to these days. So much fun to code microcontrollers in. Not sure how having memory management is a downside? Sure it’s a bit obscure, and the stdlib needs work. I don’t use the stdlib for embedded anyway.
@thomasfrans1185
@thomasfrans1185 4 ай бұрын
I love the quotes in these videos. They capture the idea of Rust so well.
@Nimward
@Nimward 4 ай бұрын
Happy to see more Rust videos. I've watched every video, some multiple times. Re Nim, I've been publishing a series of videos exploring the language by writing an interpreter in it. For anyone interested in Nim, you might enjoy and I appreciate any feedback.
@codetothemoon
@codetothemoon 4 ай бұрын
“…Production, the popular night club where all the popular languages hang out” - 😂 amazing
@SimonClarkstone
@SimonClarkstone 4 ай бұрын
AFAICT, the subset of Rust that uses mutable borrows and mutable local variables, but is otherwise pure, can be mechanically converted into normal pure code (e.g. Haskell) by changing all the mutable borrows into passing-in values to functions which then return (alongside the proper return value) the updated value that gets re-incorporated into the datastructure whence it was mutably borrowed (and all the mutations of local variables must be turned into Static Single-Assignment, and loops into recursion, etc). I noticed this in Advent of Code 2022, when one of my Rust solutions was similar to an online Haskell solution, but with mutable borrows instead of returning updated parts of datastructures from functions.
@VioletCowelicious
@VioletCowelicious 4 ай бұрын
I've coded webapps in Haskell professionally (specifically reflex, an FRP framework). It was a great experience. Without FRP it would have been painful though.
@spycemyster8198
@spycemyster8198 4 ай бұрын
Your videos are so inspiring and informative! I'm wondering what your opinion is on C#? I'm a game developer and I code everyday in it. I also know a little bit of Rust and from what I see, C# feels like an "easier" version of Rust. It's type-safe, has compile-time source-generation, the newer versions are including more and more functional patterns and paradigms, and it's still fairly performative (though not as much as Rust).
@abdallahmeddah8461
@abdallahmeddah8461 2 ай бұрын
Funny, I am using this video as a motivational source to learn rust, I read the documentation, do some rustlings exercices, get mad because I don't understand something, come back to this video for motivation, repeat. Thank you!
@jonnyso1
@jonnyso1 4 ай бұрын
Rust has so many well thought little design decisions that add up without you noticing that when I work on other languages I can't put my finger on it but it always feels like something is missing.
@littlecurrybread
@littlecurrybread 4 ай бұрын
yes! Absolutely. In games there's a term called game feel, it's a bunch of little decisions that add up and elevate a game for the user. There's a similar thing I experience using rust.
@killingtimeitself
@killingtimeitself 4 ай бұрын
as someone who doesnt actively program (but really should) these deep dives into structures surrounding the languages puts them into perspective nicely. Now i somewhat understand why people like rust, as opposed to, knowing that people like rust.
@doce3609
@doce3609 4 ай бұрын
Thank you to introducing me to this clippy option. I love it
@be1tube
@be1tube 4 ай бұрын
Unfortunately, neither Haskell nor Rust has a version of "purity" that allows you to guarantee that a subset of the code will not crash/panic at runtime. This was my biggest disappointment with Haskell.
@jacrease8880
@jacrease8880 4 ай бұрын
these videos are what got me into rust and i love it
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
wonderful, thank you!
@AkilManivannan
@AkilManivannan 4 ай бұрын
I tried Rust and had some fun before giving up since I found it too slow to write with, but after seeing so many of your videos, I'm going to dive back in and try again 😅
@laundmo
@laundmo 4 ай бұрын
it takes much longer than other languages to reach a proficiency where you're fast. but it saves a lot of time in other areas like debugging of complec problems.
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
It's only slow using your old coding techniques and habits. If you code, compile, test, look at an error and try to guess what's wrong, it'll certainly be slower! But with rust you can code faster by using what I think of as "Compiler Driven Development", using clippy to give you incredible feedback, before you even run your code! kzbin.info/www/bejne/eXvXp6GbpbKJd7c
@teometz7838
@teometz7838 4 ай бұрын
Your comments about Go got me so curious. You say: it's too practical and efficient, no beauty in it but not in terms of syntax, and yet it almost worked for you. I would love it if you could expand on what you mean with all of that?
@loupax
@loupax 4 ай бұрын
I love the description you gave to Go, especially because it’s not a compliment. I know it’s completely counter intuitive but I get a strong feeling of PHP when I work in Go, and I can’t put my finger on why.
@JonathanPlasse
@JonathanPlasse 4 ай бұрын
Awesome video, thank you!
@Nellak2011
@Nellak2011 4 ай бұрын
I tgought this same exact question when searching for a Full Stack JS replacement. I am completely done with stupid preventable bugs with JS, so I am moving to greener pastures. Front End -> ReScript Back End -> Rust or Elixir
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
oh ho ho, you should try leptos.dev
@randomthings1553
@randomthings1553 4 ай бұрын
Depending on what you do with elixir you don’t even need the front end you can use the liveview
@Nellak2011
@Nellak2011 4 ай бұрын
@@randomthings1553 I know Elixir is great, however, Phoenix has limited React support.
@Blaineworld
@Blaineworld 3 ай бұрын
before rust, i didn’t “get” iterators. now that i’ve used them in rust i get it. one little thing that i like is that a for-loop between two numbers is written like: for i in start..end { /* blah */ } in a traditional for-loop, the end expression is, at least conceptually, evaluated with every iteration of the loop, but in this syntax, the range is constructed and _then_ iterated over, which makes me feel much less anxious if the end expression is something expensive, while also making the code actually cleaner. i have similarly grown to appreciate other “functional” concepts as well.
@hwndept
@hwndept 4 ай бұрын
Love your videos! Keep it up!
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
thank you, I will!
@kellybmackenzie
@kellybmackenzie 3 ай бұрын
I adore Haskell so much and this video makes me so happy! I love it!
@esra_erimez
@esra_erimez 4 ай бұрын
4:48 "crushing march of efficiency" "too practical" some of the reason that I absolutely *love* Go.
@laundmo
@laundmo 4 ай бұрын
except it sacrifices so much in the name of "practicality" that it loops back to being a hindrance
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
Why doesn't go.dev have syntax highlighting?
@Randych
@Randych 4 ай бұрын
congratulations and condolences on loving the beaver
@Jonathanlouisa
@Jonathanlouisa 4 ай бұрын
I got into coding last year in April. I started with The Odin project and I loved it. I learned the MERN stack. I jump to ruby and ruby on Rails, which is pretty nice, but I discovered my dislike for implicitly typed languages. I looked at Python but I didn't get any tingles and then I learned Rust and again I discovered something new about myself, I discovered my dislike for weak typed languages. I absolutely adore Rust, but as I'm planning on building a PAAS on a timeline, I still have to go with something like Ruby on Rails or NextJS as a team of two newby devs. Feels bad man...
@avidrucker
@avidrucker 4 ай бұрын
Best of luck to you!
@Jonathanlouisa
@Jonathanlouisa 4 ай бұрын
ty@@avidrucker
@angeldude101
@angeldude101 4 ай бұрын
I'm always unsure whether to consider &mut parameters to be "pure" or not. In one sense, they're obviously being mutated outside of the return value, but in another, the fact that it's explicitly marked means that you can basically just treat it as an explicit return value with more ergonomic syntax and more efficient performance. At least, this is at the function definition site. On the caller's side, it's less clear when a method call would mutate its receiver. The lack of printing in const fn is probably my single biggest concern about them, since it's extremely useful to know the actual value that the function is being passed so that you can better determine what exactly you're supposed to block and how. Without knowing the actual type you should use or what preconditions have seemingly been forgotten, and without being able to just print out the value that shouldn't've made it through, the only remaining options are to either remove the const flag, or use a debugger to be able to effectively insert extra print points ad-hoc. I'm pretty sure several pure functional languages have impure escape hatches specifically for printf debugging (even if laziness means they're not as useful as they'd be in a strict language). There's also the matter of const traits still being unstable, so if you have a pure function that you want to make generic over a particular (presumably pure) trait, you can't actually mark it as const quite yet.
@piotrfila3684
@piotrfila3684 4 ай бұрын
I agree, I don't see how &mut could cause problems here, as only one mutable reference can exist at a time. They are also very useful, I use them to compute FFTs at compile time (unfortunately requires nightly compiler for now). Printing could be considered pure if it's write-only from the point of view of the code - even though it's mutating global state it can't have any side effects if no function is allowed to read the log. Maybe for now we could have a macro that appends a message to a file instead of printing?
@CalifornianViking
@CalifornianViking 4 ай бұрын
Thanks!
@franklinyiu1770
@franklinyiu1770 4 ай бұрын
Does C++ get the same effect as Rust's const with constexpr? If not all the way, does it at least get most of the benefits?
@edgeeffect
@edgeeffect 3 ай бұрын
"Haskel standing on LISP's shoulders, hiding in C's raincoat trying to sneak into production" needs to be made into a cartoon!!!!
@TRK--xk7bb
@TRK--xk7bb 4 ай бұрын
"I was going to have to act, if I wanted to live in a different world" - why does a banger song started playing in my head after hearing that?
@tobiasjennerjahn8659
@tobiasjennerjahn8659 4 ай бұрын
How did you make the venn diagram of sound formal languages and practical programming languages? The circles have some imperfections, which makes it look like they were drawn by hand, but they are much more circular than I could do by hand.
@laundmo
@laundmo 4 ай бұрын
its likely something with a handdrawn theme. i think excalidraw has that?
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
Excalidraw plugin for Obsidian :-)
@Mohammed24441
@Mohammed24441 3 ай бұрын
Aren't formal methods used to specify systems/applications before even getting to the coding part? That's where they come in useful cause they enforce reasoning about the What before starting implementing/code the How. That's the beauty of formal methods where they help formulate the Functional Requirements into a formula that is hard to misunderstand before finally, a programmer translates the requirement into code. You even get to run and test the specifications using model checkers to validate before moving forward to the coding aspect.
@pancakedrivet
@pancakedrivet 4 ай бұрын
Hey Tris, thanks for another great video. It once again comes as I'm reasoning through something similar with some side project rust code. I have a struct of state that I use throughout a program, and I've been iteratively making the things that update it smaller and easier to reason about. I didn't realise that what I was doing was making my methods more functionally pure, but now I have a reason to lean in even further! The only thing that I didn't quite get (maybe I just need to read around it some more) but I see what we can and can't do with `const fn`, but I didn't really understand why we would want to opt in to them, given that we are wilfully limiting ourselves to what const funds are able to do, versus "being good citizens" with limiting side effects in regular functions?
@FabianVilersBe
@FabianVilersBe 4 ай бұрын
Good content, as always. There's small typo on 7:00 : Cofigurable -> Configurable. Also on 9:04 : faddone -> addone.
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
thank you!
@FabianVilersBe
@FabianVilersBe 4 ай бұрын
@@NoBoilerplate made a PR 👍
@DeclanMBrennan
@DeclanMBrennan 4 ай бұрын
That was very well presented and tantalising and moreover is a timely prompt for me to get beyond my very superficial knowledge of Rust. *A correct program but not necessary the right correct program* ? 🙂 I'm not an expert in proofs, but they have always seemed like an impractical panacea to me, except in very simple use-cases. Sure we could formally prove that the code matches a potentially very elaborate specification but how do we know that the specification matches what we really wanted the program to do?
@sungwonchung
@sungwonchung 4 ай бұрын
You're the reason I'm learning rust!
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
WONDERFUL! You're going to have a really great time!
@ojasmishra3487
@ojasmishra3487 4 ай бұрын
I want a formal programming language that disallows stack allocations because moving rsp is a side effect.
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
I mean, that's kinda rust const functions!
@aakarshanraj1176
@aakarshanraj1176 4 ай бұрын
even better, i want a programming language that disallows changing rip register
@JUMPINGxxJEFF
@JUMPINGxxJEFF 4 ай бұрын
I enjoyed that content
@katie-ampersand
@katie-ampersand 4 ай бұрын
love the lil' _(it's rust)_ there
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
hehe, gotcha!
@kira.herself
@kira.herself 4 ай бұрын
gosh I love your videos, none are like yours also rayon is already 9 years old whoa whaa
@Sakurina
@Sakurina 4 ай бұрын
Not a Rust developer, but I have watched all the videos on the channel so I’m not sure if I’m missing something… if the Rust macro runs at compile time, would that imply that the PATH from the macro version would be the PATH environment variable of the machine that built the code, and not the one running the code? They seem to be presented as equivalent in the video, but I don’t get it unless you force the user to build on whatever machine they are deploying to or if I’m missing something else.
@laundmo
@laundmo 4 ай бұрын
const functions can run at compile time too. if you could call the env method in a const context, it would be the same as the macro. but you can't. so you use env!() for the compiling machine and env() for the running one
@ChristopherVogt1
@ChristopherVogt1 4 ай бұрын
Over my 5 years as a Haskell developer in industry I found Haskell no hassle, but a joy to use for just about any programming tasks. Web services, API clients, html and code generation, writing cli tools, servers, web sockets, parsers, interfacing with OpenGL all work quite straight forwardly and quite elegantly. There is a tough initial learning curve doing pure fp and monadic IO, which seems to deter many people. But once through it, it does no longer get in the way and I did not find there to be a compromise necessary. What Haskell really suffers from is that it only has a small community like Python in the early 2000s. There are fewer library and dev tooling choices and some struggle with maintenance. That said eventhough Haskell has much more effective safety than main stream languages, it is still quite limited in what is practical to prove. Maybe that's why what is there right now does IMHO not have the practical problems No Boilerplate seems to suspect.
@iilugs
@iilugs 4 ай бұрын
Food in a plate, tea in a mug, warm slippers and a No Boilerplate video..... can life get any better?
@nerdy_dav
@nerdy_dav 4 ай бұрын
So interesting. I'd imagine the allowing the macro system in const fn's could possibly get a little bit messy when it comes to cross compiling. I'll have to experiment.
@skytech2501
@skytech2501 4 ай бұрын
Finally! Waited so long for Rust treat😂
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
ikr!
@Alazoral
@Alazoral 4 ай бұрын
Provable code is actually very easy in any language. Just look at the code. If you're looking at code, you've proven that it is in fact code and can rest easy on the mathematical certainty that the system that it's running is 100% code.
@nWestie
@nWestie 4 ай бұрын
From what I can tell the main reason rust is compared to C++ is some see it as a successor to it - a powerful, fast running language to write performant code for operating systems, and robots, and the fact that it has kinda similar syntax. It is very clear upon looking deeper that they are very different languages
@RobertVoogdgeert
@RobertVoogdgeert 4 ай бұрын
Can Constant Evaluation be compared with Zig's `comptime`?
@TheSast
@TheSast 4 ай бұрын
What are your favourite clippy (or rustc) lints? especially allow-by-default that you'd like to be warn by default, or perhaps even deny or forbid.
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
they're in this video!
@TheSast
@TheSast 4 ай бұрын
@@NoBoilerplate I couldn't be sure you didn't hide a few more XD Recently I've been on a kind of clippy addiction, went and tried to make as many lints work together as possible just for the fun of it, I ended up discovering quite a few that I like. The most memorable ones for me must be: - infinite_loop = "forbid", I think this should just be considered a compilatiom error, as `!` should not coerce into `()`, it can make it quite hard to predict the behaviour of a function, especially game loop related ones, for the same reasin I wish `Result>` should be mandatory over `dyn Box` in fallible loops. - allow_attributes = "forbid", I see no reason not to use `allow` over `expect` if `lint_reasons` is enabled. - mod_module_files = "deny", this naming scheme can make traversal via file finders quite difficult - non_ascii_idents = "deny", without it it can be hard to understand contributioms on an open project with devs who speak different primary languages.
@Randych
@Randych 4 ай бұрын
#[deny(unwrap_used)] #[deny(expect_used)] 😐
@R2r_1337
@R2r_1337 4 ай бұрын
Ok, you got me interested and now I want to try Rust too. Where would you recommend to start? I was programming mainly in Ruby for 6 years and recently my workplace made me switch to TypeScript.
@laundmo
@laundmo 4 ай бұрын
Tris has a whole video, but let me give you my opinion: read "the book" twice, once fast without trying to understand deeply, then again slowly do rustlings alongside the book, badically pre-made practice problems about a specific feature each read rust code in Rust by Example
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
Oh wonderful! I made exactly this video, I hope it's useful: kzbin.info/www/bejne/aJm7f5dsrZ6mkNU
@Randych
@Randych 4 ай бұрын
hey, if you have so much Ruby and considered FP language, Elixir is your bro
@R2r_1337
@R2r_1337 4 ай бұрын
Thank you all folks 🙇
@R2r_1337
@R2r_1337 4 ай бұрын
@@Randych I heard Elixir is quite cool, but I wanted to pick up something that is NOT similar to Ruby. Like Tris, I have ADHD and I need novelty to keep myself motivated. Also there is lots of hype around Rust and I wanted to see why :)
@Pikrass
@Pikrass 4 ай бұрын
One big reason you probably shouldn't make all possible functions const, most notably if you're writing a library: turning a const function into a non-const one is a breaking change, since your users won't be able to use it in their const functions anymore. So adding the "const" keyword should not be automatic: you have to think about whether you could need non-pure stuff in your implementation in the future (including loops etc).
@snoopdouglas
@snoopdouglas 4 ай бұрын
Tris, top vid as ever. Quick question, do you offer one-off mentoring sessions? (I tried DMing you about this but you very sensibly block these)
@laundmo
@laundmo 4 ай бұрын
Yes, its normally monthly but no issue booking just one
@laundmo
@laundmo 4 ай бұрын
also, feel free to join the discord and ask there
@Little-bird-told-me
@Little-bird-told-me 4 ай бұрын
How would compare Rust to zig ? DO you thing they have separate use cases ? Who would be more suited to learn either ?
@laundmo
@laundmo 4 ай бұрын
imo: zig is for the few projects which need primarily unsafe rust. it has barely any safety guarantees like rust, and is much more a extension of C
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
Laund has the right of it - zig is a great modern C, but Rust can replace C, Java AND Javascript. I'm excited by having this universal language!
@angeloceccato
@angeloceccato 4 ай бұрын
What do you think about Roc lang?
@Cop13r
@Cop13r 4 ай бұрын
abouta start!!!!!
@michaelschnell5633
@michaelschnell5633 4 ай бұрын
Great stuff to know ! And to remember ....
@user-tx4wj7qk4t
@user-tx4wj7qk4t 3 ай бұрын
Haskell is getting dependent types added to the GHC so most of the you want is going to be natively supported. And I know other people have said this but Rust isn't an fp language nor is a general purpose language so most general purpose applications wouldn't use it because it deals with plenty of unnecessary details the same way formal proofs are. And haskell is far more practical than nearly every general purpose language, pretty much by definition
@ridwanulhaque5299
@ridwanulhaque5299 3 ай бұрын
I am new to programming, do not undestand so much details, but there is a language called zig that is claiming to be rust killer. can you make a video about it if it actually is better than rust or not?
@Sad_bumper_sticker.
@Sad_bumper_sticker. 4 ай бұрын
„I want my code to be poetry”. Obsessive compulsive utopian JOY.
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
there's even no syntax highlighting on go.dev/ it's like they hate joy!?
@DerSolinski
@DerSolinski 4 ай бұрын
Hey Tris, I started a discussion on the Rust internals forum to expand enum functionality. Would love your input on that matter. Cheers.
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
I'll have a look, cheers!
@kinomonogatari
@kinomonogatari 4 ай бұрын
Woah these reminded me of Fortran's pure subroutines and functions.
@NoBoilerplate
@NoBoilerplate 4 ай бұрын
easy to do in a simple language, imagine doing that in a language that runs in the browser ;-)
@kinomonogatari
@kinomonogatari 4 ай бұрын
@@NoBoilerplate Haha fair enough. Glad I chose to be a physicist instead.
@hojjat5000
@hojjat5000 4 ай бұрын
I have to use Go at work. I miss Rust so much. Every time I handle error, define an enum, write a switch case,... it hurts my soul.
@Sashin9000
@Sashin9000 4 ай бұрын
I've never heard of const functions, are they new to Rust?
@laundmo
@laundmo 4 ай бұрын
no, just criminally underutilised
@AndrewBrownK
@AndrewBrownK 4 ай бұрын
I've been wondering how someone might make a third-party plugin market for a game. How can you be sure the third party plugins won't be malicious? Assuming we take in the plugin source code and compile it ourselves, but may not actually be able to read and vet it with human eyeballs. Maybe const functions can be an ingredient in the API to avoid unwanted action.
@laundmo
@laundmo 4 ай бұрын
i believe a better option could be running plugins as WASM which you can give a limited API to interact with the game
@kenzo3477
@kenzo3477 4 ай бұрын
Hi Tris, would you mind sharing a cool rust project idea?
@thfsilvab
@thfsilvab 4 ай бұрын
Great video, as always! Hope you see this comment, I'd like to debate a little around determinism. I embrace purity in my functions as much as possible, especially because it allows a lot of compilation optimizations and pure functions are infinetely better to reason about, but after programming in Zig, it seems that determinism is something that's more present in theory. In the code you presented, Rust makes assumptions that you didn't run out of dynamic memory. It seems that the natural state of everything is not effect-free as there are many variables from the physical world that definitely affect the digital world and programs that run on it. One example from the code in this video is your const fn sums x + 1. It makes the assumption that x is not the max value of your type, let's say, u8. Otherwise, you'd have a side-effect where the code is supposed to be effect-free. Do you think we should embrace side effects as the normal, or keep the assumptions where it makes sense and rarely generate side-effects?
@laundmo
@laundmo 4 ай бұрын
adding 1 to a u8::MAX is well defined though, and causes nothing except the u8 to change. wrapping in release and panic in debug mode.
@xxxkubikx
@xxxkubikx 4 ай бұрын
@NoBoilerplate, why are you advertise mentorin, if you it is sold out?
@RenderingUser
@RenderingUser 4 ай бұрын
KZbin didn't send me notifs for this video. What happened
@eamonburns9597
@eamonburns9597 4 ай бұрын
8:19 Is this really only a feature of pure functions? Even if a function has side effects, those side effects wouldn't happen if the function isn't called, right?
@kyay10
@kyay10 4 ай бұрын
I think he meant "if its result is never used"
@eamonburns9597
@eamonburns9597 4 ай бұрын
@@kyay10 ah, that does make more sense
@patrickmwangi7918
@patrickmwangi7918 4 ай бұрын
"Beauty is in the eye of the binary holder" 😄
What Makes Rust Different?
12:38
No Boilerplate
Рет қаралды 195 М.
Rust makes you feel like a GENIUS
10:48
No Boilerplate
Рет қаралды 398 М.
Sigma Girl Education #sigma #viral #comedy
00:16
CRAZY GREAPA
Рет қаралды 75 МЛН
狼来了的故事你们听过吗?#天使 #小丑 #超人不会飞
00:42
超人不会飞
Рет қаралды 57 МЛН
Be kind🤝
00:22
ISSEI / いっせい
Рет қаралды 19 МЛН
The Cult of Done: How To Get *Started*
9:10
No Boilerplate
Рет қаралды 584 М.
Rust: Turtles all the way down
11:21
No Boilerplate
Рет қаралды 160 М.
Rust Data Modelling Without Classes
11:25
No Boilerplate
Рет қаралды 159 М.
Rust for TypeScript devs : Borrow Checker
8:49
ThePrimeagen
Рет қаралды 211 М.
NixOS: Everything Everywhere All At Once
15:10
No Boilerplate
Рет қаралды 256 М.
The Absolute Best Intro to Monads For Software Engineers
15:12
Studying With Alex
Рет қаралды 562 М.
Rust is not a faster horse
11:37
No Boilerplate
Рет қаралды 316 М.
Clean Code Is Killing Your Projects
9:20
Web Dev Simplified
Рет қаралды 141 М.
Hack Your Brain with Polyphasic Sleep
11:02
No Boilerplate
Рет қаралды 1,2 МЛН
Sigma Girl Education #sigma #viral #comedy
00:16
CRAZY GREAPA
Рет қаралды 75 МЛН