Create a Stopwatch using HTML, CSS, and JavaScript

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

КОМЕНТАРІ • 166

  • @johnatteo822
    @johnatteo822 2 роки тому

    This video is so underrated. I know its basic and not much styling, however the logic and code and instructions this guy gives to complete this stopwatch is superb. Great job Pal. Every JavaScript Beginner should watch this video!

  • @potatoman4548
    @potatoman4548 4 роки тому +5

    TechnicalCafe, your tutorial was an absolute dream to follow, and you explain things really well!
    Thank you.

    • @TechnicalCafe
      @TechnicalCafe  4 роки тому

      I'm glad to hear that you found this video to be helpful (and easy to follow)! I appreciate your viewership, as well as the time you took to provide feedback!

  • @justincoutinho7548
    @justincoutinho7548 5 років тому +4

    Great Video! I noticed at the end after hitting reset you have to click the start button twice to start the stopwatch again. To fix that, all you have to add is 'status = "stopped";' inside the reset function (If anyone was wondering).

    • @TechnicalCafe
      @TechnicalCafe  5 років тому +2

      Great catch! Thanks for sharing the solution to this - it's appreciated! And thanks for watching the video and for taking the time to comment! Please let me know if you have any questions, comments, or suggestions!

  • @RajivKumar-en9gf
    @RajivKumar-en9gf 5 років тому +12

    this was the concept I was searching for. It really helped me. Thanks a lot!!

    • @TechnicalCafe
      @TechnicalCafe  5 років тому +2

      I’m glad to hear that you found this video helpful! Thanks for watching! Please let me know if you have any ideas for future videos!

    • @RajivKumar-en9gf
      @RajivKumar-en9gf 5 років тому

      @@TechnicalCafe yeah sure!

  • @rohangaonkar8912
    @rohangaonkar8912 4 роки тому +5

    even though setInterval is defined to fire for every 1 second it will never fire so there will always be additional delay. So your stopwatch would show incorrect time. and delay would add up as time increases. Alternative is to use javascript Date object.

  • @adampace1492
    @adampace1492 6 років тому

    Before this, i had a simple timer that had all three opitons, start stop and reset,from the start. There was a bug in that, where if you hit start, it would speed up and none of the other buttons would work. I really appriciate this, and thank you!

    • @TechnicalCafe
      @TechnicalCafe  6 років тому

      I'm glad that you found this video helpful! Thanks for watching and for taking the time to comment! Please let me know if there's anything that you might want to see in future videos!

  • @rfrancett
    @rfrancett 3 роки тому +4

    I really like your simple, straight-forward approach: all very easy to understand. Just what I needed, at my level of beginnerness. Thanks muchly!!

    • @TechnicalCafe
      @TechnicalCafe  3 роки тому

      Glad it was helpful! Thanks for watching and for taking the time to comment!

  • @pleasecookathome
    @pleasecookathome 4 роки тому +1

    Thank you so much.... Your coding is easily understandable and easily get into the concept for the beginner level. Thank you very much...
    Keeping posting like this... Using simple coding ...

    • @TechnicalCafe
      @TechnicalCafe  4 роки тому

      You're very welcome! I'm glad to hear that you found it helpful! Please don't hesitate to reach out should you ever have any questions, comments, or suggestions!

  • @danielchanpark5748
    @danielchanpark5748 3 роки тому

    I really like when you comment before you code!

  • @shashwatshandilya7853
    @shashwatshandilya7853 3 роки тому

    hi... in the part of 21:36 why will it be minutes, seconds, hours and not displayminutes, displayseconds, displayhours??

  • @actualinfinity8440
    @actualinfinity8440 5 років тому +2

    When I try to press the stop button (19:00) it just raises the interval by ten. Any help? Thanks!

  • @miunoraven4606
    @miunoraven4606 5 років тому +1

    I just want to tell you that you really saved my life

    • @TechnicalCafe
      @TechnicalCafe  5 років тому

      I’m glad to hear that you found this tutorial useful! Please don’t hesitate to reach out if you have any questions, comments, or suggestions!

    • @ayushi2200
      @ayushi2200 3 роки тому

      @@TechnicalCafe i had a query!!

  • @jr_script
    @jr_script 4 роки тому +2

    Thanks a lot! It really helped me out! Question: is there a way to save the timestamps when stopping or resetting?

    • @zizou5638
      @zizou5638 3 роки тому +1

      //add this in css file (anywhere):
      .add{
      width: 100%;
      font-size: 32px;
      text-align: center;
      margin: 0px auto;
      }
      //add this in html file (below buttons tags):
      //add this in js file (in the startstop function in the else statement):
      let div = document.getElementById("emptyDiv");
      let inDiv = document.createElement("div");
      inDiv.classList.add("add");
      inDiv.innerHTML = displayHours + ":" + displayMinutes + ":" + displaySeconds;
      div.appendChild(inDiv);
      //you can change the names of variables or classes or ids if you want

    • @TechnicalCafe
      @TechnicalCafe  3 роки тому

      Thanks for this! Definitely appreciated!

    • @TechnicalCafe
      @TechnicalCafe  3 роки тому

      Glad to hear! I’d definitely recommend checking out @Zizou 5’s comment below; hopefully it’ll help you achieve the effect you’re looking for. In any case, thank you for watching!

  • @thereddalek7282
    @thereddalek7282 4 роки тому +2

    thank you so much, this helped me a lot it is something i have wanted to be able to do for ages

    • @TechnicalCafe
      @TechnicalCafe  4 роки тому

      I'm glad that you found this helpful! Thanks for watching and for taking the time to comment! I appreciate it! Please don't hesitate to reach out if you have any questions, comments, or suggestions!

  • @jonny11995
    @jonny11995 3 роки тому

    Using intervals and workers wouldn't it be possible to get the animation frame so that if the browser hangs the timer will continue? Having issues with my timers stopping and starting due to my brower's hanging for a second or two

  • @samsar7
    @samsar7 5 років тому +2

    your explanation was very easy to understand sir thank you so much , my name is samsar from sri lanka thank you again.

    • @TechnicalCafe
      @TechnicalCafe  5 років тому

      Hi, Samsar! Thank you for watching and for taking the time to comment. I am glad that you found the video easy to understand. Please feel free to let me know if you have any questions, comments, or suggestions!

  • @bluefoodie3262
    @bluefoodie3262 3 роки тому +1

    Great video, but can you please tell me how can you add hundredths of seconds (the numbers next to the seconds), thanks!

  • @topsportscoverage9257
    @topsportscoverage9257 3 роки тому +1

    Thank you so much! This video helped me a ton, you just gained a subscriber 🔥🔥🔥

    • @TechnicalCafe
      @TechnicalCafe  3 роки тому

      Thanks for watching and for the sub! I appreciate it!

  • @kirtimahadane4070
    @kirtimahadane4070 6 років тому +1

    Thanks for this video . In my project, I want the startStop() to run on pressing s key on keyboard. How to achieve this functionality?

  • @NORsjkl33
    @NORsjkl33 4 роки тому +1

    greate video! to build on this, can you set a time cap for the stopwatch? (so it stops when the time cap is reached)

    • @TechnicalCafe
      @TechnicalCafe  4 роки тому

      Sure! You should be able to do this with a conditional statement that stops the watch once you reach a certain time. You could add in a text box and use that to set the time cap.

  • @matepavic1118
    @matepavic1118 4 роки тому +1

    Great tutorial and well explained. Very helpful, thanks a lot!

  • @seba3151
    @seba3151 4 роки тому

    What program are you using? I'm using Atom html tool, however at the part where the stopwatch begins counting automatically when you refresh, and buttons don't work, when I refresh my page, nothing happens.

  • @HowISolvedIt
    @HowISolvedIt 3 роки тому

    You made it easy to understand. Thank you

  • @prajeshparekh7175
    @prajeshparekh7175 2 роки тому

    Hey TechnicalCafe, how to store whole timer with button clicking event so we can prevent the time counted on while refrehing the page. please make video on that with same stopwatch timer.

  • @marcomilza7801
    @marcomilza7801 4 роки тому

    My stopwatch looks like if it’s working, but then when I press start for the 2nd time (after clicking reset) it restarts to count from where it stoped!
    I mean, after the reset it shows “00:00:00” but when I press start the second time it goes from 00:00:11 and keeps counting from there... It’s driving me crazy! What could it be??
    thankyou in advanced for your help..and by the way, you explained very well in the tutorial, ;-)

    • @zizou5638
      @zizou5638 3 роки тому

      share youer js code pls

  • @tadashikonno9002
    @tadashikonno9002 5 років тому +3

    Awesome video! I am currently making a study tool app, and this helped me quite a bit in making a stopwatch. Could you possibly make a video on how to store the stopwatch data (passed time) into mysql data using AJAX? Just food for thought. Thank you for the video again!

    • @marcusjaxson4920
      @marcusjaxson4920 3 роки тому

      i guess im asking randomly but does anyone know of a tool to get back into an Instagram account?
      I stupidly lost the login password. I appreciate any assistance you can offer me

    • @Migler1
      @Migler1 3 роки тому +1

      @@marcusjaxson4920 lol nice try. Use your email reset.

  • @hydrazer
    @hydrazer 4 роки тому

    My seconds value is not going up no matter what I try when I refresh the page! what should I do? The buttons do work I think as the start changes to stop when I press it. Pretty sure it has to do with the seconds++; line but I'm not sure.

  • @muhammadusama4106
    @muhammadusama4106 6 років тому +2

    Which software you used for this tutorial?

    • @TechnicalCafe
      @TechnicalCafe  6 років тому +1

      The text editor I used was Visual Studio Code and the screen recording program was Screencast-O-Matic (with one of their paid plans to remove the watermark they include on the free version). Please don’t hesitate to ask if you have any other questions, comments, or suggestions! Thanks for watching!

    • @seatertle8708
      @seatertle8708 4 роки тому

      @@TechnicalCafe it will not get bigger for me.

    • @seatertle8708
      @seatertle8708 4 роки тому

      nvm i found the problem

  • @dalkos6
    @dalkos6 3 роки тому +2

    Really good tutorial, helped me a ton, thak you !!!

    • @TechnicalCafe
      @TechnicalCafe  3 роки тому +1

      I'm glad to hear that you found this tutorial helpful! Thanks for watching!

  • @kushagranalwaya
    @kushagranalwaya 3 роки тому

    How to keep this running in background when I switch the webpages?

  • @SohamPhadke
    @SohamPhadke 4 роки тому +1

    I was trying to add milliseconds but couldn't get the right result? ANy suggestions?

    • @TechnicalCafe
      @TechnicalCafe  4 роки тому

      You should be able to add milliseconds by adding another variable for them and then adding another "if statement" to the logic within the "stopWatch()" function. You'd also have to concatenate the variable used for milliseconds to the statement that displays the time to the user.

    • @slimshady5864
      @slimshady5864 4 роки тому

      problem with this stopwatch is that it is not gonna be accurate. i had made a centisecond stopwatch and it was little slower(2-3 seconds slower per minute) than real time. because setInterval() take a few milisecs to start call function again and this time adds up in real time per interval. hence the best way to create these things are using Date().getTime()

  • @akshaydalvi7950
    @akshaydalvi7950 5 років тому +7

    you explained very well ...("=")....Thank you so much

    • @TechnicalCafe
      @TechnicalCafe  5 років тому

      I'm glad that you found this video helpful! Thank you for watching it and for taking the time to leave a comment! I greatly appreciate it! Please let me know if there's anything else you might want to see on the channel in the future!

  • @mitchy_1983
    @mitchy_1983 3 роки тому

    Is there anyway of linking this to a calculator? I'd like my users to be able to calculate £ or $ earned by the second! I'm a complete novice so I only have my site on my local machine

  • @arielguatta6327
    @arielguatta6327 3 роки тому

    Wow, what a useful video! I tried using this in a form so that the submitted value of a field is the time elapsed, but I couldn't get the function to work in the form, and have no idea why, as the same function works in your example. Been going over it for hours driving me nuts..

  • @netinhonaruto10
    @netinhonaruto10 3 роки тому

    how do you skip to the end of line when you digit ( ) ?

  • @atiyenaderi1208
    @atiyenaderi1208 3 роки тому

    Thank you for explaining very well. I found it useful .

  • @EulersFulfillers
    @EulersFulfillers 3 роки тому +1

    What if we code it so that the page refreshes when the Reset button is clicked?

    • @TechnicalCafe
      @TechnicalCafe  3 роки тому

      If you were to set it so that page refreshes upon clicking the "Reset" button, the stopwatch would reset and you'd then have to click on the "Start" button to start it again.

  • @anayooleru
    @anayooleru 6 років тому +1

    Please why did you add "toString()", in the display values?

    • @TechnicalCafe
      @TechnicalCafe  6 років тому +2

      The reason for the "toString()" function was because I wanted to add leading zeros to the value that was being output to the webpage if it was less than two digits in length so that it would look something like this: "00:00:00".
      When I tried doing this without first converting the numerical values to a string, the value being displayed would look something like this: "0:0:0" or "1:2:30", for example.
      I hope this helps to explain why the "toString()" function was used. Please let me know if you have any other questions, comments, or suggestions! Thanks for watching and for taking the time to leave a comment - I appreciate it!

    • @kapkaal
      @kapkaal 5 років тому

      displayhours = (hours

  • @koloebue
    @koloebue 5 років тому

    I know it is a not a good question. But if I create a new button called "stop" how would I am gonna stop setInterval? Thanks

  • @yashvardhankhaitan4500
    @yashvardhankhaitan4500 4 роки тому

    I am trying to make a chrome extension out of this but I don't know how to make the stopwatch run in the background when the user goes on a certain website and when he or she clicks on the extension it shows the clock running since the time she visited the website and the clock started running. Can somebody help me?

  • @wisliylopes
    @wisliylopes 4 роки тому +1

    Thank you for this. It helped me a lot.

  • @udaythakur7464
    @udaythakur7464 2 роки тому

    clear and crisp tutorial.....

  • @zackfogle3690
    @zackfogle3690 6 років тому

    What code changes are made to do the opposite? Start from, say 2 minutes and work down to zero?

    • @TechnicalCafe
      @TechnicalCafe  6 років тому

      Off the top of my head, you’d probably have to specify a starting time and then use a loop to count down until the time value is >= 0. Because there is a specified end point, there should be logic to do something once that point has been reached. Perhaps I should look into making a tutorial on how this can be done?

  • @fahemzoldyck1729
    @fahemzoldyck1729 4 роки тому +1

    When we click on 'start' after clicking on 'reset' , nothing happens ! (I had to click 'start' another time ,for it to work )
    Do you know why is that ?

    • @thereddalek7282
      @thereddalek7282 4 роки тому +1

      to fix that, add these lines of code to the reset() function; document.getElementById("startStop").innerHTML = "Start";
      status = "stopped";

    • @TechnicalCafe
      @TechnicalCafe  4 роки тому

      Sorry about that! I didn't account for that issue in my code, but hopefully the solution that Thereddaled 72 suggested works to fix that issue!

    • @TechnicalCafe
      @TechnicalCafe  4 роки тому

      Thanks for suggesting this fix for the bug I left in my code! I appreciate your help!

  • @arungujjar7328
    @arungujjar7328 4 роки тому

    Thanks a lot sir 🙌....for this excellent explanation 👍

  • @adityajha4648
    @adityajha4648 4 роки тому

    Hey, I want my stopwatch to start as soon, I refresh the page. How to do that? Also, how can I stop it after a certain function is performed. I want it to display that time as well with using JS only. How can I do that? If you could please help...

    • @zizou5638
      @zizou5638 3 роки тому

      to start stopwatch on page reload just invoke the startStop function and add this in startstop button tag : onclick="location.reload();"

    • @adityajha4648
      @adityajha4648 3 роки тому

      @@zizou5638 Actually I created a stopwatch and it refreshes on reloading the page but the problem is that after every keystroke it refreshes itself & I am not sure why. Also, when I try to catch and display the taken time to the player it shows the wrong refreshed time.
      Any tips?

    • @zizou5638
      @zizou5638 3 роки тому

      @@adityajha4648 can you show the code pls

    • @adityajha4648
      @adityajha4648 3 роки тому

      @@zizou5638 Aight here you go mate
      github.com/Adityajha0808/Labyrinth
      The timer code is in settings.js file :)

    • @zizou5638
      @zizou5638 3 роки тому +2

      @@adityajha4648 To display the time you should uncomment tag that includes the display-timer class in your HTML file and correct the time variable in the switch statement because you've written timer instead of time (timer.style.display = "none";)

  • @oeliasaugusto
    @oeliasaugusto 4 роки тому +1

    Really helped me a lot! Thank you!

    • @TechnicalCafe
      @TechnicalCafe  4 роки тому +1

      Hi, Elias! I'm glad to hear that you found this helpful! Please don't hesitate to reach out with any questions, comments, or suggestions and I'd be happy to try and help out or respond where I can!

    • @oeliasaugusto
      @oeliasaugusto 4 роки тому

      ​@@TechnicalCafe Yeah! I will watch other videos and if i have any questions i'll ask. Thanks again!

  • @peshotod
    @peshotod 5 років тому +1

    work good but have a flaw.when click reset it does not set numbers to zero,just stop them and then when I click stop/start it start again from zero- something need to be added to the code so reset button to set numbers to zero on click.

    • @TechnicalCafe
      @TechnicalCafe  4 роки тому

      Sorry about that! I left a bug in the code when I made this video!

  • @aqibkhan647
    @aqibkhan647 4 роки тому

    when i leave my browser window the stopwatch going to stop automatically how to resolve it in javascript (this is not belongs to your code its just my own coding problem that i am asking you if you have any solution of it)

  • @carlosferegrino290
    @carlosferegrino290 3 роки тому

    Nice tutorial, here you have your like. And could you explain how do we add this chronometer (code) to our wordpress site... Thanks a lot

  • @shaikhsufyan95
    @shaikhsufyan95 3 роки тому +2

    How to make more & more project give your ideas
    and make video on this

  • @NoudvD63
    @NoudvD63 4 роки тому +1

    Nice tutorial but:
    You have to add status = "stopped" to the reset() function , otherwise you will have to click the start button twice after clicking the reset button without first stopping the watch.

    • @TechnicalCafe
      @TechnicalCafe  4 роки тому

      Good catch! Thanks for watching and for taking the time to leave a comment with the solution! I appreciate it!

  • @lalithakunchala8160
    @lalithakunchala8160 4 роки тому +1

    super.. very easy approach . thanks alot...

    • @TechnicalCafe
      @TechnicalCafe  4 роки тому

      I'm glad you found this video helpful! Thank you for watching and for taking the time to comment! Please don't hesitate to reach out should you ever have any questions, comments, or suggestions!

  • @shaikhsufyan95
    @shaikhsufyan95 3 роки тому +2

    this is very helpfull for us
    Thankyou

    • @TechnicalCafe
      @TechnicalCafe  3 роки тому

      Thank YOU for watching! I’m glad you found this video helpful!

  • @lakshjadhwani6933
    @lakshjadhwani6933 5 років тому +1

    You actually forgot to change the status in JS in the reset function that's y it took u 2 clicks to start the stopwatch after reset. @ 22:30
    Edit: Great Video Though! Thanks Man

    • @TechnicalCafe
      @TechnicalCafe  5 років тому +1

      Good catch - thanks! I appreciate you taking the time to let me know! Thanks for watching!

    • @lakshjadhwani6933
      @lakshjadhwani6933 5 років тому

      Thanks to u man for sharing!👍

  • @maganhassan2627
    @maganhassan2627 5 років тому

    Cool tutorial!!
    I am trying to do this javascript exercise where I need to use a timer to keep track of e.g. no.of seconds spent on a webpage & each time the page reloads the timer stops & I need to display no.of seconds on the console then reset the timer (keeping the old value of the timer in some variable) & that timer will stop when I reload the page & then adds the value of the new timer variable i.e after the timer reset to the old value of the timer stored in that other variable to give me the total no.of seconds spent & display that in the console e.g. to make things clear 12 seconds spent on the page so on the browser console it will say 12 seconds, then I will reload the page the timer will stop & then resets & I spent 10 seconds after the page reloads so when I will reload the page the console will say 15 seconds instead because the old timer value & the new timer value get added together so 12 + 3 = 15 total seconds spent on the page & after I reload the page the same process happens again with the timer & displaying the total no. of seconds on the console. I hope you are seeing the picture & if so, I don't know how to get those timer values to display on the console each time when the page reloads I'm new at this stuff please help me

  • @GhulamMustafa-cr4go
    @GhulamMustafa-cr4go 4 роки тому +1

    At the end when everything is done you have to double click the start button to start the timer why???

    • @GhulamMustafa-cr4go
      @GhulamMustafa-cr4go 4 роки тому +1

      Please anybody help

    • @TechnicalCafe
      @TechnicalCafe  4 роки тому

      Sorry for the inconvenience that you've experienced with having to click on the "Start" button twice after stopping the timer.
      This issue has to do with the status of the timer not being updated within the "reset()" function. If you scroll down through the comments on this video, you can see a few solutions that other viewers have recommended, which should hopefully get everything working as expected.
      In any case, thank you for watching and for taking the time to comment - I appreciate it!

  • @palexer2505
    @palexer2505 5 років тому

    Very helpful tutorial. Thank you so much!

    • @TechnicalCafe
      @TechnicalCafe  5 років тому

      I’m glad you found this tutorial helpful! Thanks for watching and for taking the time to comment - I appreciate it! Please don’t hesitate to reach out if you have any questions, comments, or suggestions!

  • @CrimsonCloudsZeroTwo
    @CrimsonCloudsZeroTwo 3 роки тому

    pause button would be appriciated but really good tutorial overall

  • @nassimback
    @nassimback 4 роки тому +1

    you forgot to add : status = "stopped"; in the reset function ! it can still works but you have to press Start twice after you use the Reset button

  • @ayushi2200
    @ayushi2200 3 роки тому

    I followed the instructions but my start stop is not working .

  • @jamilahmed8839
    @jamilahmed8839 4 роки тому +1

    thanks for that great explanation.

    • @TechnicalCafe
      @TechnicalCafe  4 роки тому

      Thank YOU for watching! I appreciate the kind comments!

  • @ayushi2200
    @ayushi2200 3 роки тому

    My function isn't connecting to html file

  • @rushilbhardwaj5511
    @rushilbhardwaj5511 3 роки тому +1

    Very nice video
    keep it up!

    • @TechnicalCafe
      @TechnicalCafe  3 роки тому

      Thank you! I’m glad you enjoyed it and I hope it was helpful!

  • @rashikkarmacharya8023
    @rashikkarmacharya8023 4 роки тому +1

    that helped me a lot. Thanks

    • @TechnicalCafe
      @TechnicalCafe  4 роки тому +1

      Glad it helped! Thanks for watching and for taking the time to comment!

  • @bobokhonrajabov18
    @bobokhonrajabov18 4 роки тому +1

    Thank you for video project...

    • @TechnicalCafe
      @TechnicalCafe  4 роки тому

      Thank YOU for watching! I hope you found this video helpful!

  • @Bisson156
    @Bisson156 3 роки тому

    excellent thank you!

  • @slimshady5864
    @slimshady5864 4 роки тому

    problem with this stopwatch is that it is not gonna be accurate. i had made a centisecond stopwatch and it was little slower(2-3 seconds slower per minute) than real time. because setInterval() take a few milisecs to start call function again and this time adds up in real time per interval. hence the best way to create these things are using Date().getTime()

  • @starxerox5641
    @starxerox5641 5 років тому

    Hai bro i need your help

    • @TechnicalCafe
      @TechnicalCafe  5 років тому

      Hi! I’d be happy to try and help out! What’s up?

    • @starxerox5641
      @starxerox5641 5 років тому +1

      Your what's up number plz

    • @TechnicalCafe
      @TechnicalCafe  5 років тому

      Would email work instead? Feel free to use the “Contact” page on TechnicalCafe.com to send me a message! Thanks!

  • @andresramirez4469
    @andresramirez4469 3 роки тому +3

    short and simple even i understood it lol

    • @thomascarlton82
      @thomascarlton82 3 роки тому +2

      Bro, I dont get why some people post tutorials and dont even try to make it user friendly. This guy understands his audience lmao

    • @TechnicalCafe
      @TechnicalCafe  3 роки тому +2

      Glad to hear that you found this helpful! Thanks for the kind comment!

    • @TechnicalCafe
      @TechnicalCafe  3 роки тому +2

      Thanks for watching! I appreciate your comment!

  • @Anjaliartistp
    @Anjaliartistp 4 роки тому +1

    Thanku so so much...

    • @TechnicalCafe
      @TechnicalCafe  4 роки тому +1

      Any time! I hope you found the video helpful! Thank you for watching and for taking the time to post a comment - it's greatly appreciated!

  • @ajayt2054
    @ajayt2054 4 роки тому +1

    Thanks 😘

    • @TechnicalCafe
      @TechnicalCafe  4 роки тому

      Any time! Thank you for watching - it's definitely appreciated!

  • @g.shreeharikulkarni6766
    @g.shreeharikulkarni6766 4 роки тому +1

    Thanks of u

    • @TechnicalCafe
      @TechnicalCafe  4 роки тому

      Thanks for watching and for taking the time to comment! Please don’t hesitate to reach out if you ever have any questions or suggestions!

    • @g.shreeharikulkarni6766
      @g.shreeharikulkarni6766 4 роки тому

      @@TechnicalCafe I got a js certificate for video of yours

  • @xavierbestel615
    @xavierbestel615 5 років тому +2

    For some reason my timer won’t go over 59 seconds and everything is right

    • @TechnicalCafe
      @TechnicalCafe  5 років тому

      Sorry for the delayed response! If you’re still having trouble getting the timer to go over 59 seconds, I’d be happy to take a look at your code - just send me a link to a Pastebin or Github Gist that contains your code! :)

    • @xavierbestel615
      @xavierbestel615 5 років тому

      TechnicalCafe it’s all fine now it was a spelling error

  • @kangajankuganathan7457
    @kangajankuganathan7457 3 роки тому

    Thank you sir

  • @ziadashraf8327
    @ziadashraf8327 4 роки тому +1

    thanks from 2020

    • @TechnicalCafe
      @TechnicalCafe  4 роки тому

      Thank YOU! Hope you found the video helpful!

  • @alfieanim4461
    @alfieanim4461 3 роки тому

    Thanks

  • @karinesahakyan7215
    @karinesahakyan7215 4 роки тому +1

    Thanksss

    • @TechnicalCafe
      @TechnicalCafe  4 роки тому

      Thank you for watching and for taking the time to comment! I appreciate it!

  • @vootukuraparna3318
    @vootukuraparna3318 3 роки тому

    for hrs you did not mention after 23 hrs

  • @funmirichards2433
    @funmirichards2433 3 роки тому +1

    I dont understand

    • @TechnicalCafe
      @TechnicalCafe  3 роки тому

      Is there anything in particular that you'd like some additional explanation on?

  • @accountmember2278
    @accountmember2278 3 роки тому +2

    MANNNN, this is some bullshit I tried this code and it failed. Unwatchable video...very disapointing!

    • @clyd_benj
      @clyd_benj 3 роки тому +1

      same bro, same

    • @TechnicalCafe
      @TechnicalCafe  3 роки тому

      Sorry to hear that the code didn’t seem to work when you tried it. Is there anything in particular that didn’t work? Did you get any specific error messages? Also, how could I improve the video so that it’s more watchable?

    • @TechnicalCafe
      @TechnicalCafe  3 роки тому

      I’m also sorry to hear that the code didn’t work for you. If able, could you please provide some additional information as to what didn’t work and what error messages you may have seen?

    • @clyd_benj
      @clyd_benj 3 роки тому +1

      @@TechnicalCafe i figured it out man, no worries. The video format is perfect, especially the comments saying what the code is gonna do. Just a quick question, when I do status, vs code crosses out status and says its deprecated or something like that, how can I get past that
      Cheers bro