Тёмный

The Star Language that will outshine Rust? Gleam 

Code to the Moon
Подписаться 72 тыс.
Просмотров 38 тыс.
50% 1

A look at the Gleam programming language, through the lens of a Rust developer.
Keyboard: Glove80 - www.moergo.com...
Camera: Canon EOS R5 amzn.to/3CCrxzl
Monitor: Dell U4914DW 49in amzn.to/3MJV1jx
SSD for Video Editing: VectoTech Rapid 8TB amzn.to/3hXz9TM
Microphone 1: Rode NT1-A amzn.to/3vWM4gL
Microphone 2: Seinheiser 416 amzn.to/3Fkti60
Microphone Interface: Focusrite Clarett+ 2Pre amzn.to/3J5dy7S
Tripod: JOBY GorillaPod 5K amzn.to/3JaPxMA
Mouse: Razer DeathAdder amzn.to/3J9fYCf
Computer: 2021 Macbook Pro amzn.to/3J7FXtW
Lens 1: Canon RF50mm F 1.2L USM amzn.to/3qeJrX6
Lens 2: Canon RF24mm F1.8 Macro is STM Lens amzn.to/3UUs1bB
Caffeine: High Brew Cold Brew Coffee amzn.to/3hXyx0q
More Caffeine: Monster Energy Juice, Pipeline Punch amzn.to/3Czmfox
Building A Second Brain book: amzn.to/3cIShWf

Наука

Опубликовано:

 

6 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 422   
@Dr-Zed
@Dr-Zed 3 месяца назад
Bro you can't just disrespect the pipe operator |> like this. It's literally the best feature of the language.
@codetothemoon
@codetothemoon 3 месяца назад
wow, I didn't realize until this comment that I hadn't explicitly mentioned it anywhere in the video! I really like it too, thanks for pointing it out. I may mention it in a pinned comment.
@user-uf4lf2bp8t
@user-uf4lf2bp8t 3 месяца назад
​@@codetothemoon |> makes your point about methods kind of redundant though, as you just replace the . with a pipe, and now it reads subject verb
@Locarito-ds6pl
@Locarito-ds6pl 3 месяца назад
Also at 4:48 the pipe operator can help you out: you can write let excited = nums |> list.map(fn(element) {element "!"}) But you still have to specify the function explicitly, there is no particular function attached to the type (like methods are) that's why `list.` is mostly required (importing map directly would not be very readable, how would you know it's map from list module and not something else?)
@havokgames8297
@havokgames8297 2 месяца назад
@@user-uf4lf2bp8t This was my thought exactly ^
@ximon-x
@ximon-x 3 месяца назад
Time to add 10 years of Gleam to my resume.
@codetothemoon
@codetothemoon 3 месяца назад
smart move! 🙃
@TwoThreeFour
@TwoThreeFour 3 месяца назад
I will add 11 years 😅
@agarg932
@agarg932 3 месяца назад
​@@uidx-bobyou surely are an experienced hiring manager
@RazoBeckett.
@RazoBeckett. 3 месяца назад
You are hired .
@richardgomes5420
@richardgomes5420 2 месяца назад
Lots of recruiters ringing you tomorrow!
@oglothenerd
@oglothenerd 3 месяца назад
I like semicolons because it defines where stuff ends.
@alst4817
@alst4817 Месяц назад
You obviously don’t like them that much;
@naomieowdev
@naomieowdev 3 месяца назад
4:50 ish, when using `list.map(thing, func)`, this can also be written as `thing |> list.map(func)` - this is called the pipe operator and it passes the thing before the pipe into the first argument of the method following it. You can also specify what argument it will get passed to with `func |> list.map(thing, _)` but of course it makes less sense here with list.map
@codetothemoon
@codetothemoon 3 месяца назад
ahh yes thanks for pointing this out! though i'd still prefer thing.map(func). again, maybe i'm being pedantic though :)
@chawakornchaichanawirote1196
@chawakornchaichanawirote1196 3 месяца назад
​@@codetothemoon nah we're all just C/Java brained 😂
@Ryuu-kun98
@Ryuu-kun98 3 месяца назад
@@codetothemoon yeah, but i would call Gleams piping as a more general approach of the same mechanism. Rust uses the first parameter of a function to declare on which instances a function can be called on (if i remember correctly, i have little rust experience). This is something that i personally really like in imperative languages. The default piping behaviour in Gleam is really similar but with different syntax and by using a different mechanism: partial function application. Gleams partial application also allows explicitly choosing the function argument to pipe into. So any argument could act as "the instance". example: fn repeat_text(text: String, amount: Int) -> String { ... } default piping behaviour: "foo" |> repeat_text(4) explicit partial application: 4 |> repeat_text("foo", _)
@Ryuu-kun98
@Ryuu-kun98 3 месяца назад
@@codetothemoon back to list.map(): specifying which map() function to use (map() of module list) is a huge improvement in functional languages because otherwise you would have to look up which map() is being used. It's not done by default in Haskell and it really is such a huge pain, especially in tutorials and documentation. calling functions on instances (methods) solve the same problem. But what if an instance has multiple map() functions? How do you specify which map() to use? dot-syntax is really really readable and i also really like rusts approach but i think gleams approach is the most general with (i think) no special cases.
@LukeFrisken
@LukeFrisken 3 месяца назад
I think it's worth comparing Gleam to Async Rust specifically in terms of reliability, performance (throughput and latency) and developer experience. Yes you pay a penalty for garbage collections but the BEAM brings a lot of reliability guarantees in terms of fair task scheduling to the table that you don't get with Rust, only Golang comes close. Function coloring is another big issue worth bringing into the comparison. I've been comparing Gleam, Rust, Go and Java (with virtual threads) for a new project recently. Personally I enjoyed Gleam the most, but the ecosystem isn't mature yet for what I need, so decided to use Go. Async Rust has a bunch of footguns, and it doesn't mix well with lifetimes when doing anything beyond the basics, it's easy to end up with insane compile errors, such as futures which are not Send due to some tiny thing deep down in your call stack and the errors mesages don't tell you where it is.
@Flourish38
@Flourish38 3 месяца назад
Thank you for making this comment so I don’t have to.
@codetothemoon
@codetothemoon 3 месяца назад
agree 💯, i would love to dive in to such a comparison
@ivantodorov8850
@ivantodorov8850 3 месяца назад
Currently having a blast writing Gleam. Very easy to learn language. And yeah - more gleam videos please. Btw great video.
@codetothemoon
@codetothemoon 3 месяца назад
thank you, glad you liked it!
@Khari99
@Khari99 3 месяца назад
Elixir has an FFI package called Rustler that allows you to use Rust directly inside of Elixir. Gleam should have the same capability soon too so that you can use Rust for anything that is performance critical.
@codetothemoon
@codetothemoon 3 месяца назад
ahh nice didn't know about this, thanks for pointing it out!
@Khari99
@Khari99 3 месяца назад
@@codetothemoon yeah I’m currently using elixir and rust as my primary stack. They work amazingly together. Gleam is cool but it’s young so I can’t just move everything over from Elixir yet. Don’t feel like writing bridges to use all my elixir packages with gleam lol
@verified_tinker1818
@verified_tinker1818 3 месяца назад
@@Khari99 I really want to love Elixir, but its dynamic typing makes it impossible. It's so hard to learn a language when you need to look up documentation online for everything. With Rust, I can hit SPACE + K to bring up a function's or type's documentation in my code editor and grasp what it does almost immediately. That's why I'm excited for Gleam. If it gets its own Phoenix, I'll use it for all my web back ends.
@tryoxiss
@tryoxiss Месяц назад
For a package maybe, but the devs have stated that they wont be adding native targets to the @external API, but you can still get it by binding an erlang FFI that runs a native-implemented function (in a language like rust) for almost no cost, just gotta write a lil glue.
@saphirakai
@saphirakai 3 месяца назад
labels being separate than internal names is actually a huge win for readability in my opinion! there's many examples in the stdlib alone that showcase how it can be useful to refer to an argument differently externally vs internally. generally speaking, it allows you to pick an internal name that represents *how* your function is using it to perform its job (predicate, condition, filter, i've also seen `needle` and `haystack` for searching), but externally it might read nicer to say `filter(x, by: y)` (filtering x by y) rather than `filter(x, predicate: y)` (filtering x with predicate y). for a simple function like `filter` that's not too bad, but picture a more complex function that takes more arguments and uses them in a more complex way; it might require more knowledge of how the function works internally to make sense, and be much less smooth to read in a natural way.
@codetothemoon
@codetothemoon 3 месяца назад
got it, thanks for elaborating on this! I am willing to believe that there are use cases where this feature makes a ton of sense.
@AnthonyBullard
@AnthonyBullard 3 месяца назад
Also, take note that this was cribbed from Swift, where it is used EXTENSIVELY.
@MichaelFromOz
@MichaelFromOz 3 месяца назад
@@AnthonyBullard It was pretty jarring when i first started writing swift, these days I'm not sure i can code without it.
@dmdjt
@dmdjt 3 месяца назад
@@MichaelFromOz I've never heard about a feature like that - but thinking about it, the params are on a different abstraction level inside or outside the function
@Varpie
@Varpie 3 месяца назад
Great video! A few things to add: - Types are optional in function signatures, but the compiler still ensures type safety. If you want your code to specify every type explicitly, you can definitely do that, and it is usually encouraged because the compiler will provide very helpful and clear error messages (one more thing it takes from Cargo). This is very similar to Haskell, and just like Haskell it is very rare to see libraries without explicit types, since they are also a good documentation. I think the advantage of having implicit types before shipping the product is that it makes prototyping very easy, since you don't have to update all the references when you want to change a type. It would be nice to have an option to consider public functions without explicit types as warnings, though. - The pipe operator |> wasn't covered, but it allows to chain operations like you would be able to do in Rust or something like Linq in C#. It take the left hand as the first parameter of the right hand, which I thing makes up very well for the fact that the language doesn't have methods. In your example, list.map is using the map function from the list module from the standard library, but you could have used a qualified import so you don't have to specify that map is from the list module, and it would look like nums |> map(fn(element) { element "!" }) - The use keyword, that is quite unique and powerful, wasn't covered either. It is syntactic sugar that allows to unwrap callback functions, and can be used to implement things like defer and other advanced features. Overall, I think Gleam is a very interesting language, and definitely not vaporware: it has reached v1 so we will likely not see breaking changes soon, and with its access to the Erlang and JS ecosystems, it can be used for a lot of things. It is a high level language though, so it won't replace Rust's capabilities as a system language.
@trendtube2903
@trendtube2903 3 месяца назад
Gleam is like a functional version of Go.
@codetothemoon
@codetothemoon 3 месяца назад
hmmm sort of, but i think that might be an oversimplification
@apexashwin
@apexashwin 3 месяца назад
But not as fast as Go
@SnowDaemon
@SnowDaemon 3 месяца назад
@@codetothemoon the author, Louis, describes it as "functional Go". but its deff an over-simplification. he just means that its a small, simple, opinionated, easy to learn functional language
@samuraijosh1595
@samuraijosh1595 2 месяца назад
​@@SnowDaemonGleam was originally supposed to have Haskell-like ML syntax but the author felt that it was not as popular lol.
@metropolis10
@metropolis10 3 месяца назад
5:58 if the types can be infered by the compiler, then they can be infered by a linter and just added to your code automatically. That should be the play here.
@codetothemoon
@codetothemoon 3 месяца назад
yeah, definitely a viable approach for those who prefer explicit types!
@kurokami254
@kurokami254 3 месяца назад
R user here, fun seeing the pipe operator in another language. Makes functional programming so much more intuitive for me to be honestly
@codetothemoon
@codetothemoon 3 месяца назад
I agree, the pipe operator is great. So sad i forgot to explicitly mention it in the video...
@guelakais1438
@guelakais1438 2 месяца назад
You can find the pipe operator in julia too.
@havokgames8297
@havokgames8297 2 месяца назад
@@guelakais1438 And F# and Elixir
@aberges
@aberges 2 месяца назад
that pipe syntax comes from Erlang IIRC, it's not from R nor Julia, and it makes sense that Gleam has it since it basically is an Elixir variation
@Mcsqw
@Mcsqw 3 месяца назад
The thing that really impressed me with Gleam is that the most succinct, "Gleamy" solution seems to also be the most readable - I am still mildly traumatised by my first year undergraduate C programming teacher who used to write every single program on a single line, brackets and all - so although Gleam currently isn't quite suitable for my current use cases, I'm definitely keeping an eye on it.
@SkinnyGeek_1010
@SkinnyGeek_1010 2 месяца назад
Gleam used to have a record type but moved to the single custom type to make the language surface area. I really liked the record types but I can also aprecate the Golang style simplicity overall.
@codetothemoon
@codetothemoon 2 месяца назад
oh interesting I didn't realize this!
@alexgregory5583
@alexgregory5583 3 месяца назад
I'm just guessing here, but isn't immutability usually an abstraction of the language syntax. It is great for us to reason about our code + testability, but under the hood, it will likely optimise these to avoid unnecessary operations when compiled/runtime?
@codetothemoon
@codetothemoon 3 месяца назад
i think in some cases you are correct. for example in the "field update" scenario i covered, its certainly possible that under the hood the compiler recognizes that because the original value isn't used again, it can just be updated. Not sure if Gleam specifically does this, but I don't think there are any technical obstacles precluding it. BUT I think there are more complex scenarios where the compiler simply won't be able to "optimize via mutability" under the hood. I could be wrong about this.
@costinel57
@costinel57 3 месяца назад
I don't think Gleam's aiming to replace Rust, but more "mainstream server languages" like go, python, java, js, etc
@codetothemoon
@codetothemoon 3 месяца назад
I agree. the syntax is so similar to Rust that it's hard to avoid the comparison. Also, the fact that it can be used in lieu of JS for full stack web development also makes the Rust comparison relevant.
@verified_tinker1818
@verified_tinker1818 3 месяца назад
Gleam is basically Rusty Elixir.
@soanvig
@soanvig 3 месяца назад
The thing with immutability is more complex. Just because the compiler doesn't allow mutability doesn't mean the compiled code doesn't mutate anything to improve performance. In fact, FP devs came up with multiple patterns solving immutability problem: most notably persistent data structures.
@josephlyons3393
@josephlyons3393 3 месяца назад
Look into “use” - you can use it to emulate ? In Rust, early returns, defer in Go and Zig, and lots of other cool things.
@Christobanistan
@Christobanistan 3 месяца назад
I hate type inferrence in parameter lists. I want this to be explicit so I know what it's designed to take and do.
@codetothemoon
@codetothemoon 3 месяца назад
understandable - I suspect many folks agree with you!
@Varpie
@Varpie 3 месяца назад
The good thing is that you can explicitly declare your parameter types, there are plenty of examples in this video. And so far, I haven't found a library that isn't well enough documented on the types to use for everything.
@Christobanistan
@Christobanistan 3 месяца назад
@@Varpie Sure, but behavior changes depending on the implementation. For example, if it's gonna use iterators versus arrays, it would be nice to be clear and constrain that type to enforce arrays, if you want best performance. Otherwise, the compiler must infer type constraints from the implementation, and that might be looser than they expect, limiting API changes.
@Varpie
@Varpie 3 месяца назад
​@@Christobanistan Gleam is a statically typed language that doesn't have polymorphism or interfaces, so the only way you can have a function that can be used for either iterators or arrays is with generics. In that case, the decision would be the caller's responsibility, which makes sense to me. Unless I'm missing something, in which case I'd like to have an example, because type inference still requires to have a type defined somewhere and the compiler will give a nice error if it doesn't fit.
@verified_tinker1818
@verified_tinker1818 3 месяца назад
I love, love, love labeled arguments. It makes for code that reads almost like natural language. ``` pub fn replace(inside string, each pattern, with replacement) { go(string, pattern, replacement) } replace(each: ",", with: " ", inside: "A,B,C") ```
@codetothemoon
@codetothemoon 3 месяца назад
whoa, actually this is the first example i've seen that has done it for me in terms of showing the value. I think I kind of get it now!
@jly_dev
@jly_dev 3 месяца назад
One difference between Gleam/Rust is the use of Option - Rust uses it for any nilable value - Gleam wants you to use Option for things like optional function params, and use Result for function returns. Eg: `list.find` will return `Result(a, Nil)`
@sunofabeach9424
@sunofabeach9424 Месяц назад
and what exactly is the difference?.. Options and Results are used in the same way in both Gleam and Rust
@jly_dev
@jly_dev Месяц назад
@@sunofabeach9424 That is incorrect -- given the function `find` for an iterable, an idiomatic Rust function would return `Option`, while an idiomatic Gleam function would return `Result(a, Nil)`. Gleam uses `Option` to denote _optional inputs_, while Rust uses `Option` to denote any nullable value.
@jly_dev
@jly_dev Месяц назад
In the language tour, they state this: tour.gleam.run/standard-library/option-module/
@sunofabeach9424
@sunofabeach9424 Месяц назад
@@jly_dev ah so result is mostly semantic?
@ryzh6544
@ryzh6544 Месяц назад
@@sunofabeach9424 basically Result is an Option but with a generic type instead of the "None". So you can have Result where E is the error type, maybe just a String, maybe your custom Error type
@jakubbartczuk3956
@jakubbartczuk3956 3 месяца назад
Interesting take to compare Gleam to Rust. It helps to know that Gleam runs on BEAM, which is like JVM for Erlang - lots of the weird parts you mentioned are obvious for someone who knows Erlang/Elixir. Also basing a language on BEAM means that it will have way easier adoption, like Clojure or Scala which didn't have to work from scratch. Last but not least BEAM has actor-based concurrency model which is OP in many practical cases.
@verified_tinker1818
@verified_tinker1818 3 месяца назад
Yeah, though AFAIK, Gleam's OTP library is still bare-bones compared to Elixir.
@jakubbartczuk3956
@jakubbartczuk3956 3 месяца назад
@@verified_tinker1818 good point, but what about just calling Elixir from Gleam? I mean it's no silver bullet, but is it useable? Or is it unwieldy (I imagine it might be similar to working with untyped actors in Scala, I did this like 8 yrs ago and it was horrible)
@SoulExpension
@SoulExpension 3 месяца назад
I just dabbled in Gleam, and it's like a mini vacation from rust or js. From top down, you can teach this to kids, without diving deep. Step by step, learn more, very Pascal-ish in nature, except functional piping. I was very happy to scope it out. It deserves good book on deep concepts. I had to dig into the library and examples. It does look made for wasm, so I need to try that.
@rikithe7
@rikithe7 3 месяца назад
It might not be as straight forward but in Rust you can pattern match a string like so: fn process_message(input: &str) -> String { match input.split_whitespace().collect::().as_slice() { ["Assistant:", other @ ..] => other.join(" ").to_string(), _ => "other cases".to_string() } }
@skyeplus
@skyeplus Месяц назад
Thanks. I hate it.
@Heater-v1.0.0
@Heater-v1.0.0 Месяц назад
Hey, you only talked about syntax. Surely the whole point of Gleam is that. it runs on the Erlang Abstract Machine and hence makes distributing ones application over thousands of real computers in a fault tolerant way very much easier than in a language like Rust. A killer feature if you are wanting to crate a huge distributed system.
@eileennoonan771
@eileennoonan771 4 дня назад
Gleam is awesome and you should definitely do a video about Lustre if you haven't already. Also the creator of Lustre just got interviewed on Developer Voices
@codetothemoon
@codetothemoon 2 дня назад
thanks I will try!
@funkdefied1
@funkdefied1 3 месяца назад
5:40 the Rust LSP (rust analyzer) has a shortcut to explicitly show inferred types. Maybe the Gleam LSP will have that too?
@maxoumimaro
@maxoumimaro 3 месяца назад
The name parameter stuff is actually more than something an IDE could do. The goal is that if you need to modify/add/swap arguments of a function, it is simpler to maintain in the rest of the codebase. When you have two parameters, its easy, but when you have 8 parameters to a function, 4 of them have the same type and you need to remove the 5th one, the process is error prone and/or confusing. Sometimes, being explicit about parameters can be a good thing. It also allows people who like different things to live in the same codebase. Think of the myFunction(src, dest) vs myFunction(dest, src), both of these ways are valid and maybe you prefer writing one way and your coworker another, with name arguments, each one can do his thing in a non ambiguous way
@Christian-op1ss
@Christian-op1ss 3 месяца назад
I don't think Gleam competes with Rust, more with Go. But I don't see why not just use Go instead. Perhaps if you like to leverage the nice actor tools of Erlang?
@codetothemoon
@codetothemoon 3 месяца назад
I agree it seems like it caters more to the things you'd use Go for as opposed to Rust. But the syntax borrows (no pun intended) so much from Rust that it's hard to avoid the comparison. I think the main reason why you'd choose it over Go is if you prefer the pure functional approach and the "next level" type inference
@AbuAl7sn1
@AbuAl7sn1 3 месяца назад
error handling is the biggest weakness of Go it doesnt help me to avoid errors
@perc-ai
@perc-ai 3 месяца назад
Rust was not built for concurrency. Gleam will outshine rust and several other languages because of the BEAM
@ToanNguyen-ue8rw
@ToanNguyen-ue8rw 3 месяца назад
@@perc-ai The BEAM is a double edges sword. For server, sure, it's nice. But if you want to write something to ship to the users, it's a big deal having them install a VM just to run your app.
@verified_tinker1818
@verified_tinker1818 3 месяца назад
I'd say it competes with Elixir more than anything else.
@sinan-morcel
@sinan-morcel 3 месяца назад
7:51 this feature is supposed to be how you define Algebraic Data Types. In this case, Thing is a type that has 3 constructors. The power of Algebraic Data Types is when they are recursive, unlocking a very elegant style of functional programming.
@samuraijosh1595
@samuraijosh1595 2 месяца назад
Gleam doesn't support recursive types does it?
@sinan-morcel
@sinan-morcel 2 месяца назад
@@samuraijosh1595 The following compiles in Gleam: import gleam/io pub type Nat { S (t: Nat) O } pub fn main(){ io.debug(count(S(S(S(O))))) } pub fn count(n: Nat) { case n { S (t) -> 1 + count ( t) O -> 0 } }
@kunai9809
@kunai9809 Месяц назад
6:45 and for functions with a lot of params with default values it lets you specify the ones further back in the order without enumerating each param that comes before
@minandychoi8597
@minandychoi8597 3 месяца назад
yes to labelled arguments. `dismiss(view, false)` bad. `dismiss(view, animated = false)` good. wherever you’re viewing that code.
@codetothemoon
@codetothemoon 3 месяца назад
yeah i agree in a code review context where you might not necessarily have the inline help of an ide, i agree this is preferable! makes me wonder if we should strive for code review tools to have the same goodies that ides do
@minandychoi8597
@minandychoi8597 3 месяца назад
@@codetothemoon while better tooling is always a win, ordinary struct literals already require field names. so why shouldn’t functions get to have the *option* of requiring argument names? what even is a struct literal if not a funky looking function from which all instances of it originate anyway?
@FireballFlame
@FireballFlame 3 месяца назад
I've had unpleasant experiences with things like adding an optional boolean parameter to a function, while someone else, on a different branch, added a different optional boolean parameter to the same function and then after merging, some calls to the function accidentally specified a value for the wrong parameter. Labelled arguments could have prevented that.
@CrapE_DM
@CrapE_DM 2 месяца назад
I've been hoping to one day find a language that has internal names for parameters. It's useful for those times where the grammar for the caller makes you use a simple word like "to" as a parameter name, but you want something more descriptive within the function. For example, a range function is called with "from" and "to", but it's much easier to understand the internal code if they're labelled "start' and "end"
@dipteshchoudhuri
@dipteshchoudhuri 2 месяца назад
One reason I like semicolons is because they can be autoformatted. I can write something like console.log(a);console.log(b) and the formatter will automatically move them to newlines. Something like Gleam will call it a syntax error.
@K9Megahertz
@K9Megahertz 3 месяца назад
You know I woke up this morning thinking, "Man... if only we had just one more programming language"
@codetothemoon
@codetothemoon 3 месяца назад
we also don't have nearly enough reactive javascript frameworks!
@philipphanslovsky5101
@philipphanslovsky5101 3 месяца назад
Love the internal names for the parameters. That's a great idea.
@codetothemoon
@codetothemoon 3 месяца назад
interesting, it seems like there are quite a few folks who love this feature. in what particular scenario do you see yourself immediately reaching for this capability?
@philipphanslovsky5101
@philipphanslovsky5101 3 месяца назад
@@codetothemoon I find this useful when I need to do some validations or transformations on the parameter before using it downstream in the function.
@skyeplus
@skyeplus Месяц назад
You could also destructure strings in Erlang / Elixir. Even bit streams.
@codetothemoon
@codetothemoon Месяц назад
ahh thanks for pointing this out! destructuring is so nice
@jakejaylee123
@jakejaylee123 Месяц назад
Thanks so much for this video! I prefer semi-colons myself, even after dealing with languages that didn't require it earlier in my programming career (VBA). There's something so comfortable about explicitly defining where stuff ends.
@codetothemoon
@codetothemoon Месяц назад
Thanks for watching! so many more people that prefer semicolons than I thought there would be!
@cinoss5
@cinoss5 Месяц назад
If you want something like gleam without GC, you can have a look at Roc, though it's at rather early stage and the syntax is more Haskell like.
@codetothemoon
@codetothemoon Месяц назад
Thanks, I have Roc on my "to check out" list!
@ДанилТитаренко-р4ь
@ДанилТитаренко-р4ь 3 месяца назад
They made SCALA once again
@tuna5618
@tuna5618 3 месяца назад
I wish rust had the pipe operator, gleam is such a fun and interesting language despite a handful of things I have mixed feelings about.
@codetothemoon
@codetothemoon 3 месяца назад
re: pipe operator, me too. and i'm on the same page regarding your general sentiment of Gleam!
@john.dough.
@john.dough. Месяц назад
Please cover Lustre, and real-world use-cases for Erlang/Elixir interop!
@codetothemoon
@codetothemoon Месяц назад
thanks, maybe I will!
@jaysistar2711
@jaysistar2711 3 месяца назад
"Can't do that in Rust." Rust has macros, so if it's really desirable, you will be able to do so with a library. It won't need to be a language feature.
@codetothemoon
@codetothemoon 3 месяца назад
true!
@virusblitz
@virusblitz 3 месяца назад
Really nice comparison, thanks for making it! I don't see the need to learn Gleam any time soon, Rust has everything I could ask for :)
@codetothemoon
@codetothemoon 3 месяца назад
thanks, glad you liked it! I won't be leaving the Rust ship anytime soon either, but i'll definitely be keeping my eye on Gleam
@Ryuu-kun98
@Ryuu-kun98 3 месяца назад
I don't think Gleam will ever replace Rust. They are designed for completely different use cases. Gleam is designed around concurrency and simplicity. Rust is designed to be as fast and safe as possible. Gleam is so simple, it does not have anything like traits or interfaces. You would use functions or a type containing functions to pass around.
@PaulSebastianM
@PaulSebastianM Месяц назад
It's basically F# but with better tooling (at the time of writing).
@codetothemoon
@codetothemoon Месяц назад
thanks for pointing this out, I haven't actually tried F#!
@foxtrot000
@foxtrot000 3 месяца назад
really nice video as always mate!
@codetothemoon
@codetothemoon 3 месяца назад
thanks so much 🙏
@dronicx7974
@dronicx7974 3 месяца назад
I think that an ideal webapp would be one built with a Rust backend and a Gleam frontend. The Rust backend allows you to do crazy stuff with it's complex type system and is also more performant than Gleam by design. The Gleam frontend is ideal because since it compiles to JS, you don't need to interface with WASM to interact with the DOM, and that brings a lot of benefits. Another benefit of Gleam on the frontend is simply being able to create frontends in a language that isn't JS 😅
@codetothemoon
@codetothemoon 3 месяца назад
i can definitely see this being a viable stack, for all the reasons you mention! I personally have a preference for language isomorphism across the entire stack, partially because it opens up the door to write frontend and backend logic in the same project, which I value highly. Would personally be happy with all Gleam or all Rust. But that's just me.
@verified_tinker1818
@verified_tinker1818 3 месяца назад
What about Elm? It's way, way more mature than Gleam and was made for the client side.
@user-eg6nq7qt8c
@user-eg6nq7qt8c 3 месяца назад
I use Elixir a lot, more for the BEAM than the language. BEAM is incredible. What's interesting is that you can interop rust code with the BEAM and if you're using gleam that might make things quite interesting from a dev point of view since the syntax is similar (or more confusing) not sure.
@codetothemoon
@codetothemoon 3 месяца назад
what do you value most in the beam ecosystem that you feel like you can't get elsewhere?
@user-eg6nq7qt8c
@user-eg6nq7qt8c 3 месяца назад
@@codetothemoon High availability was the fundamental design goal of the vm. You get it almost for free by just using its language. There's a lot to unpack there but that's what I value most. This can be achieved elsewhere but it's way more complex and difficult to get right. I'd love to see a video where you explore some of that through gleam or elixir.
@AbuAl7sn1
@AbuAl7sn1 3 месяца назад
gleam's syntax is actually Rust without semicolon
@tsooooooo
@tsooooooo 28 дней назад
5:02 your objection here is solved by the pipe operator |>. Also it's worth pointing out that ocaml handles generic types the same way. And that Gleam runs on the BEAM. So garbage collection isn't as obstructive. I would have though that Rust was for low level stuff, competing with C/C++, while Gleam was for stuff like highly concurrent services, competing with high level languages.
@porky1118
@porky1118 2 месяца назад
5:28 I've seen another language with static inferred typing for function signatures: Scopes
@codetothemoon
@codetothemoon 2 месяца назад
hadn't heard of Scopes - thanks for putting it on my radar!
@porky1118
@porky1118 2 месяца назад
​@@codetothemoon I guess I've been the only serious user of scopes for one or two years besides the creator. It's the most powerful low level programming language with the best features of various programming languages (Rust, C, C++, Lua, Python, Lisp, ...). If it was a little more like Rust, I would probably use this language. It doesn't have a proper borrow checker yet (the algorithm works the same, but it doesn't support struct fields to have a lifetime). And there are no orphan rules. It's possible to define the same method for the same type in different libraries.
@mhmdkzr
@mhmdkzr 3 месяца назад
Gleam should add first-class support for integrating Rust modules into the codebase. With that, it'll cover a larger range of use cases. GC works differently in BEAM, each process has its own garbage collector, so there's no global GC pause. Since Gleam runs on BEAM, you also get all the goodness that comes with it, such as its amazing concurrency and fault tolerance model, message passing between isolated processes, and being distributed right out of the box. You can open a shell to your running program. It was basically designed to never stop, even for updates, it supports hot code reloading.
@sunofabeach9424
@sunofabeach9424 Месяц назад
can it even be possible without stable Rust ABI?
@oglothenerd
@oglothenerd 3 месяца назад
I don't know if I like Gleam... Doesn't matter anyway, because I am making my own compiled language already. Remember kids, lexers are a pain in the ass to make well.
@jaysistar2711
@jaysistar2711 3 месяца назад
Semicolons (like C or Rust) or periods (like Erlang or Prolog) are a good thing. Determining when a statement ends must happen, and letting a compiler or interpreter do it insted of having explicit control of it feels wrong, and I have seen it lead to terrible surprises.
@Ryuu-kun98
@Ryuu-kun98 3 месяца назад
i think gleam does it by detecting when an expression ends which is much easier in gleam because it mostly just has functions.
@jaysistar2711
@jaysistar2711 3 месяца назад
@@Ryuu-kun98 It's not easier. We'll eventually see a problem from it, even if we don't know that the problem was written in Gleam.
@opposite342
@opposite342 3 месяца назад
I posted smth dumb about there being inferred types in nim and go but realized you meant inferred types in function params. Yeah I've not seen many langs with such features. Personally idm it, but when I did Haskell for my fp class I put the types for the function anyway to aid readability.
@codetothemoon
@codetothemoon 3 месяца назад
yeah i think explicit types are definitely warranted in some cases
@alphabitserial
@alphabitserial 2 месяца назад
I'd love to see a video on Lustre
@codetothemoon
@codetothemoon 2 месяца назад
Thanks for letting me know, I'd love to make one at some point!
@soleboxy
@soleboxy Месяц назад
it has GC and no loops, i feel clickbaited.
@codetothemoon
@codetothemoon Месяц назад
definitely can relate to the GC aversion. I personally like the absence of loops though :)
@zeocamo
@zeocamo 3 месяца назад
i hope we start see the ++ and -- operator to get droped, it is a thing we added for char[] as we don't have strings in C back in the day, but now they are used by people who know understand what ++i and i++ do, and it add bugs to code
@Maartz
@Maartz 3 месяца назад
Very nice video as usual. The pattern-matching stuff that is dannnng good comes from Prolog. As Gleam sits on top of the BEAM that is written in Erlang, Erlang is heavily inspired by Prolog. It's a bit sad to not talk a bit about Erlang in the intro. WhatsApp was written in Erlang, serving 3 billion people with only 50 engineers. That's the power of the BEAM. The fact that you do not "attach" methods to structs is that basically modules are buckets for functions. Usually aggregated by a context, like a math module for all the functions related to math. We apply a function on data, so data is passed as an argument to functions. Gleam contrary to Haskell is not a pure FP language. It's full of side effects, that's because you have to embrace it. That's what Erlang did. However, we still try to have a "same input, same output" behavior. Anyway, that's nice to have a video from you speaking a bit about something running on the BEAM. Thanks!
@asdqwe4427
@asdqwe4427 3 месяца назад
The lack of types in function signatures is fine in private functions but inexcusable in public functions. IMHO
@defnlife1683
@defnlife1683 3 месяца назад
beam ecosystem kinda dope. getting scalability for chat apps, with low overheads, seems like a good benefit. like whatsapp running millions of chats on 1 server tower. that video is kinda wild. rust has awesome momentum thanks to the proselytizing cult. never underestimate proselytizing cults.
@codetothemoon
@codetothemoon 3 месяца назад
I didn't realize WhatsApp is using the beam ecosystem! thanks for pointing this out. Why do you think Rust has garnered the culture you mention while other ecosystems (like beam) have not?
@defnlife1683
@defnlife1683 3 месяца назад
@@codetothemoon Yeah Whatsapp was built on erlang, kinda wild. I think FB switched it to C++, probably to lower overheads, but maybe Rust was a better option for safety. I think that it's many things: 1. rust's promise is very cool. Memory safety + low level control. You might be a bit slower than C, but you can always go Unsafe Rust and get 99% there. 2. You get more modern tooling, specially when tooling around the low level langs isn't stellar. This lowers the bar to entry for a lot of people. There's probably a package for that. No make files. Etc. 4. You get memory safety, when memory safety is a mess. 5. The compiler tasing you again and again is also an incredible help. Verbose compilers help move you in the right direction. 6. The similarity in syntax to ALGOL style languages like C++ and Javascript. I tend to prefer simpler syntax, like Go, or C (though I wouldn't write C for something that can get hacked), but I can't deny that the momentum in Rust is just mindblowing. People are just productive in these languages. If there was a Go syntax style lang with a Rust style compiler I'd be very happy.
@egorsozonov7425
@egorsozonov7425 2 месяца назад
Yeah I used to dislike semicolons just like you. But then I’ve had my fair share of confusing errors where the compiler couldn’t infer where a line ends, and now I prefer mandatory semicolons. They give more freedom and precision at a tiny price.
@codetothemoon
@codetothemoon 2 месяца назад
I can understand this perspective!
@dorian2718
@dorian2718 3 месяца назад
can you take a look at Roc? it looks very innovative but it is quite young
@codetothemoon
@codetothemoon 3 месяца назад
it does look really interesting, i've put it on my potential video idea list!
@harrynair1811
@harrynair1811 3 месяца назад
I believe the gleam compiler is written in Rust .. and gleam transpiles to erlang. A language which powers most of the telecom domains and a language that boasted 99.9999 uptime
@codetothemoon
@codetothemoon 3 месяца назад
Yes the BEAM ecosystem seems to have a really fantastic reputation! I'm currently trying to get a better handle on why that is - whether beam is still a good choice today for the same reasons it was in the past, or whether other ecosystems have since "filled in the gaps" with respect to the things beam is notable for
@tobyconner5827
@tobyconner5827 3 месяца назад
​@@codetothemoon as far as im aware nothing like it has been created ever since. as an example, large parts of discords backend are written in erlang, which is comparatively pretty old compared to discord
@cloudsquall88
@cloudsquall88 3 месяца назад
I don't understand the comparison to Rust. Gleam seems to play on a different field, especially being a GC language. And there are sooo many proven languages there, that I don't know why we should do it again, when ergonomic non-gc memory safety is on the horizon (I'm saying that because Rust leaves some things to be desired, and might or might not solve them before another language solves them).
@codetothemoon
@codetothemoon 3 месяца назад
I agree it does play on a different field. I think such a comparison is warranted for four reasons 1. The fact that Gleam compiles to JS means it may emerge as another viable alternative for full stack web development, as Rust has due to WASM 2. The Gleam syntax is heavily inspired by Rust 3. Those who are interested in Rust are often interested in bleeding edge languages, so assuming Rust as a point of reference when taking a first look at Gleam may be helpful 4. I make lots of Rust content, so subscribers are more likely to be familiar with Rust
@cloudsquall88
@cloudsquall88 3 месяца назад
@@codetothemoon Thank you for such a swift reply, and I apologize for my harsh tone. I'd also suggest to keep your eyes on June language, cocreated by Sophia Turner, who has had extensive participation in both the TypeScript and the Rust team (and is also the creator of Nushell)
@WizardofWestmarch
@WizardofWestmarch 3 месяца назад
One thing I wanna bring up based on your video. You mentioned languages not necessarily having certain things matter (like named arguments) because of IDEs. The problem is a lot of other tooling like code review tools mostly don't have the same support for displaying that extra information so making it available directly in the code has value. As for type annotations being required for function signatures, for me it depends on how obvious it is, along with how cumbersome. For example if a function should work on all numeric types, having to do complex type annotation to indicate it manually versus letting the compiler do it for me... unless it is causing other issues I dunno if I wanna deal with it lol.
@agentotten
@agentotten 3 месяца назад
I think comparing Gleam to Rust, is like comparing apples to oranges.
@codetothemoon
@codetothemoon 3 месяца назад
I agree. It makes sense to compare them in some ways, and not in other ways 😎
@AnthonyBullard
@AnthonyBullard 3 месяца назад
I think not touching on the BEAM and the Erlang/OTP runtime and ecosystem that come with it really misses the point of the language.
@codetothemoon
@codetothemoon 3 месяца назад
maybe. I thought the syntax was interesting irrespective of any performance / concurrency / reliability narratives. I also don't yet have a good handle on BEAM yet, so that's also a factor. I think I understand the historical significance of it, but I am still trying to fully understand what it brings to the table today that you can't get in other language ecosystems.
@AnthonyBullard
@AnthonyBullard 3 месяца назад
@@codetothemoon it’s a true actor system, which means communication happens via message passing which is more generally useful than channels. It is distributed concurrency as well. And also live patching of a running system. It also provides a built in in-memory key value store, patterns for robust concurrency battle tested in high-availability telecom switches, and more.
@br3nto
@br3nto 3 месяца назад
6:00 it’s nice not having to be explicit about types…. It’s like programming to an interface, where we don’t care much about the implementation, just that we get the transformation or effect we want. We get the same effect with implicit typing, except we don’t care much about other aspects of the code too. It’s actually easier to refactor code with implicit types because we are already less constrained, so there is less to get in our way.
@Nojipiz
@Nojipiz 2 месяца назад
Oh what a great features!. They exists in Scala since... 2012 (?) :D
@780Chris
@780Chris 2 месяца назад
And in OCaml for like 15 years before that :D
@samuraijosh1595
@samuraijosh1595 2 месяца назад
​@@780Chrisin Haskell for 30
@codetothemoon
@codetothemoon 2 месяца назад
😎 Gleam is really interesting because it takes pretty much the opposite approach of Scala, despite some similarities. Scala is very maximalist, packing in as many bells and whistles as possible into the language. That creates a situation where there are many ways to achieve the same thing. In contrast, Gleam is about as minimalist as it gets. The case could be made that minimalism is a "missing feature" of Scala, depending on who you ask. That said, I have personally always had an affinity for Scala.
@mushroomcrepes4780
@mushroomcrepes4780 Месяц назад
gleams logo made me think it was another js framework
@codetothemoon
@codetothemoon Месяц назад
Understandable given that there are about 10 new ones per day!
@mettwasser
@mettwasser 3 месяца назад
Actually the aliasing in function params is pretty interesting. I often had a situation on a function where 'a, b' would be enough, but I wanted to express it a bit more detailed. The only downside is that (in some cases) it bloats the function (IMO). So I think this is a huge win
@codetothemoon
@codetothemoon 3 месяца назад
yeah since releasing the video I've seen a number of positive opinions of this feature, and I'm starting to come around
@JurekOK
@JurekOK 3 месяца назад
Ok, so yet another comparison of a motorcycle versus a sun cream. One is more red but the other one comes with a selection of scents. Both can be applied to one's balls. I can't decide which one i like more....
@codetothemoon
@codetothemoon 3 месяца назад
perfect analogy! 🏍️
@tacticalassaultanteater9678
@tacticalassaultanteater9678 3 месяца назад
It's probably unfit for CLI because Beam takes like half a second to launch. CLI might be the only use case where the most important factor is first-pass performance, and Beam languages are even worse at this than Java.
@codetothemoon
@codetothemoon 3 месяца назад
maybe you're right!
@JohnnySacc
@JohnnySacc 2 месяца назад
the inferred param types and inferred generics sounds like a pain to review. In rust a majority of the time you can tell what a function does just by looking at its signature.
@codetothemoon
@codetothemoon 2 месяца назад
yeah, a case could definitely be made for this. In teams I can definitely see guidelines being established to require developers to be explicit about types, if only for the purpose of making code reviews easier
@jorge.barcelos
@jorge.barcelos День назад
Remember me Elixir
@codetothemoon
@codetothemoon День назад
I’ve used many languages but I suspect none of them remember me 😞
@hailelagi5176
@hailelagi5176 2 месяца назад
the last "opinion" at the end doesn't make sense and is a misunderstanding of ownership semantics, they are not incompatible with a garbage collector. It's not either or. In rust you're forced to "naively" reference count, or resort to more esoteric strategies to manage heap allocations with non-obvious lifetimes (which is the point of a garbage collector), if you could just stack allocate everything and track DAG lifetimes with ownership life would be simpler, but this doesn't apply to all algorithms or data structures. Hence that linkedlist in gleam is "simple" to write, but in rust requires you to read a book.
@hailelagi5176
@hailelagi5176 2 месяца назад
man I need to stop getting these kinds of recommendations, bad youtube algorithm bad.
@DeciPaliz
@DeciPaliz 2 месяца назад
i'm unsure why is gleam always compared to rust. gleam's a functional garbage collected language at its core, what common does it have with rust? wouldn't it better to compare it with elixir/ocaml/clojure/other functional languages?
@codetothemoon
@codetothemoon 2 месяца назад
Maybe. I suspect they are compared because many of the more "superficial" aspects of the syntax are similar, such as many of the keywords. But as you say, they are really quite different under the hood.
@user-qr4jf4tv2x
@user-qr4jf4tv2x Месяц назад
if you lived in a world with mostly semi colon your gonna prefer semi colons.. to me it cause more problems as much as loops. thats why i like sql over mongodb style of querying.
@nikoladd
@nikoladd 4 дня назад
Gleam is a subset of Erlang that is mappable to JS. This is a selling point... for some. On garbage collection being a problem, I think you're mixing the terms. Remember that variables are immutable? The BEAM garbage collection is closer to Rust's borrow checker then garbage collectors in the likes of Java, C# and Go. There is no performance hit and hiccups like in those. In fact under heavy load the BEAM engine is better then Rust at concurrency. Erlang is the OG concurrency language after all.
@codetothemoon
@codetothemoon 2 дня назад
ahh thanks for pointing this out, I'm not too familiar with BEAM and its GC! Under the hood, what makes Erlang faster than Rust in high concurrency situations?
@nikoladd
@nikoladd 2 дня назад
@@codetothemoon the native concurrency model makes it faster. Rust needs to await, gather, lock memory and so on. Erlang doesn't. Those become exponentially more expensive with increased parallelization. It's not that you can't make the same in rust, but you don't get it from the get go. Also BEAM can scale seamlessly to multiple machines, which again you'd have to do yourself in rust. BEAM is still considered by many to be more advanced clustering solution then K8s.
@irlshrek
@irlshrek 3 месяца назад
also theres a really big difference between STATIC typing and STRONG typing. And its the main selling point of Rust for me!
@Moronicsmurf
@Moronicsmurf 2 месяца назад
Gleam; the language for the lazy coder coming from Javascript that cannot be bothered learning Rust. There - the video in one line.
@codetothemoon
@codetothemoon 2 месяца назад
Hah, that's one way to look at it!
@Geomaverick124
@Geomaverick124 3 месяца назад
lol I am one of those guys that perfers semicolons
@codetothemoon
@codetothemoon 3 месяца назад
nice! I was surprised at how many of you there are!
@SaHaRaSquad
@SaHaRaSquad 2 месяца назад
Yes, I actually prefer semicolons. And my first language didn't have any, so it's not a bias from that. It can avoid some issues and imho is better than escaping newlines like in Python. Regarding mutability & efficiency, there are languages which do not support mutability in the code but will make values mutable during compilation for optimizations, the best of both worlds basically. Not sure if Gleam can do that, though.
@guelakais1438
@guelakais1438 2 месяца назад
Unfortunately, I don't like gleam's type system at all. I often use self-implemented structs and enums in my programmes and am always very disappointed when I don't find them in a programming language.
@porky1118
@porky1118 2 месяца назад
7:00 I would go one step further. I think there should only be structs in a language. And some are callable. So you can create an argument list and store it somewhere before actually calling it.
@terrormapu
@terrormapu 3 месяца назад
Not a chance..it is not in the same category as rust..this is for web dev..
@codetothemoon
@codetothemoon 3 месяца назад
i agree that it's not in the same category as Rust, but I'd dispute that it is limited to web dev
@blaisepascal3905
@blaisepascal3905 3 месяца назад
Amazing video, nice comparison! Personally I have no strong opinions on types for function signature. I have used R and Python that are dynamicly typed, Nim that is strongly typed ans Julia that is "optionaly" typed. But the generic type idea looks a lot like Julia generic type. Except in Julia, type declaration a used for multiple dispatch (nice feature for code reusability). Anyway gleam looks cool and is worth tesing. I will still use Nim for now. Thank you for the video!
@ciscoserrano
@ciscoserrano 2 месяца назад
Eventually everyone will discover Lisp and realize they got it right in the 50s
@anotherelvis
@anotherelvis 2 месяца назад
I love rust, but gleam looks like a better choice for web development.
@codetothemoon
@codetothemoon 2 месяца назад
maybe once the ecosystem matures a bit!
@akashkarnatak6581
@akashkarnatak6581 3 месяца назад
No loops aren't the biggest turnoff
@aberges
@aberges 2 месяца назад
Everyone is talking about Gleam but no one gives my boy Unison any love...
@codetothemoon
@codetothemoon 2 месяца назад
hadn't heard of it, looks kind of like Haskell!
@phoneywheeze
@phoneywheeze 3 месяца назад
how does it deal with stack management if there are no loops and you can only do recursion?
@tcookiem
@tcookiem 3 месяца назад
it has tail call optimisation
@samuraijosh1595
@samuraijosh1595 2 месяца назад
The compiler optimizes recursive iteration to normal while/for-like looping under the hood wherever possible. Just like Haskell.
@haze6277
@haze6277 2 месяца назад
WHAT ARE YOU TALKING ABOUT????? "C++ will outshine Erlang". FUCK NO, IT"S TWO DIFFERENT CATEGORIES!
@codetothemoon
@codetothemoon 2 месяца назад
Yes, as I mention in the video they are actually very different. But they can still be compared.
@schrenk-d
@schrenk-d 3 месяца назад
Like to also mention that Gleam is written in Rust. I like it. I think it will potentially eat into erlang and elixer. I'm waiting for the day people stop writing f*%king Java and JS. Both those languages need to die.
@codetothemoon
@codetothemoon 3 месяца назад
hah! I find this position relatable. I was a Java fanboy for so long....
@bad-at-art-games
@bad-at-art-games Месяц назад
isnt a VM Language more of a competitor to Java/C# . Why are we comparing it to a Memory Controlling, compiled Language? By the By i put Semicolons in TS/JS. I like semicolons :D
@kunai9809
@kunai9809 Месяц назад
either it's the camera or your eyes are really close together
@gunstorm05
@gunstorm05 3 месяца назад
I prefer semicolons because they are more explicit - Its easier to tell developer intention when things are explicit. In languages where they are optional, I've found it can be confusing to determine where a multiline statement (think method chaining) is supposed to end sometimes. My autistic brain finds that having an explicit character act as an expression-ending operator avoids any ambiguity as to when a statement ends, reducing cognitive load when reading code.
@codetothemoon
@codetothemoon 3 месяца назад
got it, i can understand this perspective!
@eduardoaranda4379
@eduardoaranda4379 3 месяца назад
Haha imagine showing that little girls logo to a client. This is the language I’m using 😂
@codetothemoon
@codetothemoon 3 месяца назад
right before you inform them that their webapp needs a bit more css glitter 🪄
@SnowDaemon
@SnowDaemon 3 месяца назад
imagine showing a logo to a client... were programmers bro, not marketing agents. focus on what important here 🤣
@eduardoaranda4379
@eduardoaranda4379 3 месяца назад
@@SnowDaemon haha that’s disconnection from reality. We are all marketers baby 😄
@smarterlife7331
@smarterlife7331 2 месяца назад
Gleam is written in Rust :D
@FastRomanianGypsies
@FastRomanianGypsies 3 месяца назад
My opinion there are too many new languages coming out all at once. Pick one and stick with it, otherwise you'll never be able to create the app you want, having to restart every time there's a new language that comes out. We don't need perfect, we need good enough, and good enough we have.
@codetothemoon
@codetothemoon 3 месяца назад
This perspective is very valid! If your primary goal is to build things, you're far better off building things with what exists today that has already been battle tested and has a large community for support. I think some of us just find programming languages interesting. Some might not be planning to adopt these things immediately but might want to get a sense of what's coming in the medium-distant future
@Singlton
@Singlton 3 месяца назад
For me, rust +python+mojo+dart(flutter) are the best combinations!
@pmrebel2733
@pmrebel2733 3 месяца назад
I will just stick with PHP now then learn Go later
@FastRomanianGypsies
@FastRomanianGypsies 3 месяца назад
@@codetothemoon You're right I watched the video because I am interested in knowing what comes next, it's just as someone who's not a 10x engineer I find it hard to keep up with the reality of the tech industry. Thank you for doing that so that I don't have to.
Далее
New Gleam Just Dropped
25:33
Просмотров 83 тыс.
zig will change programming forever
9:34
Просмотров 311 тыс.
Epic Reflex Game vs MrBeast Crew 🙈😱
00:32
Просмотров 3,8 млн
Find The Real MrBeast, Win $10,000
00:37
Просмотров 37 млн
Gleam is not Rust
7:46
Просмотров 22 тыс.
The Dream Programming Language? Lobster
20:55
Просмотров 149 тыс.
Dioxus vs Leptos  | Rust GUI Wars #2
21:18
Просмотров 4,1 тыс.
Interview with Senior Rust Developer in 2023
9:46
Просмотров 712 тыс.
Modern All Rust Stack - Dioxus, Axum, Warp, SurrealDB
24:02
Why do developers hate Rust?
8:20
Просмотров 127 тыс.
Gleam for Impatient Devs
8:46
Просмотров 64 тыс.
Gleam v1 HAS BEEN RELEASED
27:07
Просмотров 165 тыс.
Rust: When C Code Isn't Enough
8:26
Просмотров 168 тыс.
Mac USB
0:59
Просмотров 29 млн