http://twitter.com/share?text=<TITLE>&url=<URL>
E.g. http://twitter.com/share?text=This+is+google+a+search+engine&url=https%3A%2F%2Fwww.google.com
http://www.facebook.com/sharer.php?u=&p[title]=
| .filmstrip{ | |
| padding: 0; | |
| margin: 10px; | |
| display: flex; | |
| } | |
| .navButton{ | |
| border: 0; | |
| margin: 0; | |
| height: 100%; |
| <pre> | |
| <%= JSON.pretty_generate(@subject) %> | |
| <%= JSON.pretty_generate(@notification.attributes[:action_attributes][:message]) %> | |
| </pre> |
| version: '3.3' | |
| services: | |
| db: | |
| image: mysql:5.7 | |
| volumes: | |
| - db_data:/var/lib/mysql | |
| restart: always | |
| ports: | |
| - "3306:3306" |
| function console_log($obj) { | |
| ob_start(); | |
| var_dump($obj); | |
| $contents = ob_get_contents(); | |
| ob_end_clean(); | |
| error_log($contents); | |
| } |
| 'use strict'; | |
| /** | |
| * Map of HTTP Status codes. | |
| */ | |
| var Status = { | |
| OK: 200, | |
| BAD_REQUEST: 400, | |
| UNAUTHORIZED: 401, | |
| NOT_FOUND: 404, |
| var React = require('react'); | |
| var _ = require('underscore'); | |
| // Component Props | |
| // data - the array of objects | |
| // groupBy - the propert by which to group the objects | |
| // itemComponent (optional) - component to render for each list Item | |
| // headerComponent (optional) - component to render for Group header | |
| // Example |
| var Backbone = require('backbone'); | |
| var Dispatcher = require('./dispatcher'); | |
| var BaseStore = { | |
| /** | |
| * backbone init method | |
| * - the Dispatcher registers this stores handleDispatch method and return a reference to self, the dispatchId. | |
| */ | |
| initialize: function() { |
| { | |
| "stationId": "20569", | |
| "callSign": "TWCNAT", | |
| "channel": "001", | |
| "preferredImage": { | |
| "uri": "sources/generic/generic_sources_h3.png" | |
| }, | |
| "airings": [{ | |
| "startTime": "2015-07-06T19:00Z", | |
| "endTime": "2015-07-06T19:30Z", |
| /** | |
| * Maps a Canada postal code to a (marginal) guess at your Timezone. | |
| * @type {Object} | |
| */ | |
| var data = { | |
| 'America/Chicago': [ | |
| 'S', 'R', 'X0C' | |
| ], | |
| 'America/New_York': [ | |
| 'J', 'G', 'H', 'L', 'K', 'M', 'N', 'X0A' |