Тёмный
Elixir, Erlang and the BEAM with Adolfo Neto
Elixir, Erlang and the BEAM with Adolfo Neto
Elixir, Erlang and the BEAM with Adolfo Neto
Подписаться
Hi, I am an Associate Professor at UTFPR and in this channel I post videos about Elixir, Erlang, the BEAM and other Computer Science topics.

Find more abot me at linktr.ee/adolfont
Alfred Baudisch #10YearsOfElixir
1:23
14 дней назад
Lean Again
9:18
Месяц назад
Elixir Adoption: What can we do?
7:04
3 месяца назад
Learning Elixir with ELXPRO - Gustavo Oliveira
23:01
9 месяцев назад
Try Lean on your browser
4:47
10 месяцев назад
How to install Livebook on Hugging Face
4:02
11 месяцев назад
p5.js inside Livebook
0:35
Год назад
Комментарии
@TheRedbeardster
@TheRedbeardster Месяц назад
Hurrah! Lean really rocks! :)
@elixiradolfont
@elixiradolfont Месяц назад
Blog post dev.to/adolfont/insights-into-ethics-in-software-engineering-a-conversation-with-brittany-johnson-matthews-on-the-professor-adolfo-neto-podcast-56kk
@ShitStain500
@ShitStain500 3 месяца назад
Idk unc
@elixiradolfont
@elixiradolfont 4 месяца назад
31:03 Ahrefs RU-vid channel ru-vid.com
@elixiradolfont
@elixiradolfont 4 месяца назад
30:50 The 1-Page Marketing Plan: Get New Customers, Make More Money, And Stand Out From The Crowd (Lean Marketing) amzn.to/44nHbMZ
@elixiradolfont
@elixiradolfont 4 месяца назад
30:35 Traction: Get a Grip on Your Business amzn.to/44np3D9
@elixiradolfont
@elixiradolfont 4 месяца назад
30:18 The Mom Test: How to Talk to Customers & Learn If Your Business Is a Good Idea When Everyone Is Lying to You amzn.to/4aY55kI
@lincoli.xavier
@lincoli.xavier 5 месяцев назад
Congrats professo!!
@elixiradolfont
@elixiradolfont 5 месяцев назад
Actually, I recorded this episode before the episode with Laura Castro ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-m1RgrdTF5B8.htmlsi=pooUR5XBIAqIAlos. In both cases, I had already met the people interviewed before interviewing them virtually.
@jamar9205
@jamar9205 6 месяцев назад
*Promo SM* 😞
@deankinyua2365
@deankinyua2365 6 месяцев назад
you saved me big time ......i have struggled with installation but its now configured properly ....thanks mate
@AnaSantos-ix2nc
@AnaSantos-ix2nc 7 месяцев назад
The best software engineer ❤ haha
@elixiradolfont
@elixiradolfont 7 месяцев назад
He is great!
@rickg.8469
@rickg.8469 7 месяцев назад
It was an honor Adolfo, thanks again for having me!
@elixiradolfont
@elixiradolfont 7 месяцев назад
You'rw welcome! Thank you for sharing your time.
@elixiradolfont
@elixiradolfont 7 месяцев назад
On Spotify open.spotify.com/episode/1OhfkwGHfUgT6aJl9cby2w
@carlogilmarp.s.16
@carlogilmarp.s.16 7 месяцев назад
Thank you for your interview 😁
@AdolfoNeto
@AdolfoNeto 2 месяца назад
You're welcome!
@elixiradolfont
@elixiradolfont 9 месяцев назад
0:47 What sparked Gustavo's interest in Computer Science?
@elixiradolfont
@elixiradolfont 10 месяцев назад
1:08:37 We put our effort on generating interesting data.
@elixiradolfont
@elixiradolfont 10 месяцев назад
1:05:06 oneof and frequency
@elixiradolfont
@elixiradolfont 10 месяцев назад
~35:00 Property-Based Testing with PropEr, Erlang, and Elixir Find Bugs Before Your Users Do by Fred Hebert pragprog.com/titles/fhproper/property-based-testing-with-proper-erlang-and-elixir/
@elixiradolfont
@elixiradolfont 10 месяцев назад
35:20 PropEr hexdocs.pm/proper/
@elixiradolfont
@elixiradolfont 10 месяцев назад
33:11 PropCheck documentation hexdocs.pm/propcheck/readme.html
@elixiradolfont
@elixiradolfont 10 месяцев назад
20:30 In Elixir, if you document your code, you get free tests.
@elixiradolfont
@elixiradolfont 10 месяцев назад
12:04 The Erlang Movie ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-BXmOlCy0oBM.html
@elixiradolfont
@elixiradolfont 10 месяцев назад
4:59 The meaning of Let it Crash
@elixiradolfont
@elixiradolfont 10 месяцев назад
7:35 No defensive programming
@David_Box
@David_Box 10 месяцев назад
💜 I LOVE LEAN 💜
@tanchienhao
@tanchienhao 10 месяцев назад
This is awesome!
@baenbo3486
@baenbo3486 10 месяцев назад
LEMN
@vikingthedude
@vikingthedude 10 месяцев назад
Is Lean in the same class of things like Coq, Idris, etc? I'm completely new to these things and the most "formal" language Ive used is haskell. But this paradigm of programming is so fascinating
@elixiradolfont
@elixiradolfont 10 месяцев назад
A better version of factorial live.lean-lang.org/#code=%23eval%203%0A%23check%203%0A%0Adef%20factorial%20(n%3A%20Nat)%20%3A%20Nat%20%3A%3D%0A%20%20match%20n%20with%0A%20%20%7C%20Nat.zero%20%3D%3E%201%0A%20%20%7C%20Nat.succ%20x%20%3D%3E%20n%20*%20factorial%20(x)%0A%0A%0A%23eval%20factorial%2010%0A%0A%23eval%20factorial%20100%0A%0Adef%20a_value%3A%20Int%20%3A%3D%20123%0A%0A%23eval%20factorial%20a_value
@valtersanches3124
@valtersanches3124 11 месяцев назад
Então uma função n-ária em Haskell na verdade retorna outra função que aceita n-1 argumentos? É como se elas guardassem os argumentos um a um e passassem todos de uma vez para última função que realmente realiza a operação e retona o resultado ?
@elixiradolfont
@elixiradolfont 11 месяцев назад
There is no partial application in Haskell because all functions there have arity zero or 1. There is no partial application in Elixir because if you have a function with arity n, you must pass all n arguments. And I am not counting "default" parameters, cause they are just syntactic sugar.
@m.alfanfaizal-fatih3678
@m.alfanfaizal-fatih3678 Год назад
install elixir pake asdf pusing, mudah-mudahan gak sampe wasir, wkwkwkwk
@TheRedbeardster
@TheRedbeardster Год назад
Whoa, Adolfo! Haven't seen you for ages!
@ikerborja1082
@ikerborja1082 Год назад
"uh yes, I can do this, move this here, o yess, i can do that, uh latest erlang version, yes, umm this"
@jwiskikruger8921
@jwiskikruger8921 Год назад
muito massa