You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{!-- Create a `/components/ui` directory to keep all of the ui presentational components In this example `ui-card` and `ui-selectable-list` are both simply presentational contextual components--}}{{#ui-cardas |card|}}{{#card.headeronClose=onClose}}
Tags
{{/card.header}}
This method (vendor-shim) wraps the global export into an es6 module (but the global one is still present). It doesn't use an es6 interface even if the library offers one, but that's okay for my use case.
Things could still be easier, see this thread for the current state of that.
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
Creating GIFs from .MOV files in OSX using FFmpeg and ImageMagick
Convert MOV to GIF using FFmpeg and ImageMagick
I tried a few different techniques to make a GIF via command-line and the following gives me the best control of quality and size. Once you're all setup, you'll be pumping out GIFs in no time!
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
Many people are confused by the {{mut}} helper because it seems very magical. This gist aims to help you construct a mental model for
understanding what is going on when you use it.
History
Prior to the introduction of {{mut}}, form elements were two-way bound by default.
That is, given this component:
When using yarn, it will create a yarn.lock lockfile which holds data on your used dependencies. This file also includes hard-typed versions, so should you update your dependencies, the yarn.lock file is basically outdated and needs to be regenerated. While yarn does this automatically, Greenkeeper pull requests that update dependencies as of right now do not do this regeneration, which means you would have to do it manually.
This gist shows you a way how to automatise this step using a Travis CI script.
Prerequisites
You use Travis CI and have it build Pull Requests (default behaviour)
You have a yarn.lock file in your repository for Travis CI to automatically install yarn (yarn will be added to their default images soon)