Hearted Youtube comments on Fireship (@Fireship) channel.

  1. 659
  2. 654
  3. 653
  4. 653
  5. 652
  6. 652
  7. 649
  8. 645
  9. 641
  10. 632
  11. 629
  12. 627
  13. 624
  14. 621
  15. 620
  16. 618
  17. 614
  18. 614
  19. 611
  20. 609
  21. 604
  22. 601
  23. 601
  24. 601
  25. 593
  26. 591
  27. 589
  28. 587
  29. 583
  30. 582
  31. 582
  32. 580
  33. 579
  34. 572
  35. 572
  36. 569
  37. 566
  38. 562
  39. 562
  40. 557
  41. 556
  42. 552
  43. 551
  44. 551
  45. 546
  46. 542
  47. Some thoughts: EDIT: Please stop telling me about `#!/bin/sh`. This video is specifically about bash and so is this comment. I am aware that posix sh... exists. If you want to write POSIX compliant scripts, use sh. If you want to write modern scripts, use BASH. Also: even if you use sh instead of bash, you may still be writing bash. The best way to test for that would be shellcheck. Oh and `/bin/sh` is not specified ny posix either, so you'll probably still want to use `#!/usr/bin/env sh`. - Please do not use `#!/bin/bash` or `#!/usr/bin/bash` as your shebeng. Instead use `#!/usr/bin/env bash`. This way, bash can be installed pretty much anywhere and it will still work. - Please always put double qoutes around variables unless you specifically need them unqouted (which you do when loop over an array using a for-loop for example). This will prevent unintended splitting of strings. Note that in bash single qoutes ('), double qoutes (") and backticks (`) all have a different meaning. Speaking of backticks: - Whenever you see a stackoverflow answer around processing a command's output, you will probably see someone using a command enclosed by backticks. This is deprecated and should not be used. Instead, you can use $(command). However, you should also double qoute that, so "$(command)". - Variables don't have to be all-caps. However, if you use them like " $VARsomething" where only VAR is the variable name, you may need to use curly brackets to signal bash where the variable starts and ends: "${VAR}something". Those can also be used for substitutions, which I recommend you just look up ;).
    532
  48. 525
  49. 524
  50. 520