- https://community.claris.com/en/s/question/0D53w00005T1xt3/data-api-logout-ssl-error
- https://community.claris.com/en/s/question/0D53w00005T1lPk/curl-options-connecting-fmp-to-fmp-data-api
- https://community.claris.com/en/s/question/0D53w00005SVGXn/using-filemaker-data-api-instead-of-webdirect
- https://community.claris.com/en/s/question/0D53w00005RcTDy/example-of-using-an-html-form-and-php-to-post-data-and-files-to-a-filemaker-database-via-the-filemaker-data-api
- https://community.claris.com/en/s/question/0D50H00006ezaGj/filemaker-data-api-access-to-authorizenet-functions
- https://community.claris.com/en/s/question/0D53w00005SUXla/i-cant-connect-to-server-via-filemaker-data-api
- https://community.claris.com/en/s/question/0D53w00005S6cos/first-steps-with-data-api-on-fms19
- https://community.claris.com/en/s/question/0D53w00005S6Pzo/how-to-use-php-and-curl-to-interact-with-the-filemaker-data-api
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class AbandonHope < Magic::Card | |
# short for: | |
# name "Abandon Hope" | |
# cost "{X}{1}{B}" | |
head "Abandon Hope", "{X}{1}{B}" | |
# short for `type :sorcery` | |
sorcery | |
text "As an additional cost to cast :name, discard X cards", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#== Migrations | |
class CreateUsers < ActiveRecord::Migration[5.0] | |
def change | |
create_table :users do |t| | |
t.string :name | |
t.timestamps | |
end | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gets | |
puts"%9s | |
%5s%8s | |
%s%14s | |
%s%16s | |
%s%14s |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
Ember Data: Dependent Relationships | |
This package extends Ember Data to support creating relationships | |
where a model's dirty state depends not only on its own attributes | |
but on the dirty state of models in dependent relationships as well. | |
```javascript | |
App.Thing = DS.Model.extend({ | |
name : DS.attr('string'), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
Ember Data: Dependent Relationships | |
This package extends Ember Data to support creating relationships | |
where a model's dirty state depends not only on its own attributes | |
but on the dirty state of models in dependent relationships as well. | |
```javascript | |
App.Thing = DS.Model.extend({ | |
name : DS.attr('string'), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var get = Ember.get; | |
var forEach = Ember.EnumerableUtils.forEach; | |
var camelize = Ember.String.camelize; | |
var pluralize = new Ember.Inflector(); | |
App.EmbeddedRecordsMixin = Ember.Mixin.create({ | |
/** | |
Serialize `belongsTo` relationship when it is configured as an embedded object. |