This file contains hidden or 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 Controller from '@ember/controller'; | |
import { A } from '@ember/array'; | |
export default class Index extends Controller { | |
list1 = A(['Item 1', 'Item 2', 'Item 3']); | |
list2 = A([ | |
A(['Item 1', 'Item 2', 'Item 3']), | |
A(['Item 4', 'Item 5', 'Item 6']), | |
]); | |
list3 = A([ |
This file contains hidden or 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 Controller from '@ember/controller'; | |
import { A } from '@ember/array'; | |
export default class Index extends Controller { | |
list1 = A(['Item 1', 'Item 2', 'Item 3']); | |
list2 = A([ | |
A(['Item 1', 'Item 2', 'Item 3']), | |
A(['Item 4', 'Item 5', 'Item 6']), | |
]); | |
list3 = A([ |
This file contains hidden or 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'; | |
import layout from '../templates/components/extra-profile'; | |
export default Ember.Component.extend({ | |
layout, | |
}); |
This file contains hidden or 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({ | |
appName: 'Ember Twiddle' | |
}); |
This file contains hidden or 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({ | |
classNames: ['flex-layout-content'] | |
}); |
This file contains hidden or 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({ | |
appName: 'Ember Twiddle' | |
}); |
This file contains hidden or 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({ | |
}); |
This file contains hidden or 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
### Keybase proof | |
I hereby claim: | |
* I am scudco on github. | |
* I am scudco (https://keybase.io/scudco) on keybase. | |
* I have a public key whose fingerprint is DB9D F978 00D4 49E4 4280 5042 E3F4 C2FF 0D53 04FE | |
To claim this, I am signing this object: |
This file contains hidden or 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
// Replace the following values with your own: | |
// auth_token | |
// room_id | |
// from | |
javascript: | |
var auth_token = "Your auth_token"; | |
var room_id = "Room to send message"; | |
var from = "Sender's name"; | |
var hipchat = 'https://api.hipchat.com/v1/rooms/message?auth_token=' + auth_token + |
This file contains hidden or 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
upstream appname_unicorn { | |
server unix:/var/www/appname/shared/unicorn.sock fail_timeout=0; | |
} | |
server { | |
listen 80; | |
server_name www.domain-name.com; | |
rewrite ^(.*) http://domain-name.com$1 permanent; | |
} | |
NewerOlder