Skip to content

Instantly share code, notes, and snippets.

Joelle Marie Torneros

I’m a passionate new media designer and web developer with 10 years of experience in structuring, developing and implementing business websites and online applications. Seeking an opportunity to leverage my skill set with modern web technologies, design, marketing and project management in a technology forward company.

[email protected]

GITHUB.COM/JMT75200

LINKEDIN.COM/IN/JOELLETORNEROS

@jmt75200
jmt75200 / Notes
Last active December 2, 2016 07:45
** TERMINOLOGY:
CLI - Command Line Interface: interaction with computer through lines of texts and commands (black and white)
GUI - Graphic User Iterface: user interface that interacts with computer visually (colorful)
** 3 LEVELS OF KNOWING:
1. Knowing and Understanding
2. Teaching and Reinforcing
3. Grocking - understanding intuitively
** Traits of a developer:
// Basic Concepts //
Introduction to Javascript - a programing language for the web. Javascript enables you to add powerfull interactions to websites.
//Students will learn basic javascript concepts such as variables, data types, operators, conditionals and functions
// Create a new file inside notes folder named javascript.js
** Example of Comments **
// Javascript Basics - Examples
@jmt75200
jmt75200 / CSS
Last active August 31, 2016 15:56
Jr Devleague - Waipahu - Lesson on CSS
------------/// Cascading Style Sheets ///-----------
CSS stands for Cascading Style Sheets and describes how HTML elements are displayed on screen, paper and other media.
There are three ways to include styles to an element:
Inline using the style="" attribute
Internal using the <style></style> element, placed within the <head></head> element
External stylesheets linked within the <head></head> element
**The best way to apply styles to your project is by using an external stylesheet.
@jmt75200
jmt75200 / HTML
Last active August 30, 2016 23:14
Jr Devleague - Waipahu HTML Lesson
-------------------/// HTML STRUCTURE ///-----------------------
HTML - stands for Hyper Text Markup Language.
Markup Languages are designed for the processing, defining and presenting text or data.
HTML is composed of a tree of HTML elements. Each element is an individual component and may contain content.
**Elements without content are called empty tags. An empty tag is self closing, ex: <br /> **
Tags are used to begin and end elements in HTML. Tag names are used within element start and end tags to describe the element.
Example of a start tag: <a>

MEH to MVC

Diagrams

mvc

mvc

The Controller