ASMR Programming - Coding iOS (iPhone) Calculator | No talking

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 ก.ย. 2024

ความคิดเห็น • 23

  • @codetiveee
    @codetiveee  2 หลายเดือนก่อน

    Hi! Today I'm launching a discord server for our community!!!
    You can join here: discord.gg/QvUYyt3x
    What can you expect:
    - Meeting other people interested in tech
    - Getting help from experienced software developers
    - Direct contact to me
    - Influence on my channel and content
    - Many free perks such as forever free pro subscription to codetive.dev when it makes out of beta & more :)
    - Most important: HAVING FUN!

  • @jentzena1394
    @jentzena1394 2 หลายเดือนก่อน +1

    Hi! What keyboard is it? its so nice.

    • @codetiveee
      @codetiveee  หลายเดือนก่อน +1

      Hey! Keychron K2 Pro

  • @ISAK.M
    @ISAK.M 7 หลายเดือนก่อน +4

    I would never be able to have a keyboard with Enter being this tiny hell nah 😭

    • @codetiveee
      @codetiveee  6 หลายเดือนก่อน

      90% of my coding journey I've been using macbook keyboard so I'm used to it haha

  • @NameMeTommy
    @NameMeTommy 10 หลายเดือนก่อน +2

    Hey! Im just starting out with html coding in Visual studio, and i must say your video is motivating me and im pretty sure also other newbies :) I would like to ask you, how do you get this fancy look? I have the default look and your looks more clean. I already downloaded extension called "prettier" but it didnt change anything, so i would like to know what extension or settings youre using. Thanks!

    • @codetiveee
      @codetiveee  10 หลายเดือนก่อน +2

      Hey! Glad you like it. It's not Prettier. Prettier is an extension for formatting your code fixing spaces etc. (you can check it with ctrl or cmd (on mac) + shift + p and then type fromat document with, then u can choose prettier and see the magic!)
      When it comes to colors and look of VSCode those are defined by "themes" you can also download them via extensions. Color theme I'm using on this video is "Community Material Theme Ocean" from extension "Community Material Theme" then after you download this theme you can do again CTRL/CMD + shift + P and type preferences: color theme there you can choose mine which is ocean but feel free to experiment.
      I hope it helped you!

    • @NameMeTommy
      @NameMeTommy 10 หลายเดือนก่อน +1

      @@codetiveee Oh okay, i didnt know that, thank you for the explanation and your help!

    • @codetiveee
      @codetiveee  10 หลายเดือนก่อน +1

      @@NameMeTommy You're welcome!

  • @Ellen_le567
    @Ellen_le567 หลายเดือนก่อน

    What language do you use to code?

  • @007player
    @007player 3 หลายเดือนก่อน +2

    what is the site where you can see the graphics of the code?

    • @ch_sadiq
      @ch_sadiq 3 หลายเดือนก่อน +1

      Like what he was using? It's basically just chrome dev tools.
      Right click on site in chrome browser then click inspect.
      I hope that's what you meant.

    • @codetiveee
      @codetiveee  2 หลายเดือนก่อน

      Yeah, and if you meant preview of the code, it's vscode extension called live server

  • @VUZAMUSIC-ej4jm
    @VUZAMUSIC-ej4jm 7 หลายเดือนก่อน +1

    You are amazing!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

    • @codetiveee
      @codetiveee  6 หลายเดือนก่อน

      You are amazing brother :-)

  • @Erisi_
    @Erisi_ 9 หลายเดือนก่อน +1

    Did you leave the space at the end on purpose or you forgot to fix it beacuse it isn' like the apple calculator

    • @codetiveee
      @codetiveee  8 หลายเดือนก่อน

      Not on purpose however, it was not meant to be 1:1 same as the iphone calculator, but it's easy to adjust to bottom of the page if you need it

    • @Erisi_
      @Erisi_ 8 หลายเดือนก่อน +1

      @@codetiveee Do i add it with padding or how

    • @codetiveee
      @codetiveee  8 หลายเดือนก่อน

      Yeah, you can add padding or adjust container height :)

  • @ЭмильШаймярдянов
    @ЭмильШаймярдянов 9 หลายเดือนก่อน +1

    Hello, I wrote the same code as you, but Chrome gave me the following error: Uncaught TypeError: "btns.forEach" is not a function, what should I do?

    • @codetiveee
      @codetiveee  8 หลายเดือนก่อน

      Hi, I think that's because something is wrong with the btns as you cannot call function on undefined. Try console.log(btns) - I guess you will get undefined. Then check how you used querySelector to get those buttons (const btns = ....), check if it's correct. If you did it on class check if in HTML class is valid or you made typo.

    • @ЭмильШаймярдянов
      @ЭмильШаймярдянов 8 หลายเดือนก่อน +1

      @@codetiveee Where exactly in the code do I need to write this command: console.log(btns)? Can you please tell me in more detail, I will be very grateful

    • @codetiveee
      @codetiveee  8 หลายเดือนก่อน

      Wherever in your JS file. I think you have error because btns is undefined. Check your querySelector function if its correct