I sent you a message inviting you to a local event that I'm going to be hosting about the programming fundamentals with JavaScript. I was surprised by the wide range of response that I got. Here are just a few. Can this help someone like me who is interested … [Read more...] about Learn To Code in Salt Lake City
Programming
How to install Genesis Framework on WordPress
I have been a long time fan of the Genesis Framework it's what helped me go from a crappy free website to an awesome responsive one that works right out of the box. The genesis framework is a complete no-brainer if you want to become a REAL blogger, although I can … [Read more...] about How to install Genesis Framework on WordPress
Meeting Eli The Computer Guy – How to market an in-person event?
Rick: Hey, Eli. Can you hear me? Eli: I can hear you now. I can hear you now. Yes. Rick: It was pretty painful watching the live stream right now. No one shows up. Eli: I was surprised. This is the perfect example. I thought this was going to be a cool … [Read more...] about Meeting Eli The Computer Guy – How to market an in-person event?
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
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
Mastermind for brand new Programmers
Hey Friend, Just wanted to personally invite you to a monthly mastermind call that I'm hosting every single month. What exactly is a mastermind? If you are not familiar with a mastermind, it's a group of people that get together and tackle on some of the toughest … [Read more...] about Mastermind for brand new Programmers
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