ASMR Programming - Calculator App Coding - No Talking

ASMR Programming - Calculator App Coding - No Talking

AsmrProg

1 год назад

4,517,471 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

GrandNebSmada
GrandNebSmada - 17.10.2022 06:36

Me: Watches a video of someone else programming instead of working on my own project that I keep putting off

Ответить
Candra Wibawa
Candra Wibawa - 16.09.2023 21:28

hello, i want to ask something,
could the scren not displaying 0 when we click the operator? like instead, the operator is beside the number we previously input?
for example when i input 5 + 5, the screen is showing 5 + 5, not 5, then 0 after i click +

Ответить
Amir A
Amir A - 16.09.2023 18:12

ok

Ответить
Jacob Kinsley
Jacob Kinsley - 16.09.2023 17:54

Do a video where you just sneeze and cough really loud half way through and pretend to get mad that you messed up the quiet and relaxing audio and progressively get more mad that your anger has caused you to keep breaking the silence, mumbling curse words to yourself

Ответить
whyucry
whyucry - 16.09.2023 12:34

Thats pyton?

Ответить
Erik
Erik - 16.09.2023 03:51

Vídeo sensacional, estou começando agora e entendi a parte do HTML e CSS, passou pro JS não entendi mais nada, espero chegar nesse nivel o quanto antes!!.

Ответить
Hasiksman
Hasiksman - 14.09.2023 19:38

чел за 34 минуты сделал калькулятор для нинтендо свич

Ответить
alex
alex - 12.09.2023 23:09

I do not work clicking on the numbers do not appear in the line and even with Addiction and other things.
And I copied the script exactly

Ответить
AYmelA20I
AYmelA20I - 12.09.2023 20:16

Now i can learn coding with just asmr

Ответить
Mohammad Charkhchi
Mohammad Charkhchi - 12.09.2023 09:55

حاجی ایرانی ایی؟
اون گ چی بود اون وسط؟ 😂

Ответить
CoyMacoy
CoyMacoy - 12.09.2023 09:41

Nice, over 30 mins, it took me a couple of hours to code this before.

Ответить
Bisi Ako
Bisi Ako - 12.09.2023 04:06

How do I get the arrow button when doing the js?

Ответить
rafi leigh
rafi leigh - 11.09.2023 12:58

I TAKE WHAT I SAID BACK!!! THIS IS AMAZING!!!!!!!! :)

Ответить
Alen
Alen - 11.09.2023 00:30

hahaha very epic

Ответить
rafi leigh
rafi leigh - 11.09.2023 00:17

That is cool, I'm pretty sure i would be able to do this my self, but anyways good job!

Ответить
Mirkamol Mizrobov
Mirkamol Mizrobov - 10.09.2023 16:21

Thanks a lot bro

Ответить
marcos felipe
marcos felipe - 10.09.2023 04:22

Where can I find the project repository?

Ответить
The Open Spaces
The Open Spaces - 09.09.2023 16:14

New found channel

Ответить
User
User - 09.09.2023 12:59

link cursour ?

Ответить
Tomás Afonso
Tomás Afonso - 09.09.2023 12:47

Can you disponibilize the codes please? Im a big fan of yours.

Ответить
Radukai
Radukai - 09.09.2023 06:41

what is your keyboard?

Ответить
kaklik conta pessoal
kaklik conta pessoal - 09.09.2023 06:08

i read asm/nasm in first time

Ответить
Skyzoo 2305
Skyzoo 2305 - 07.09.2023 00:34

the green cycle 💀

Ответить
Vicente Avilés
Vicente Avilés - 06.09.2023 19:12

me at the html and css part: that's easy.
me at the js part: ok, I need to study. see yah.

Ответить
SuperGreenie
SuperGreenie - 05.09.2023 22:01

Do you need to learn all the commands?
I am currently learning html but i dont know how i will remember all of the commands!😢

Ответить
that one stickman
that one stickman - 05.09.2023 10:10

The keyboard sounds like it's in turkey (also your breathing)

Ответить
Andrew
Andrew - 05.09.2023 07:20

Whats your keyboard?

Ответить
Raining pog
Raining pog - 05.09.2023 05:22

can i get the code of all that ?

Ответить
Bhavin Thakur
Bhavin Thakur - 03.09.2023 23:06

how can I use my numpad keys for input?

Ответить
LEGEND BHX
LEGEND BHX - 03.09.2023 19:44

New subscriber here

Ответить
wosa
wosa - 03.09.2023 16:18

”What are you doing hun?”
”I’m watching a video of a random guy coding a calculator”

Ответить
VlmruMazur
VlmruMazur - 02.09.2023 22:42

How to write calculator like this on python

Ответить
SKAOG
SKAOG - 02.09.2023 15:45

Have you uploaded the code to your GitHub? I would love to take a look at it!

Ответить
YesI Hackedyou
YesI Hackedyou - 02.09.2023 07:08

hey I am newbie and i am tring to code but the thing is my html is working fine and the results are being shown is the live preview as well but my css is not showing up when i have written my code

Ответить
younis Mohammad
younis Mohammad - 02.09.2023 04:59

Looks like I signed up for the right place.thanks ❤

Ответить
Waffle
Waffle - 31.08.2023 00:41

why are you not writing tests?

Ответить
Fırat Doğan
Fırat Doğan - 30.08.2023 21:36

thanks you is a realy good programer.

Ответить
Just Silent
Just Silent - 30.08.2023 15:20

What the program you use for mouse move ?

Ответить
user7863
user7863 - 30.08.2023 05:15

How are you replying to every comment?

Ответить
Seayed Nadiruzzaman Bijoy
Seayed Nadiruzzaman Bijoy - 29.08.2023 08:24

bro igot some issu so plz tell me where i do worng
let runningTotal = 0;
let buffer = "0";
let previousOperator;

const input = document.querySelector(".input");
const buttons = document.querySelectorAll(".calc-button");

buttons.forEach(button => {
button.addEventListener("click", () => {
buttonClick(button.innerText);
});
});

function buttonClick(value) {
if (isNaN(value)) {
handleSymbol(value);
} else {
handleNumber(value);
}
input.innerText = buffer; // Update the display
}

function handleSymbol(symbol) {
switch (symbol) {
case "C":
buffer = "0";
runningTotal = 0;
break;
case "=":
if (previousOperator === null) {
return;
}
flushOperation(parseInt(buffer));
previousOperator = null;
buffer = runningTotal.toString(); // Display the result
runningTotal = 0;
break;
case "←":
if (buffer.length === 1) {
buffer = "0";
} else {
buffer = buffer.slice(0, -1); // Corrected buffer manipulation
}
break;
case "+":
case "-":
case "×":
case "÷":
handleMath(symbol);
break;
}
}

function handleMath(symbol) {
if (buffer === "0") {
return;
}

const intBuffer = parseInt(buffer);

if (runningTotal === 0) {
runningTotal = intBuffer;
} else {
flushOperation(intBuffer);
}
previousOperator = symbol;
buffer = "0";
}

function flushOperation(intBuffer) {
switch (previousOperator) {
case "+":
runningTotal += intBuffer;
break;
case "-":
runningTotal -= intBuffer;
break;
case "×":
runningTotal *= intBuffer;
break;
case "÷":
if (intBuffer !== 0) {
// Prevent division by zero
runningTotal /= intBuffer;
} else {
// Handle division by zero error
alert("Cannot divide by zero!");
resetCalculator();
}
break;
}
}

function resetCalculator() {
buffer = "0";
runningTotal = 0;
previousOperator = null;
input.innerText = buffer;
}

Ответить
BSwordsman
BSwordsman - 29.08.2023 06:37

What kind of keyboard/keycaps are you using?

Ответить
Didier Lemus Mercado
Didier Lemus Mercado - 29.08.2023 04:11

hello, i would like to know how mark minus symbol, like you do, i don´t know much about programming and that´s why i don´t know keyboard commands , greetings from Colombia

Ответить
Blob Studio
Blob Studio - 28.08.2023 20:17

who else is instead of listening to the asmr here to learn

Ответить
Chrollo Lucifer
Chrollo Lucifer - 28.08.2023 18:46

You are a junior,not middle,your code is too bad

Ответить
BENOTMANE Mohamed Koussaï
BENOTMANE Mohamed Koussaï - 28.08.2023 10:36

this video is amazing, ur giving me hopes on coding !!!

Ответить
babilMan23
babilMan23 - 28.08.2023 10:33

Dont look down…











Html isnt a programming language

Ответить
MR_ALFREDO
MR_ALFREDO - 28.08.2023 00:25

Great

Ответить
SrMotion
SrMotion - 27.08.2023 19:56

this channel is Unique he is replying to every comments.
You earn a subs for that😮

Ответить
John doremi
John doremi - 27.08.2023 19:55

One of my dreams or goals, is to write code without having to googling how to do something

Ответить