I hereby claim:
- I am pangratz on github.
- I am pangratz (https://keybase.io/pangratz) on keybase.
- I have a public key whose fingerprint is ED74 3330 DFE1 FB64 C6BB BAAB FDB1 218C EF20 16D6
To claim this, I am signing this object:
$('param[name="flashVars"]').each(function(i){ | |
console.log($(this).attr('value').replace(/eventNamespace=audioPlayer.*mp3Url=/, "").replace(/&colorScheme=fm4/, "") ) | |
}); |
<html> | |
<head> | |
<title>ToDo List</title> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<style></style> | |
<title>CouchDB jQuery Examples</title> | |
<script src="script/jquery.js"></script> | |
<script src="script/handlebars.js"></script> | |
<script src="script/ember.js"></script> | |
<script src="script/ember-data.js"></script> |
I hereby claim:
To claim this, I am signing this object:
(Originally taken from the Skylight "almost daily" emails, written by Tom Dale)
It was a very busy week. We spent the first three days of the week digging deep into Glimmer performance. As we've been scrambling to bring the benefits of this brand new approach to rendering to the many existing Ember apps, we inadvertently added some performance regressions while adding backwards compatibility features.
We spent many hours staring at the profiler in Chrome, trying to figure out how to optimize Glimmer's rendering performance at both the micro and macro level.
One of the biggest improvements was minimizing the number of DOM manipulations for certain cases of re-rendering an each helper in Ember. You can see more of the specific details in the commit here: https://github.com/tildeio/htmlbars/commit/64be35ef03953d80cfe4434446a01dd483bba7b0
This definitely involved busting out some rusty Computer Science skills, but it's always fun to explore algorithms and
import DS from 'ember-data'; | |
export default DS.RESTAdapter.extend({ | |
shouldReloadAll: function() { | |
return true; | |
} | |
}); |
import DS from 'ember-data'; | |
export default DS.RESTAdapter.extend({ | |
namespace: '/api/application' | |
}); |
import Ember from 'ember'; | |
export default Ember.Controller.extend({ | |
appName:'Ember Twiddle' | |
}); |
import DS from 'ember-data'; | |
export default DS.RESTAdapter.extend(); |
import DS from 'ember-data'; | |
export default DS.RESTAdapter.extend(); |