Tag: programming

Build A JavaScript To-Do List

JavaScript is particularly handy for coding interactive lists that let users add, remove, and group items—something you can’t do with HTML and CSS alone. If you’re like me and have great intentions of setting up a to-do list (but never do), now’s your chance. Use your JavaScript chops to whip up a to-do list like this…
Read more

Python HTTP Server

Welcome to another Python tutorial everyone! Web severs are everywhere. Heck you are interacting with one right now! What is an HTTP Server? An HTTP web server is nothing but a process that is running on your machine and does exactly two things: 1- Listens for incoming http requests on a specific TCP socket address (IP address…
Read more

Bash Scripting Tutorial for Beginners

Bash is a command language interpreter. It is widely available on various operating systems and is a default command interpreter on most GNU/Linux systems. The name is an acronym for the ‘Bourne-Again SHell’. You can find a beginner’s tutorial HERE.