This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
// ember-easyForm wrapper | |
app.import('vendor/form-wrapper-file.js'); | |
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
var bootstrapFonts = pickFiles('vendor/bootstrap-sass-official/assets/fonts/bootstrap', { | |
... | |
}); | |
... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
results: { | |
collection1: [ | |
{ Monday: [ | |
{ | |
ClassName: "Cycling", | |
StartTime: "7:00 AM", | |
EndTime: "7:45 AM", | |
Location: "13th Street", | |
Instructor: "Colleen Richards" | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
results: { | |
collection1: [ | |
{ Monday: [ | |
{ | |
ClassName: "Cycling", | |
ClassDetails: "7:00 AM - 7:45 AM 13th Street Colleen Richards" | |
}, | |
{ | |
ClassName: "Sole Power™", | |
ClassDetails: "9:15 AM - 10:00 AM 13th Street Taro Kawai" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
App.Router.map(function() { | |
this.route('user-guide'), | |
this.resource('listings', function() { | |
// assumes scoping of listings (property, portfolio, mgr) occurs in index | |
this.resource('listing'); | |
}); | |
this.resource('application-packages', function() { | |
this.resource('application-package', function() { | |
// the index for applications sits in the application-packages route | |
this.resource('application'); |
Overview
Complete a deployed version of an app similar to that demonstrated in CodeSchool's Ember course using Ember-CLI.
Features
- Use ember-cli
- Two resources w/ associations (products > reviews)
- Three views/routes (home, products, product)
- CSS Framework (Foundation or Bootstrap)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"total": 104, | |
"page": 3, | |
"crunchbase_url": "http://www.crunchbase.com/search?geo=los angeles ca\u0026range=5", | |
"results": [ | |
{ | |
"name": "Zone Ventures", | |
"permalink": "zone-ventures", | |
"crunchbase_url": "http://www.crunchbase.com/financial-organization/zone-ventures", | |
"namespace": "financial-organization", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'nokogiri' | |
require 'open-uri' | |
puts "What YouTube URL do want information on?" | |
url = gets.chomp | |
doc = Nokogiri::HTML(open(url)) | |
subscribers = doc.css('span.stat-value')[0].content |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
puts "hello world" |
NewerOlder