#Angular Curriculum
Unit 1:
- Intro and Setup
- 2 Way Data Binding
- Expressions and Filters
- Intro to Controllers
- Built-In Directives
- Angular Events
const http = require('http') | |
const port = 8000 | |
const requestHandler = (request, response) => { | |
console.log(request.url) | |
response.statusCode = 200; | |
response.setHeader('Content-Type', 'text/plain'); | |
response.end("Hello, HTTP! \n") | |
} |
#Angular Curriculum
Unit 1:
#Angular 1 - Basics
##Setup
index.html
fileng-app
##2 Way Data Binding
Let's start with something simple that showcases the power of Angular. In index.html
create a text input.
#Responsive Design Workshop
##Some Examples of Responsive Sites
#Project Presentations Order
require 'nokogiri' | |
require 'rest-client' | |
class Review | |
attr_reader :raw, :date, :stars, :user, :body | |
def initialize(html='') | |
@raw = html | |
@noko = Nokogiri::HTML(html) | |
@date = extract_meta('datePublished') |
require 'nokogiri' | |
class Review | |
attr_reader :raw, :date, :stars, :user, :body | |
def initialize(html='') | |
@data = html | |
@date = extract_meta('datePublished') | |
@stars = extract_meta('ratingValue') | |
@user = extract_user |
# Simple Singly Linked List Implementation in Ruby | |
class Node | |
attr_accessor :value, :next_node | |
def initialize(value) | |
@value = value | |
end | |
end | |
class LinkedList | |
def initialize(value) |