Updated: 2017-08-10
The "MUST HAVE" extensions and addons are those that I would recommend every browser have installed. I would not surf the web without these.
| #include <stdlib.h> | |
| #include <unistd.h> | |
| #include <time.h> | |
| #include <string.h> | |
| #include <signal.h> | |
| #include <curses.h> | |
| void quit() | |
| { | |
| endwin(); |
| #!/usr/bin/env python3 | |
| upper_limit = input("Highest number you'd like to go to: ") | |
| for x in range(1, int(upper_limit)): | |
| if x % 3 == 0 and x % 5 == 0: | |
| print('FizzBuzz') | |
| elif x % 3 == 0: | |
| print('Fizz') | |
| elif x % 5 == 0: |