Everyone Will Learn How to Code Eventually
Back in high school, I was all about doing things in tech. We were lucky since Mr. Wes Felty was a faculty member at Ingraham High School, and he also doubled as the network system administrator for the whole Seattle Schools District. There was a ton of opportunity to experiment, and here are some of the projects we were able to do:
Friends and I helped rebuild and update our school’s website
Learned how to build computers in our A+ course
Wired and set up the Rainier Beach High School network
Through MESA, helped Seattle Parks and Recreation improve their website
I can only imagine what kids are learning nowadays. Ten years later, I’ve continued to stay within the HTML and CSS borders of coding. This year, I’ll be breaking free from those borders. The goal is to learn the basics and harness some coding skills which will come in super handy. As the “business” guy, I think it’s especially important to learn since understanding what goes into coding could be your leg up whether you’re the one coding or managing the product. I want to be able to build product and having a skill set to build prototypes without waiting for this “special” developer to do it is key for me.
So along with 300,000+ others, I joined Code Year brought to you by Codecademy. I just finished my first week of lessons in Javascript, and I’m left wanting more and lucky me there’s a couple more lessons to do. Naturally, I’ll probably be diving into other resources on top of the to-dos for Code Year. Having minimal coding experience, I’m looking to catch up and there’s a ton of resources out there as my buddy Scott Windsor says:
So what are you waiting for? Go sign up at codeyear or codeacademy or tryruby or Khan Academy. I even teach ruby lessons as well if you want one on one help and instruction.
Scott Windsor
Coding is just like any skill set. Let’s just take sales, for instance. A lot of folks don’t have any selling experience, but they end up learning how to do it because in the end — it’s a good to have. I feel the same with coding. You may not end up being the best coder in the world, but having the extra bit of knowledge will go a long way in whatever job you have and it may even help you land one. You’ll eventually be learning this stuff sometime in the future, why not just start now. Don’t wait 10 years like me.
Check out my first application from Codecademy, FizzBuzz. It’s crude, but it’s a start.
// for the numbers 1 through XX,
var number = prompt ("How many numbers do you want?");
for (i=1; i<=number; i++) {
// if the number is divisible by 3, write "Fizz"
// if the number is also divisible by 5, write "FizzBuzz"
if ( i % 3 === 0 ) {
if ( i % 5 === 0) {
console.log("FizzBuzz")
}
else {
console.log("Fizz");
}
}
// if the number is divisible by 5, write "Buzz"
else if ( i % 5 === 0 ) {
console.log("Buzz");
}
// otherwise, write just the number
else {
console.log(i);
}
}