Coding a Prank GUI in C

Поділитися
Вставка
  • Опубліковано 27 січ 2025

КОМЕНТАРІ • 9

  • @delicious_seabass
    @delicious_seabass 17 днів тому +5

    FYI, the UI is blocking because you're sleeping inside the callback. You can't do that. The UI needs the callback to return so that it can finish updating. If you want it to start creating windows at a regular interval, use something like g_timeout_seconds() inside the button callback, or just g_timeout() if you want a delay. The timer callback should call the spawn_window() function. Hope this helps.

  • @zoddi666
    @zoddi666 17 днів тому

    Please keep posting these videos, they are golden!

  • @youssefayman78
    @youssefayman78 14 днів тому

    Love your videos man! I was so relieved when you chose to install GTK 3. Its documentation is much better than that of GTK 4.

  • @MrEniroxOfficial
    @MrEniroxOfficial 17 днів тому +1

    FIRST ! I really love your vids man ! Keep up :D Could you make a small video about how you setup you vim and tmux on windows? Thank you

    • @thecunningcreator6679
      @thecunningcreator6679 17 днів тому

      I think he is using wsl (windows subsystem for linux) which means you get a linux terminal os in Windows

    • @d4niells
      @d4niells 16 днів тому

      Maybe there is a .dotfile repository on his github

  • @fudencio
    @fudencio 14 днів тому

    i think you would benefit from having a simple Makefile for compilation

  • @advancedscience5153
    @advancedscience5153 16 днів тому

    Hey Daniel i love your tutorials, do you think it would be possible to make a tutorial for a raycaster game like doom or wolfenstein 3d in c ? I would love to see your aproach on it. Keep it up man.

  • @zawadhyaa
    @zawadhyaa 17 днів тому

    this was fun