Question: I just started a new job in Data Entry. My ultimate goal is to be able to work from anywhere in the world. - Rennie … [Read more...] about How To Get A Job As A Remote Programmer?
JavaScript
Is it possible to make 6-figures with HTML, CSS and JavaScript?
Question: I have been struggling to find freelance work. I have experience with front-end HTML, CSS, and JavaScript. - Rennie … [Read more...] about Is it possible to make 6-figures with HTML, CSS and JavaScript?
Rather spend it on strippers and clubs
This last couple of days has been interesting, to say the least! I was given the task of finding 22 random strangers to show up and watch me speak about The Programming Fundamentals using JavaScript. At first, I thought that would be a piece of cake! 22 people, … [Read more...] about Rather spend it on strippers and clubs
How to secure MongoDB
Back in 2016, I wrote a blog post about setting up MongoDB in production and how to setup an external client to connect to a remote machine. I wrote about security specifically in a production setting. I tend to stay away from all hacking discussions just because … [Read more...] about How to secure MongoDB
Angular 2 is Officially Released: What you need to know
Angular 2 is now officially released! This is an exciting time to be an Angular 2 developer. Not only do you have a brand new front-end framework but also an entire platform all created specifically for you to put your next application together. Google invested a … [Read more...] about Angular 2 is Officially Released: What you need to know
Representing Data in Pseudo Code
Again, don't get to hung up on the syntax of pseudo-code. Use it as a tool to model your programs. Take, for example, the following program: start the program Find the last 10 people that entered the building If no one has entered the building today Terminate … [Read more...] about Representing Data in Pseudo Code
How to represent Decision in Pseudo Code
Decision if <Condition is true> <TRUE BRANCH> else <FALSE BRANCH> start the program Find the last 10 people that entered the building If no one has entered the building today Terminate program otherwise email each of the individuals and … [Read more...] about How to represent Decision in Pseudo Code
Represent Terminators in Pseudo Code
How to Flow in Pseudo Code
Flow: In most programming language the flow of a program is from top to bottom. With pseudo-code, you would read it just like you would read a paragraph from left to right. … [Read more...] about How to Flow in Pseudo Code
Represent Process in Pseudo Code
Process: In the example below, you can see that we are working with a three-variable program. The three variables are x,y,z and an addition operations is being executed on them. x = 30 y = x + 1 z = x + y <More Instructions> <More … [Read more...] about Represent Process in Pseudo Code