Intro to React II
1:43:04
4 жыл бұрын
Intro to React I
1:16:55
4 жыл бұрын
Introduction to Deep Learning 3
28:44
Intro to Deep Learning 2
43:10
6 жыл бұрын
Introduction to Deep Learning 1
39:12
Make games quickly with LÖVE
1:12:58
6 жыл бұрын
Introduction to Programming #2
1:19:00
7 жыл бұрын
Introduction to Programming #1
1:07:36
7 жыл бұрын
How to Win a Hackathon
39:22
7 жыл бұрын
Пікірлер
@holthuizenoemoet591
@holthuizenoemoet591 Ай бұрын
windows XP? still relevant though
@BelegaerTheGreat
@BelegaerTheGreat Ай бұрын
One of the best educational video series on the internet. You should do this for life!
@owenbraun3390
@owenbraun3390 9 ай бұрын
Hey, what happens if you put a 0 into a zero1 function? would it be 1 since 0^0 is 1?
@madbanana22
@madbanana22 10 ай бұрын
now I can say "made with Love"
@toosharpstudios6694
@toosharpstudios6694 10 ай бұрын
can we still follow the demo with the latest version of love2D?
@EdaGhazi
@EdaGhazi 11 ай бұрын
Thank you for this! I wasn't able to completely grasp the concept in my lecture, but this has definitely simplified it! :)
@viczvapo
@viczvapo Жыл бұрын
1:09:30 lol “it’s not hard to implement a title screen” watched the whole video for that lmao. Great video, nonetheless. Gracias.
@user-nc4sj5ht2s
@user-nc4sj5ht2s Жыл бұрын
Man, you saved my life.
@conorvaneden
@conorvaneden Жыл бұрын
thank you, this was a great video. it took me 2 minutes into the video to understand primitive recursion and I've been struggling with this for 2 weeks in my own lecture. KZbin university all the way!
@NeedAllah-h4j
@NeedAllah-h4j Жыл бұрын
How can I installed love 2d
@BelegaerTheGreat
@BelegaerTheGreat Жыл бұрын
Just a note, the zero and succ functions can themselves be defined by Peano.
@BelegaerTheGreat
@BelegaerTheGreat Жыл бұрын
Cannot we just define the domain of div as Z\{0} and have it a total function?
@BuildersSite
@BuildersSite Жыл бұрын
More of this please!
@Nazar-ni1kw
@Nazar-ni1kw Жыл бұрын
coding is actually fun when you know it
@BelegaerTheGreat
@BelegaerTheGreat Жыл бұрын
*PARTIAL RECURSIVE FUNCTIONS COVER EVERY COMPUTABLE FUNCTION OMG!!!* Other models like Lamba Calculus, Turing Machines, or Register Machines can also define the set of Computable Functions, but it is the same set that the Partial Recursive ones define!!!
@BelegaerTheGreat
@BelegaerTheGreat Жыл бұрын
Everything has been very well defined here, except the Rho.
@niilokolehmainen
@niilokolehmainen Жыл бұрын
A great video! Definetly learned a lot!
@jonrx7765
@jonrx7765 Жыл бұрын
how do his VS can work?????
@emiainscough2945
@emiainscough2945 Жыл бұрын
Thank you so much for this! I have a worksheet due in a few hours, and you might have just saved me from failing!
@silviapetrova8562
@silviapetrova8562 2 жыл бұрын
bro thank you
@mohammadradiver2644
@mohammadradiver2644 2 жыл бұрын
Bro are you in funeral?
@calapranzee
@calapranzee 2 жыл бұрын
Try to say “get ready for the next battle”
@prasathvishnu
@prasathvishnu 2 жыл бұрын
Hands on excercise based intro - very useful. Last part could have been little linear and slow
@guycallahan7625
@guycallahan7625 2 жыл бұрын
Why are your views so low?😉
@prasathvishnu
@prasathvishnu 2 жыл бұрын
Good for a very basic introduction.
@SliverOfStraw01
@SliverOfStraw01 2 жыл бұрын
how to do the same thing but with a circel
@aljosanpedro4189
@aljosanpedro4189 2 жыл бұрын
thanks a lot! still useful in 2022 : D finally understand how the coin spawning works after a few tries xD
@HemmantthKStark
@HemmantthKStark 2 жыл бұрын
Make more videos. These are really fun to watch and learn
@abdelkrimnachef352
@abdelkrimnachef352 2 жыл бұрын
you are d best
@abdelkrimnachef352
@abdelkrimnachef352 2 жыл бұрын
thx a lot
@joedew4183
@joedew4183 3 жыл бұрын
in new versions of love the rgb is from a a scale of 0-1. to use 0-255 just use that and put /255 after every value: (255/255, 100/255, 100,255)
@joseville
@joseville 3 жыл бұрын
When you say primitive recursion with parameter 1, what does that mean? How do we apply the primitive recursion functions? I.e. how would we apply pred to 3 to get 2? pred = p^0(zero^0, proj^1_1) pred(3) = ???
@joseville
@joseville 3 жыл бұрын
7:37 how would one actually define add in this system? I know how to do it in lambda calculus using n-fold composition on the successor function, but not sure how to bring that over to this system?
@davidgao3005
@davidgao3005 Жыл бұрын
It is in the next video
@joseville
@joseville 3 жыл бұрын
3:17 I was a bit confused at first why you're defining composition in this way which is so different than how I've seen it defined, but then I realized the composition I'm used to is just the case where n=1 f ᐤ [g1]x = f(g(x)) Can n be 0? I.e. f ᐤ [] = f() would be a the composition of a function that takes no arguments (such as zero^0) with 0 functions).
@joseville
@joseville 3 жыл бұрын
Great video! Re: the partial function div (Integer Division), could we redefine the domain or codomain to make it a total function. I.e. what if we defined 1) the codomain to be Z Union Undefined? or 2) the domain to be restricted to Z^2 - (x,0) Vx in Z. Would that then make it a total function? div: Z^2 -> Z U "Undefined" would this be a total function? div: Z^2 - (x, 0) Vx in Z -> Z would this be a total function?
@anui7466
@anui7466 3 жыл бұрын
Show that 𝑓 (𝑥 )= 𝑥/ 2 is partially recursive.
@turtle8558
@turtle8558 3 жыл бұрын
nice
@neithancrack7649
@neithancrack7649 3 жыл бұрын
Hello I'm from ur video how to make a game from löve for Android pls pls pls I got a problem the part where u r making a Key to move ur character the keyboard thingy I am not making a pc game I am making an Android game ur showing us in ur making a game for love for Android is on PC can u make one for touch screen controlss tutorial from löve from Android pls..?
@neithancrack7649
@neithancrack7649 3 жыл бұрын
How to change the picture of löve for Android?,
@lucianoferrara4781
@lucianoferrara4781 3 жыл бұрын
Thanks for the great video series. Could you share the book title used throughout the course? You explained the topics very simply and my hope was to find the rest of the course on the book you used at your University. Thanks
@The_KrOOb
@The_KrOOb 3 жыл бұрын
1:08:35 We can see you have a local variable ( local img = images.player_down ), i understand you need that local there, but i dont get why you set this local = player.down. Is there any specific reason.
@turtle8558
@turtle8558 3 жыл бұрын
in lua local is like a variable that makes the variable only be used in the function it was created in, it also makes stuff run faster
@Hamzaelbouti
@Hamzaelbouti 3 жыл бұрын
greate tutorial in 2021, but resources not found , please re-upload them if possible
@darkfrei2
@darkfrei2 3 жыл бұрын
Thanks a lot! I've already made some games / simulations with Löve! :)
@neithancrack7649
@neithancrack7649 3 жыл бұрын
Hey I'm confused can u help me out?
@darkfrei2
@darkfrei2 3 жыл бұрын
@@neithancrack7649 I don't know, first you are need to explain your problem :)
@neithancrack7649
@neithancrack7649 3 жыл бұрын
@@darkfrei2 can I publish my games on playstore using a smartphone
@neithancrack7649
@neithancrack7649 3 жыл бұрын
@@darkfrei2 and is the function love.update(dt) is it umm a function to move things but when I used it it doesn't move anything in my small circle
@neithancrack7649
@neithancrack7649 3 жыл бұрын
And how do I make a 2D pixel art game on Löve for Android from a Android phone and thx if u solved 3 of my problems I'm new to making theeezee
@hawariaw8953
@hawariaw8953 3 жыл бұрын
This is so helpful! THANKS
@CodingFumes
@CodingFumes 3 жыл бұрын
juicy stuff.....
@LuBeX12
@LuBeX12 3 жыл бұрын
Thank you so much, this series really helped me!
@xnopyt647
@xnopyt647 3 жыл бұрын
hey look it's me
@LearnArabicwithTahir
@LearnArabicwithTahir 3 жыл бұрын
Nice!!!! Why are your views so low?
@ElviraLovatte1
@ElviraLovatte1 3 жыл бұрын
Maravilhoso! Parabéns!
@apeman.
@apeman. 3 жыл бұрын
Good one for a refresher course