ASMR Programming - Flappy Bird - No Talking

Поділитися
Вставка
  • Опубліковано 15 жов 2024

КОМЕНТАРІ • 291

  • @ebony07
    @ebony07 7 місяців тому +333

    Python was the first language I learned and I loved using it all throughout middle school. When I started high school, I joined my school's robotics team which utilizes java. Now 90% of my coding is basically teaching all our new members Java throughout the entire off-season. Watching this makes me realize how standard the semi-colons have become to me;

    • @claireglory
      @claireglory 7 місяців тому +3

      hmmm... im 37 and i had a different exp. when i was in highschool it was html, then css. went i went to college it was all JS, sql, php. never had any exp with python.

    • @ebony07
      @ebony07 7 місяців тому +1

      @@claireglory Those are the languages I learned from courses such as CS50 and the like. I kind of started with Python because it was so similar to basic English and was really easy for me to grasp in upper elementary school, especially since my only experience with any sort of programming language prior to learning Python was with Scratch and Apple's Swift Playground when it was released lol.

    • @claireglory
      @claireglory 7 місяців тому +4

      @@ebony07 i think the reason why my college school doesn't teach python is because we have no teacher that is proficient in it at that time. haha
      i forgot C and C++. it is also part of the curriculum.

    • @ebony07
      @ebony07 7 місяців тому +2

      @@claireglory Ah that makes sense. My high school doesn't offer any programming classes at all and my middle and elementary school didn't either which is why I've gone to the internet to learn!

    • @Danny32580
      @Danny32580 6 місяців тому

      So do I

  • @sharkz1500
    @sharkz1500 8 місяців тому +1911

    Do GTA 6 next

  • @piyushguptaji402
    @piyushguptaji402 5 місяців тому +42

    popping and appending the same item to the list is such a genius way of animation bro... i learned something new today 🔥

  • @ghostking433
    @ghostking433 9 місяців тому +93

    I’m learning to program right now on my own. Currently have no clue what you are doing but hope to come back one day and be able to say I understand!

    • @xxyz348
      @xxyz348 9 місяців тому +14

      Me too. I'm not actually learning but I'm so interested and don't know where to start.

    • @IamRosh2
      @IamRosh2 9 місяців тому

      Same😢​@@xxyz348

    • @Jacob-of9wf
      @Jacob-of9wf 9 місяців тому +10

      This is going to be confusing to almost anyone who isn’t familiar with the library he is using, so don’t worry people with years of experience wouldn’t understand this if they never used pygame

    • @Jacob-of9wf
      @Jacob-of9wf 9 місяців тому

      @@xxyz348look up “python beginner full course” and just click on the one that’s 4 hours long it got me started and it’s extremely effective

    • @Aronne.
      @Aronne. 7 місяців тому +1

      Hey, how are you doing?

  • @Relaxing_account
    @Relaxing_account 10 місяців тому +41

    Türk olduğunu görünce sevindim türk yazılımcıların daha çok böyle içerikler üretmesi çok faydalı

  • @KaizenWebDev
    @KaizenWebDev 10 місяців тому +62

    LOVE this video! Please keep them coming

  • @vespervenom2343
    @vespervenom2343 3 місяці тому +9

    This is a unique way of programming. I usually try and fit everything in one file. Going to try this way

    • @Noober666
      @Noober666 2 місяці тому +8

      It’s better for organizing code

    • @o0Revlimit0o
      @o0Revlimit0o 21 день тому +1

      modularity is not unique but very common :'D

  • @tamalchakraborty5346
    @tamalchakraborty5346 10 місяців тому +59

    I am happy to more people use Stage manager like myself. As I hated it during launch, I seem to love it now, and keep it as my primary form of interacting with apps.
    PS: Great video.

    • @iRemainNameless
      @iRemainNameless 8 місяців тому

      Same I just started using stage manager last month and really enjoying how it's changed my workflow

    • @Dhsidhsusjs
      @Dhsidhsusjs 8 місяців тому +1

      Nah its trash. AltTab all the way

    • @tamalchakraborty5346
      @tamalchakraborty5346 8 місяців тому

      If you meant cmd+tab, you can still use it in stage manager.@@Dhsidhsusjs

  • @HananBenhamda-z9f
    @HananBenhamda-z9f 9 місяців тому +35

    as i python beginner i learned so much from this video keep it up !1!

    • @stealmil
      @stealmil 9 місяців тому +3

      I'm first year computer science python beginer we learn algo of countainers with complex list of dictionnaries and after algo of arrays i want learn with your video can you make video games projet asmr in all languages especialy in C, and C++ too ?

  • @asapnico05
    @asapnico05 7 місяців тому +10

    love these kinds of videos as they help me with learning python and get the idea of things that I can do in the near future. thank you and keep the videos coming! aspire to become a software engineer

  • @francescomalafarina7057
    @francescomalafarina7057 10 місяців тому +29

    I found a little problem that can be fix in 2 seconds. When you press the space bar but you already lost, you can still hear the sound of wing. You can easily solve these problem adding "if not gameover:" before "bird.handle_event(event)" in main. Hope that can be helpful!
    Very good programming video!

    • @mehmetemineker
      @mehmetemineker  10 місяців тому +11

      I will take care of it and fix it soon, but you can PR it on Github if you want.

    • @escape8011
      @escape8011 9 місяців тому

      @@mehmetemineker happy little accidents 😁

  • @stratochief99
    @stratochief99 3 місяці тому +6

    Loved the video. But man, I feel bad for your Enter key. 😂

  • @Bryysanity
    @Bryysanity 9 місяців тому +4

    Can you explain what does --- self.rect = self.image.get_rect(topleft=(configs.SCREEN.Width * index, 0)) --- do? also, what does index do? I see you put it in different places so that the sprite will loop itself. I want to learn.

    • @Bryysanity
      @Bryysanity 9 місяців тому +1

      also Floor(index: 0, *groups:sprites) what does this do?

    • @mehmetemineker
      @mehmetemineker  9 місяців тому +4

      In games like this, if you don't control sprite generation, the game will slow down over time. Therefore, we create as many sprites as we need. We delete the ones that go off screen. To make it easier to determine the position of the background and the floor, I use an index, which means I create another background object right after the first background.

    • @mehmetemineker
      @mehmetemineker  9 місяців тому +7

      Good question, I like it.

    • @Bryysanity
      @Bryysanity 9 місяців тому +1

      Woah. That explains it. Thanks a lot!@@mehmetemineker

    • @MinertecPvp
      @MinertecPvp Місяць тому

      the dumbed down version im understanding tell me if im wrong is basically you loaded in 2 sprites which are backgrounds into the background class but you also added a index to the innit method which then means you load up 2 sprites on different indexes which the index then spawn in the background so basically 2 backgrounds at 2 indexes they move together

  • @CruXk
    @CruXk 8 місяців тому +2

    How can the file PNG files there be written into code and used? I'm just learning the code, it seems a bit complicated.

  • @vannhantran547
    @vannhantran547 10 місяців тому +8

    One of my playing list during hibernation

  • @__Rizzler__
    @__Rizzler__ 11 місяців тому +10

    love that keyboard

  • @thiagosolstafir
    @thiagosolstafir 10 місяців тому +3

    I have a Keychron K8 keyboard and I'm thinking about buying this keyboard, is it worth it?

  • @harmanbaidwan1713
    @harmanbaidwan1713 9 місяців тому +4

    Good! But I suggest investing in a better sounding mechanical keyboard (maybe some creamy switches), it's gonna really elevate the watching experience!

  • @fabianfdez
    @fabianfdez 3 дні тому

    Where did you get the assets for the titles? I want to contribute to your repo so I need to find the same style of the letters and all of that

    • @mehmetemineker
      @mehmetemineker  2 дні тому

      I couldn't find a very detailed assets. You can use a similar font for the text. Thanks in advance for your support.
      Github Repo: github.com/mehmetemineker/flappy-bird
      Font: www.dafont.com/flappybirdy.font

  • @larrythethird4816
    @larrythethird4816 5 місяців тому

    I'm glad it's not just me to start writing any code at line 2 and not the line 1 😌

  • @bugraotken
    @bugraotken 10 місяців тому +2

    Selam Mehmet Emin, oncelikle eline saglik! JetBrains'in DataGrip, WebStorm, PyCharm'ini aktif kullanan biri olarak kucuk bir tavsiyem var. Mac'te double shift yaparak acilan actions menusune File yazarsan aktif bulunulan klasore yeni dosya olusturabilirsin. /klasor/dosya_adi seklinde yazarsan klasor yoksa onu kendisi olusturur. CMD + 1 yaparak da proje dosyalarinda gezebilrsin. Yine cok sayida dosyan varsa double shift yapip buraya dosya adini yazarsan onu getirir onune.
    Bunlari belki biliyorsundur ancak su yuzden soyledim. Kendime bir Keychron V1 aldiktan sonra bu saydigim IDElerde mouse hareketlerini olabildigince aradan cikartmak istiyorum cunku klavye sesine asigim. Sen de bu soylediklerimi uygular ya da denersen videolarinda elini klavyeden cekmeden cok daha akici bir sekilde klavyeden devam edebilir, ASMR'nin dibine vurabilirsin =))
    Eline saglik, tesekkurler!

    • @mehmetemineker
      @mehmetemineker  10 місяців тому +1

      Selam Buğra, tavsiyen için teşekkür ederim. Bahsettiklerini mutlaka değerlendireceğim. Dediğin gibi klavye kullanımını yüksek tutmam gerekiyor. Yeni bir klavye alır almaz uygulamaya başlayacağım. :)

  • @zanagi
    @zanagi 7 місяців тому

    You dont need a library to import game assets in python?

  • @Hazuls
    @Hazuls 4 місяці тому +1

    Very satisfying 😌 👌

  • @abdullahyalcin6675
    @abdullahyalcin6675 8 місяців тому

    hocam merhaba. ben bu uygulamayi docker containerinda calistirmak istiyorum. fakat bi turlu calistiramadim. pygame modulunun hangi versiyonunu kullanmaliyim. 2.2.0 kullandim ve calistiramadim. Yada baska bir oneriniz var mi

    • @mehmetemineker
      @mehmetemineker  8 місяців тому

      Merhaba, daha önce Docker ile GUI uygulaması çalıştırmayı denemedim. Normalde python 3 yüklü olan bir sistemde, gerekli paketleri de yükledikten sonra çalışması gerekir aslında. Şundan kaynaklı olabilir belki, assets klasörü altındaki dosyaları okuma işini Mac'e göre ayarladım. Linux'ta farklılık gösterebilir. Bu kısmı gözden geçirebilirsin. Ancak bu tarz bir hata almış olsan hata mesajını net bir şekilde görürsün diye düşünüyorum.

  • @TacticalReindeer
    @TacticalReindeer 10 місяців тому +2

    I have exactly same keyboard
    Mx mini☺️

    • @tiktalk4573
      @tiktalk4573 10 місяців тому

      this keyboard is op. I fuking love it!!!

    • @nielsvermeiren6179
      @nielsvermeiren6179 3 місяці тому

      ​​@@tiktalk4573Way to small keys, my boy is constantly hitting backspace. I'd prefer a proper mechanical one

  • @CodCplusplus
    @CodCplusplus Місяць тому

    Hi there, do you mind if you can tell me where did you learn all of those coding stuff, please? Because your coding skills are really enviable!

    • @mercurio-jx2wc
      @mercurio-jx2wc 25 днів тому

      It's a long journey... you need to invest many years to be able to be fluent. You need time and dedication, if you really like it you will succeed tho... Good luck with your journey and I wish you all the best 👍

  • @EmmanVsqz
    @EmmanVsqz 10 місяців тому +3

    Me encanta el asmr de programación buen video

  • @bkcinematography97
    @bkcinematography97 Місяць тому

    All codes u have in head? How much time you doing this job?

  • @vespervenom2343
    @vespervenom2343 3 місяці тому

    I am curious tho…without the editing how long did this game take you to complete?

    • @mehmetemineker
      @mehmetemineker  3 місяці тому

      It took me about a week. I tried several times to find something good.

  • @3plbaby_
    @3plbaby_ 6 днів тому

    mad skills u got there

  • @jansveen
    @jansveen 8 місяців тому

    Very good inspiration . Thank you.

  • @pani_9711
    @pani_9711 Місяць тому

    how do you make a pygame window instead of the terminal¿

  • @Cemalpasaa
    @Cemalpasaa 8 місяців тому

    I saw your video when I was looking for a video to practice coding. I wanted to do it too, and while I was watching, I understood what you did and wrote it. But I feel like I stole it or copied it. I'm new to coding, I'm looking at projects to practice python. Is this normal? I understand what you are doing and write accordingly.

    • @mehmetemineker
      @mehmetemineker  8 місяців тому +2

      Congratulations for your efforts. What you're doing is normal. Keep it up. Good luck.

  • @Newone-io6og
    @Newone-io6og Місяць тому

    nice from where did you python??

  • @goker531
    @goker531 10 місяців тому +12

    Beautiful!
    👍

  • @mspnisan1055
    @mspnisan1055 2 місяці тому

    merhaba abi senin seviyene gelmek istiyorum. şuan yazılım hakkında hiçbir şey bilmiyorum günde 6 saat emek versem ne kadar sürede güzel seviyede, proje yapabilecek bir yazılımcı olurum? şimdiden teşekkürler

    • @mehmetemineker
      @mehmetemineker  Місяць тому

      Merhaba, günde 6 saat iyi bir süre :) verimli geçirirsen kısa sürede iyi bir yazılımcı olabilirsin. Ancak yazılım dünyası büyük, çok fazla teknoloji var. Alanını iyi belirlemen ve ona göre hareket etmen lazım. Küçük çaplı işe yarar projeler geliştirerek tecrübeni artırabilirsin. Başlangıçta yazmaktan kaçınma, olabildiğince kopyala yapıştırdan uzak dur. Belli bir seviyeye geldikten sonra kopyala yapıştır yaparsın :) Neyi neden yazdığını bilinçli bir şekilde yapmaya çalış. Tecrübe = Zaman * Pratik^2 :)

  • @sheeo_XUA
    @sheeo_XUA 7 місяців тому

    Very cool video :-)
    When defining methods for a class, it's good practice to use "cls" instead of "self" outside of __init__ :-)

    • @yesiamrussian
      @yesiamrussian 5 місяців тому

      does cls make it easier to understand where the methods are?

  • @ilyaskarim1952
    @ilyaskarim1952 10 місяців тому +1

    What is your pycharm settings?

  • @Billgatespanther
    @Billgatespanther 2 місяці тому

    doing this at 9 o clock is crazy, i just started learning coding! Any tips?

  • @HealthyLife-c9e
    @HealthyLife-c9e 10 місяців тому

    Excellant work sir

  • @dookiepost
    @dookiepost 6 місяців тому +8

    Something about python makes me irrationally upset

  • @jsbr
    @jsbr Рік тому +20

    hi, can I know how long it took you to code that good ?

    • @mehmetemineker
      @mehmetemineker  Рік тому +56

      Hello, if your question is about the current video, the video duration accurately reflects the reality. In general, if you're asking, I'm new to Python. It took me about a week to learn how to code the project featured in the video. I believe that with consistent practice, one can become proficient in software development within a maximum of 6 months. However, I have been coding since 2006.

    • @Letterofluck547
      @Letterofluck547 11 місяців тому +6

      so ggod

    • @tabebenznolpe1002
      @tabebenznolpe1002 11 місяців тому +3

      i hope your game is uploaded

    • @stanodex7675
      @stanodex7675 10 місяців тому +1

      how it is possible in a week from zero?@@mehmetemineker

    • @parentscallmesasha9927
      @parentscallmesasha9927 10 місяців тому

      he has a lot of fundamental knowledge from other programming languages, which allows him to adapt to other languages pretty quick. You can see he mentioned that he codes since 2006@@stanodex7675

  • @foodzam7607
    @foodzam7607 4 місяці тому

    How can i type so quick when letters are not arranged alphabetically

  • @Codesage-r1k
    @Codesage-r1k 9 місяців тому

    I love the keyboard

  • @lagm84
    @lagm84 9 місяців тому

    What kind of keyword and mouse do you use?

    • @mehmetemineker
      @mehmetemineker  8 місяців тому +1

      Keyboard: Logitech MX Keys Mini
      Mouse: Logitech MX Master 3

  • @FN_Carbon
    @FN_Carbon Місяць тому +1

    on which app bro is doing?

  • @archieambrose00
    @archieambrose00 7 місяців тому

    What mouse do you use?

  • @genjitakiya1143
    @genjitakiya1143 3 місяці тому +1

    If i put this game, on App Store , what happening ?

  • @Momen7egazy
    @Momen7egazy 3 дні тому

    Wonderful ❤

  • @Santiago-jk5th
    @Santiago-jk5th 5 місяців тому

    This is awesome!

  • @miiaameee8310
    @miiaameee8310 9 місяців тому

    What kind of knowledge do I need to have about Python to create something like that? (Asking as a person who doesn't know anything about Python)

    • @mehmetemineker
      @mehmetemineker  9 місяців тому +1

      It is enough to know Python at a basic level. The rest depends on your imagination. 🙂

  • @mikewhite955
    @mikewhite955 4 місяці тому

    Could you do snake as well? :)
    Edit: Oh you did it already, nice ❤

  • @kemmybelleuwu
    @kemmybelleuwu 3 місяці тому

    Takes this man an hour to make a game. Takes me 3 hours to make a text game

    • @po1063_oozst
      @po1063_oozst 2 місяці тому

      Hahaha Me too

    • @TheNew1234_y
      @TheNew1234_y Місяць тому

      I spent 10 hours trying to get a texture to work on a 3D cube, Turns out, I binded a non-existent texture instead of the one i have 😂

  • @go_yixiong
    @go_yixiong 5 місяців тому

    What’s the name of the music toward the end?

  • @f01zy
    @f01zy 10 місяців тому +4

    Beautiful ❤

  • @ignaciosanmartin2143
    @ignaciosanmartin2143 9 місяців тому

    Finally someone who works using a professional tool and not visual studio code.

  • @Bartosz10000
    @Bartosz10000 4 місяці тому

    From where I can get this soundtrack ? I think the power must be stored in it ! 😁😁😁

  • @almondjoy123
    @almondjoy123 6 місяців тому

    Very impressive!👏👏

  • @x-6790
    @x-6790 6 місяців тому +1

    How to conver it into apk ?

  • @sirsquirrel0
    @sirsquirrel0 5 місяців тому +1

    Next level that 👊

  • @mehmett946
    @mehmett946 8 місяців тому

    abi gerçekten çok iyi olmuş başarılar..

  • @kirishima638
    @kirishima638 Місяць тому

    What’s that keyboard?

  • @raghavsharma-ij1bw
    @raghavsharma-ij1bw 8 місяців тому

    Should i start coding from java or python

  • @Hiesu19
    @Hiesu19 10 місяців тому

    I have Error "Background' object has no attribute 'image'' " at 8:23

    • @mehmetemineker
      @mehmetemineker  10 місяців тому +1

      Hello, in line 11 of github.com/mehmetemineker/flappy-bird/blob/main/objects/background.py, the definition of "image" has been made. Can you review it again?

  • @amd511
    @amd511 5 місяців тому

    Arka plandaki müziğin ismi nedir?

  • @eraykonuk7680
    @eraykonuk7680 2 місяці тому

    How can i claim the assets folder

  • @KOhamii
    @KOhamii 4 місяці тому +1

    in python too?? clean

  • @EthicalEpisodes94
    @EthicalEpisodes94 10 місяців тому

    Which theme are you using

  • @cryptesthetic
    @cryptesthetic 10 місяців тому

    Harika video. Desteklenmeli. Hep gavurlarda mı olacak, aha bizde de var asmr programming. Mehmet kardeşim sende sadece python mu var, unity de var mı?

    • @mehmetemineker
      @mehmetemineker  10 місяців тому

      Teşekkür ederim :) Şimdilik sadece Python var. Belki sonra Unity üzerinden ilerlemeyi de deneyebilirim.

  • @emirhnmtl
    @emirhnmtl 10 місяців тому

    Eline sağlık güzel video olmuş. Kullandığın font nedir usta?

    • @mehmetemineker
      @mehmetemineker  10 місяців тому

      Teşekkür ederim. Skoru göstermek için font kullanmadım. Resimleri birleştirerek elde ettim.
      github.com/mehmetemineker/flappy-bird/tree/main/assets/sprites

    • @emirhnmtl
      @emirhnmtl 10 місяців тому

      Aslında pycharmda kullandığın fontu sormuştum :) teşekkür ederim cevabın için.

    • @mehmetemineker
      @mehmetemineker  10 місяців тому +1

      JetBrains Mono imiş. :) www.jetbrains.com/lp/mono/

  • @lombook
    @lombook 10 місяців тому +1

    Name of keyboard?

  • @Private-lw1td
    @Private-lw1td 8 місяців тому

    This is awesome. Subscribed! Can you share where you get the sprites? :)

    • @mehmetemineker
      @mehmetemineker  8 місяців тому +1

      Thank you. You can access it here github.com/mehmetemineker/flappy-bird.

    • @Private-lw1td
      @Private-lw1td 8 місяців тому

      @@mehmetemineker awesome. Thanks.

  • @I_am_back_to_listen_the_music
    @I_am_back_to_listen_the_music 10 місяців тому

    I'm new in python.But I can't remember those python rules.I fell it's too hard to memorize.

  • @Nemesis-h7m
    @Nemesis-h7m 20 днів тому

    mark my words i will comeback here and when i comeback i can finally understand what's you're typing🙌🏻.

  • @collectiblesnrandomstuff544
    @collectiblesnrandomstuff544 18 годин тому

    how do you eve know what to type? im a janitor irl and this is all so amazing to me, one can only dream of ever doing this for a living

  • @armin_usa
    @armin_usa 10 місяців тому

    What is the music in the background?

    • @mehmetemineker
      @mehmetemineker  10 місяців тому

      I used 777 Hz music. No special name.

    • @armin_usa
      @armin_usa 10 місяців тому

      @@mehmetemineker can you share the url of the music?

  • @prosto_tak21
    @prosto_tak21 8 місяців тому

    A what does the venv folder mean?

  • @Anonymous_Devs
    @Anonymous_Devs 10 місяців тому

    i wonder why u have every jetbrains ide and not just install vs

    • @mehmetemineker
      @mehmetemineker  10 місяців тому +1

      VS Code is very nice and I use it actively, but I think PyCharm is the expert.

  • @ngocanhit
    @ngocanhit 2 місяці тому

    Thank for share

  • @alisparsadeceisicin2369
    @alisparsadeceisicin2369 3 дні тому

    I thought this game came from space. I graduated from computer engineering. Now...:)...

  • @ziton5341
    @ziton5341 9 місяців тому

    Good coding bro! How to become like you?

    • @mehmetemineker
      @mehmetemineker  9 місяців тому +3

      Thank you. My advice is to stay away from copy and paste in the beginning. You need to write tirelessly. The easiest way to learn a new technology or language is to make a project. Set a project in your head and develop it. Then develop it all over again, but in different ways. Don't waste time on nonsense like how to create a loop. You will learn it anyway when you develop a project.

  • @davidlin8589
    @davidlin8589 10 місяців тому

    Does it export to the mobile version?

    • @mehmetemineker
      @mehmetemineker  10 місяців тому

      I think it can be done. But I haven't tried it.

  • @ardaari5029
    @ardaari5029 10 місяців тому

    gayet güzel bir içerik olmuş

  • @hamzamizo6391
    @hamzamizo6391 10 місяців тому

    I am currently studying Full Stack Web at university. Can you give me some advice that will help me in my academic journey? Do I have to watch videos only in my field?

  • @yusufkorkmaz4588
    @yusufkorkmaz4588 10 місяців тому

    Elinize sağlık gayet güzel bir içerik olmuş.

  • @wiwisjxkalnz
    @wiwisjxkalnz 10 місяців тому +1

    Can you do with a 60-65% clacky mechanical keyboard please

  • @slvsg5765
    @slvsg5765 4 місяці тому

    que teclado es?

  • @12i213i
    @12i213i 8 місяців тому

    Klavye ismi nedir. Keyboard name?

    • @mehmetemineker
      @mehmetemineker  8 місяців тому

      Logitech MX Keys Mini

    • @12i213i
      @12i213i 8 місяців тому

      @@mehmetemineker Sagol

  • @davidcoats9534
    @davidcoats9534 4 місяці тому

    Dudes made 7 videos and he’s got 5,1k subs

  • @Ginprogramming
    @Ginprogramming 7 місяців тому

    I love flappy bird 🐦

  • @ASMRcode1
    @ASMRcode1 5 місяців тому

    Awesome

  • @noor_school1
    @noor_school1 8 місяців тому +4

    1:14:10 🤣🤣🤣🤣

  • @ikuzey_ep8240
    @ikuzey_ep8240 10 місяців тому

    abi ilk yabancı biri yapıyor dedim klasik sonra türk birini görünce ne kadar duygulandım anlatamam çok güzel video olmuş

    • @mehmetemineker
      @mehmetemineker  10 місяців тому

      Beğenmene sevindim, elimizden geleni yapmaya çalışıyoruz. 😊

  • @ducthanh2112
    @ducthanh2112 Рік тому

    Have a nice day , bro!

  • @Zukkoop
    @Zukkoop 10 місяців тому

    Great video! Which code editor do you use?

    • @mehmetemineker
      @mehmetemineker  10 місяців тому +2

      Thanks. I use PyCharm.

    • @uszke9481
      @uszke9481 10 місяців тому +1

      lol dude, you have code editor name literally in the left upper corner x D

    • @Zukkoop
      @Zukkoop 10 місяців тому

      @@mehmetemineker Thanks you! I saw many creators using it but doesn't knew the name

    • @user-le6ts6ci7h
      @user-le6ts6ci7h 10 місяців тому

      I think it is paid ​@@mehmetemineker

  • @ZDProds-c8p
    @ZDProds-c8p 2 місяці тому

    nice keyboard

  • @SD23614
    @SD23614 11 місяців тому

    im still strugglin with the simple print thing

  • @segrus
    @segrus 9 місяців тому

    Where's the "GAME WON" message????

    • @mehmetemineker
      @mehmetemineker  9 місяців тому +2

      When the score value fills the memory. 🙂

  • @rafiye_youtube945
    @rafiye_youtube945 Рік тому +1

    Hello! Are you a game developer? If not, what position do you work in?

    • @mehmetemineker
      @mehmetemineker  Рік тому +3

      Hello. I'm not a Game Developer. I'm a Full Stack Web Developer.

    • @KunVanndyOGGY
      @KunVanndyOGGY 10 місяців тому

      @@mehmetemineker can you convert that's python code to apk files tutorial pls

  • @floatx86
    @floatx86 4 місяці тому

    C/C++ is the GOAT