So after learning the two mark up languages, HTML and CSS, we took a deep dive into the programming language, JavaScript. JavaScript is the language of the web and is the backbone to the way the World Wide Web works. Unlike the other two languages, JavaScript adds functionality to your page by being able to … Continue reading The Last Piece Of The Puzzle: JavaScript
Author: stephenespinal22
DELVING INTO THE BASICS OF WEB DEVELOPMENT: CSS
Now that we looked into HTML, you can see that just adding elements to the web page is very bland and samey. If everyone who build a website only used HTML they World Wide Web wouldn't be as interesting as it currently is. This is where CSS comes in. CSS is also a markup language … Continue reading DELVING INTO THE BASICS OF WEB DEVELOPMENT: CSS
Delving Into The Basics Of Web Development: HTML
Everyone uses the web to navigate through web pages every day of their lives. Not many take a second to think how these websites are built or what goes into making a website. The web today basically runs from three components. HTML, CSS, and JavaScript. HTML and CSS are markup languages meaning that there is … Continue reading Delving Into The Basics Of Web Development: HTML
What is Git/Github?
Git is a version control system that keeps track of your code and all the changes made to it. It's designed to keep history and keep all files and projects stored in a repository. A repository is a container that holds a collection of files. In the professional world, developers use control systems like Git … Continue reading What is Git/Github?
Final Project
Just starting out... So here we are, the final stretch for now! For my final project I will be attempting to create a single player pong experience using P5. Our professor gave me a good idea about how to go ahead with starting this project. First get it to work with maybe some hard coded … Continue reading Final Project
VESTIBULE ASSESSMENT 3/20/19
1. What is P5? How is it distinguished from Processing? P5 is a javascript library that has the original goal of Processing, which is a language that helps people learn to code using visuals to make it easier to understand what the code is doing. 2. What does IDE stand for? Describe its components. IDE … Continue reading VESTIBULE ASSESSMENT 3/20/19
My First Ever Meet-Up.
Intro to JavaScript - Variables, Control Flow, and Looping This is my first experience ever going to a tech meet-up. I've always seen environments similar to this one when you see those videos about how awesome working in Tech can be. When doing the research to find a meet up I came across the words … Continue reading My First Ever Meet-Up.
Coding In The Dark Challenge…Featuring Constructors/Cookie Cutters
Our professor gave us a challenge. Go through code that she wrote and modify it and make it better. She wanted us to go through the code and make it modular and reusable. We did this by using everything we've learned so far and the most important one would be constructor functions. Here's an example … Continue reading Coding In The Dark Challenge…Featuring Constructors/Cookie Cutters
Loops
So how boring would it be if you were playing Pac-Man and when you lose, that was it, you couldn't get a second chance? Well the concept of looping is one of the most powerful concepts at a programmer's finger tips. There are two main different types of loops (There are others), For Loops and … Continue reading Loops
Defining Custom Functions
So we have seen this before, functions but what are they? A function is a piece of code that can be reusable and executes when called on. The structure/syntax is normally: function nameOfFunction(parameters) { //code } So we can actually pass variables through and we can return something back as well. We do so by … Continue reading Defining Custom Functions