Skip to content

Instantly share code, notes, and snippets.

View EstesE's full-sized avatar
🌴
...

Eric EstesE

🌴
...
  • Proxima Centauri, Proxima b
View GitHub Profile
#!/usr/bin/python
"""
advanced-flood.py
@author: Randall Degges
@email: rdegges@gmail.com
@date: 11-20-09
This program floods the specified phone number and spoofs caller ID making it
import Ember from 'ember';
export default Ember.Controller.extend({
intl: Ember.inject.service(),
appName: 'Ember Twiddle',
price: 232323,
enterPrice: Ember.computed('intl.locale', 'price', function() {
console.log(this.get('intl').formatNumber(this.get('price'), { currency: 'USD', format: 'USD', style: 'currency' }));
return this.get('intl').formatNumber(this.get('price'), {
currency: 'USD',
@EstesE
EstesE / controllers.application.js
Last active November 16, 2016 16:46 — forked from poteto/controllers.application.js
ember-changeset-validations demo
import Ember from 'ember';
import AdultValidations from '../validations/adult';
import ChildValidations from '../validations/child';
import { reservedEmails } from '../validators/uniqueness';
import { schema } from '../models/user';
const { get } = Ember;
const { keys } = Object;
export default Ember.Controller.extend({