I hereby claim:
- I am mixonic on github.
- I am mixonic (https://keybase.io/mixonic) on keybase.
- I have a public key whose fingerprint is C34B 0092 AF17 0AFC 9F22 3F5D 8FCD 4AB5 1F37 1A5E
To claim this, I am signing this object:
| test("it slices the array", function() { | |
| expect(7); | |
| deepEqual(get(obj, 'sliced'), [1, 2]); | |
| Ember.run(function() { | |
| // [0, 1, 2, 3, 4, 5] | |
| obj.get('array').insertAt(0, 0); | |
| }); |
| // Record changes to an ObjectProxy and allow them to be stepped through | |
| // or jumped to. | |
| // | |
| // For an example, see http://emberjs.jsbin.com/EJEcoxO/12/edit?html,js,output | |
| // | |
| // There is a bower/npm installable version of this library on GitHub: | |
| // https://github.com/mixonic/ember-vcr-proxy | |
| // | |
| (function (global) { |
I hereby claim:
To claim this, I am signing this object:
An authorization service library for your Ember.js application. <- Cory and I really like this as a tagline.
Torii is an authorization abstraction for Ember.js applications.
Adding social login to your Ember.js app just got a whole lot simpler.
Need an OAuth 2 authorization code? Let us do the heavy lifting.
Dependency injection and service lookup are two important framework concepts. The first, dependency injection, refers a dependent object being injected onto another object during instantiation. For example, all route objects have the property router set on them during instantiation. We say that the dependency of the router has been injected onto the route objects.
App.IndexRoute = Ember.Route.extend({
actions: {
showPath: function(){
// Dependency injection provides the router object to our
// route instance.If you have worked much with Ember-Data, then you know the buffered object proxy pattern:
http://coryforsyth.com/2013/06/27/ember-buffered-proxy-and-method-missing/
This pattern allows us to put changes to a model into a buffer instead of on the model itself. There are several benefits of this:
cannot change an object inFlight error. With a buffer, you can commit the buffer to the model and save the model, then allow the user to keep making edits against a new buffer. No conflict.| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset=utf-8> | |
| <title>Image Search</title> | |
| <script src='http://code.jquery.com/jquery.js'></script> | |
| <script src='https://rawgit.com/dmdez/simple-masonry/master/jquery.simplemasonry.js'></script> | |
| <script src='http://underscorejs.org/underscore.js'></script> | |
| <script src='http://backbonejs.org/backbone.js'></script> | |
| <style> |
Howdy friends and colleagues at EmberFest!
We hope you are enjoying the sunshine and beaches of Barcelona. Please join us for a casual pre-conference gathering tonight (Tuesday) at our flat, a ten minute walk north of the conference hotel:
5pm to 8pm
Passatge Taulat 14, 08019, Barcelona
| import Ember from 'ember'; | |
| export default Ember.Controller.extend({ | |
| appName:'Ember Twiddle' | |
| }); |