Presented by Dan Gebhardt October 16, 2019 at the API Specifications Conference in Vancouver, BC.
https://speakerdeck.com/dgeb/an-introduction-to-the-json-api-specification
import type {QueryOrExpressions, RequestOptions} from '@orbit/data'; | |
import {RecordQueryBuilder, RecordQueryExpression} from '@orbit/records'; | |
export type QueryDispatch = ( | |
queryOrExpressions: QueryOrExpressions< | |
RecordQueryExpression, | |
RecordQueryBuilder | |
>, | |
queryOptions?: RequestOptions, | |
queryId?: string, |
Presented by Dan Gebhardt October 16, 2019 at the API Specifications Conference in Vancouver, BC.
https://speakerdeck.com/dgeb/an-introduction-to-the-json-api-specification
Presentation by Dan Gebhardt at EmberCamp Chicago. September 16th, 2019.
Web workers bring a new layer of capabilities to web applications. Because workers operate on their own threads, they provide a way to perform processor-intensive tasks without affecting the responsiveness of an application. This talk will explore the different types of workers, including service workers and shared workers, and how to make the most of them in your Ember applications. We'll discuss the capabilities available to workers and explore different use cases, including progressive web apps.
Almost all docs from README should be moved to ember-engines.com. Having similar but different info in both places is confusing and unmaintainable.
Consider using https://github.com/ember-learn/ember-cli-addon-docs to standardize the docs and guides and to make them version-specific.
Clarify the philosophy and intended uses for engines.
Is the "Why Use Engines?" section on http://ember-engines.com/ sufficient?
I hereby claim:
To claim this, I am signing this object:
Definition of TestLoader
as a class in ember-cli-test-loader
:
(function() {
define("ember-cli/test-loader",
[],
function() {
"use strict";
var TestLoader = function() {
Causality podcast: http://thinkdistributed.io/blog/2013/08/28/causality.html
Lamport paper: http://cnlab.kaist.ac.kr/~ikjun/data/Course_work/CS642-Distributed_Systems/papers/lamport1978.pdf
Detecting Causal Relationships in Distributed Computations: In Search of the Holy Grail http://www.vs.inf.ethz.ch/publ/papers/holygrail.pdf
import Orbit from 'orbit'; | |
import { RecordNotFoundException, RecordAlreadyExistsException } from 'orbit_common/lib/exceptions'; | |
import attr from 'ember_orbit/attr'; | |
import Context from 'ember_orbit/context'; | |
import Store from 'ember_orbit/store'; | |
import Model from 'ember_orbit/model'; | |
import { createStore } from 'test_helper'; | |
var get = Ember.get, | |
set = Ember.set; |
export default DS.Adapter.extend({ | |
orbitSource: undefined, | |
init: function() { | |
this._super(); | |
Orbit.Promise = Ember.RSVP.Promise; | |
// TODO - autogenerate schema from DS models | |
var schema = { | |
idField: 'id', |