CSV Format:
[Person]
- See format specification
[Notes to attach to above person]
- See format specification
[Person]
- See format specification
[Notes to attach to above person]
- See format specification
...
CSV Format:
[Person]
- See format specification
[Notes to attach to above person]
- See format specification
[Person]
- See format specification
[Notes to attach to above person]
- See format specification
...
class BazSerializer < BaseSerializer | |
attribtes :id, :thing, :bar | |
deprecated_attribute :old_thing | |
deprecation_flag: ::FeatureFlags::DEPRECATED_FEATURE_FOO, | |
upgrade_instructions: <<-INSTRUCTIONS | |
Replace `baz.old_thing` with `baz.thing` | |
INSTRUCTIONS | |
deprecated_belongs_to :foo |
// app/instance-initializers/schema.js | |
import fetch from 'fetch' | |
import { loadSchema } from 'wildland-schema/ember-data'; | |
import ENV from '../config/environment'; | |
// load schema and store to report usage violations | |
export function initialize(applicationInstance) { | |
if (ENV.environment === 'development') { | |
const store = applicationInstance.lookup('service:store'); |
Higher Order Components (commonly refered to as HOC) is a function that takes a component as an argument and returns a new component, using the component passed to it to decorate or transform. See https://reactjs.org/docs/higher-order-components.html for Reacts documentation on higher order components for more details.
Using the function below that returns a mocked dataset, build a component inside of Cherish (and render
using Cosmos for ease of development) that accepts this information as a parameter posts
and renders the
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
tagName: 'li', | |
}); |
import Ember from 'ember'; | |
export default Ember.Component.extend({ | |
tagName: 'li', | |
}); |
#!/usr/bin/env ruby | |
require 'open-uri' | |
poll_id = ARGV[0] # var PDV_h... value in https://secure.polldaddy.com/p/1XXXXXXXXX.js request JS file | |
poll_number = ARGV[1] # p= param in https://polls.polldaddy.com/vote-js.php req | |
pick = ARGV[2] # a= param in https://polls.polldaddy.com/vote-js.php req minus the comma | |
tags = ARGV[3] # tags= param minus the src-... stuff in https://polls.polldaddy.com/vote-js.php req | |
referer = ARGV[4] # url= param in https://polls.polldaddy.com/vote-js.php req |