<share-tools
share-title="Share This!"
share-url="//example.org/share-me"
data-track-category="Super Cool Category"
data-track-action="Share" [0]
>
<h1>Special Custom Share Message</h1> [1]
<share-via-facebook icon label></share-via-facebook>
<share-via-twitter icon label twitter-handle="theonion"></share-via-twitter>
This file contains hidden or 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
<div class="homepage-player-wrapper" data-track-category="Large Video Player"> | |
<bulbs-video-carousel class="video-carousel homepage-player"> | |
<div class="homepage-player-nav"> | |
<div class="homepage-player-logo-container"> | |
<a class="homepage-player-nav-logo" href="http://www.onionstudios.com/channels/the-onion/" data-track-action="HP: Video Logo" data-track-label="#"> | |
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 317 54.5" class="onion-video-logo"> | |
<!-- TRUNCATED SVG --> | |
</svg> | |
</a> | |
</div> |
This file contains hidden or 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
/ | |
/// | |
//// | |
//////////// | |
//// /// // | |
//// /// ///// | |
/// /// //// // | |
/// // /// // | |
//// /// /// | |
//// //// /// .--------------------------. |
This file contains hidden or 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
constructor (props) { | |
var wrappedProps = {}; | |
Object.keys(props).forEach((key) => { | |
wrappedProps[key] = Object.create(props[key]); | |
wrappedProps[key].update = (object) => { | |
Object.assign(props[key], object) | |
this.setState({ wrappedProps }); | |
}; | |
}); | |
super(props); |
This file contains hidden or 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
from bluebu/rails-alpine | |
RUN mkdir /webapp | |
RUN apk --update add --virtual build_deps \ | |
build-base ruby-dev libc-dev linux-headers \ | |
openssl-dev postgresql-dev libxml2-dev libxslt-dev | |
RUN gem update --system | |
RUN gem install bundler | |
WORKDIR /webapp | |
COPY ./Gemfile* /webapp/ | |
RUN cd /webapp && bundle config build.pg --with-pg-config=/usr/pgsql-9.1/bin/pg_config && \ |
This file contains hidden or 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
function Thing () { | |
this.method = this.method.bind(this); | |
$(element).on('event', this.method); | |
} | |
Thing.prototype.method = function () { | |
} |
Starter warm-ups and exercises:
Circle up. Go in a circle. One person starts by turning to the next person and those two clap in unison. Then the second person turns to the next person and they clap in unison. This goes on, stop after one or two times around.
Now pass the clap without any set order.
Finally break the circle and pass the clap while milling around the space.
This file contains hidden or 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
MATCH (user)-[:has_access_to]->()-[:contains..*]->(target), (root_node)-[:rel_a]-()-[:rel_b]-(target) |