Super excited to announce this. I'm going to be hosting my first in-person event right here in SLC. What is the event going to be about? A couple of weeks ago I asked you what type of topic that you would like to see from me. I got such a good amount of feedback … [Read more...] about Modern Code Event in SLC
JSecademy
How to Batch Process video conversions using FFMPEG with Node.js
Recently I have been trying to transcode 120+ videos to different versions of the same file. If you have visited jsecademy you will see that I'm using Wistia to host all of the current videos. I decided that I need to switch over to Amazon S3 storage and I will … [Read more...] about How to Batch Process video conversions using FFMPEG with Node.js
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
Introduction to Pseudo Code
Pseudo Code Pseudo code is another form that can help us represent what a program is doing at a high-level. The main purpose of pseudo code is to have a human-readable representation of your program. Remember pseudo code is NOT a programming language. You will … [Read more...] about Introduction to Pseudo Code
Representing a Data in Flowcharts
I/O | Input or Output: Represents data input or output from a process. … [Read more...] about Representing a Data in Flowcharts