View components.my-component.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
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
someData: 'hello' | |
didReceiveAttrs() { | |
console.log('didReceiveAttrs') | |
}, | |
didUpdateAttrs() { | |
console.log('didUpdateAttrs') | |
} |
View components.child-component.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
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
actions: { | |
clearPersonData() { | |
this.set('person', null) | |
} | |
} | |
}); |
View controllers.application.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
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
contentHtml: Ember.String.htmlSafe(` | |
<p>Hello <strong>world</strong></p> | |
<p>This content has html like images</p> | |
<p><img src="http://placekitten.com.s3.amazonaws.com/homepage-samples/408/287.jpg"></p> | |
`) | |
}); |
View components.video-player.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
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
tagName: 'video', | |
attributeBindings: [ | |
'autoplay', | |
'muted', | |
'height', | |
'width', | |
'poster', |
View components.a11y-label.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
import Ember from 'ember'; | |
const { | |
Component, | |
computed, | |
get, | |
guidFor | |
} = Ember; | |
export default Component.extend({ |
View gist:7ebcb5e4ae331e1997cd
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
. | |
├── JSONStream | |
│ ├── LICENSE.APACHE2 | |
│ ├── LICENSE.MIT | |
│ ├── examples | |
│ │ └── all_docs.js | |
│ ├── index.js | |
│ ├── package.json | |
│ ├── readme.markdown | |
│ └── test |
View xhr.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 xhr = new XMLHttpRequest() | |
xhr.open('GET', 'http://requestb.in/155pmaz1') | |
xhr.onreadystatechange = function () { | |
if (xhr.readyState !== 4) return | |
var jsonifiedXhr = JSON.parse(JSON.stringify(xhr)) | |
console.log(Object.keys(jsonifiedXhr)) | |
} | |
xhr.send() | |
// Chrome 42 |
View gist:60de7441423f6444d8fa
This file has been truncated, but you can view the full file.
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
{"participants":303854,"now":1427930520000,"secondsLeft":60} | |
{"participants":303865,"now":1427930521000,"secondsLeft":60} | |
{"participants":303871,"now":1427930522000,"secondsLeft":60} | |
{"participants":303875,"now":1427930523000,"secondsLeft":60} | |
{"participants":303884,"now":1427930524000,"secondsLeft":60} | |
{"participants":303893,"now":1427930525000,"secondsLeft":60} | |
{"participants":303900,"now":1427930526000,"secondsLeft":60} | |
{"participants":303907,"now":1427930527000,"secondsLeft":60} | |
{"participants":303917,"now":1427930528000,"secondsLeft":60} | |
{"participants":303931,"now":1427930529000,"secondsLeft":60} |
View gist:7dab16b72ec1561ee715
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
$ aws lambda get-event-source --uuid my-events-uuid | |
{ | |
"Status": "OK", | |
"UUID": "my-events-uuid", | |
"LastModified": "2014-11-22T02:37:00.000+0000", | |
"BatchSize": 1, | |
"Parameters": { | |
"InitialPositionInStream": "TRIM_HORIZON" | |
}, | |
"Role": "arn:aws:iam::acct-number:role/lambda_exec_role", |
View gist:9535323
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 https = require('https') | |
https.get('https://medium.com', function (res) { | |
res.on('end', function () { | |
console.log('You will never see this') | |
}) | |
}) | |
https.get('https://medium.com', function (res) { | |
// This sets the stream to flowing mode and makes sure it gets through all of its |
NewerOlder