Skip to content

Instantly share code, notes, and snippets.

View amartin857's full-sized avatar

Austin Martinez amartin857

  • San Francisco, CA
View GitHub Profile
import Ember from 'ember';
var names = ['a', 'c', 'd', 'b', 'q', 'e'];
function getRandomIntInclusive(min, max) {
return Math.floor(Math.random() * (max - min + 1)) + min;
}
export default Ember.Controller.extend({
appName:'Ember Twiddle',
users: Ember.computed(function() {