ffmpeg -i in.mov -s XxY -r 24 -b:v 64k -pix_fmt rgb8 -f gif - | gifsicle --optimize=3 > out.gif
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="container"> | |
| <div class="front">front</div> | |
| <div class="back">back</div> | |
| </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
| <div class="container"> | |
| <div class="front">front</div> | |
| <div class="back">back</div> | |
| </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
| <div> | |
| <h1>Adam Drago</h1> | |
| </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
| var turf = require('turf'); | |
| turf.load('3m-buffered-point.geojson', function (err, data) { | |
| var features = data.features, | |
| point = features[0], | |
| poly = turf.buffer(point, 3, 'miles'), | |
| polyCoords; | |
| polyCoords = poly.features[0].geometry.coordinates[0]; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| import config from '../config'; | |
| import { handleJsonResponse } from '../util/response'; | |
| import { | |
| CLUBS_REQUEST, | |
| CLUBS_SUCCESS, | |
| CLUBS_FAILURE, | |
| INVALIDATE_CLUBS | |
| } from '../actions'; |
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
| import { | |
| CLUB_FAILURE, | |
| CLUB_REQUEST, | |
| CLUB_SUCCESS, | |
| CLUB_WITH_MEMBERS_FAILURE, | |
| CLUB_WITH_MEMBERS_REQUEST, | |
| CLUB_WITH_MEMBERS_SUCCESS, | |
| CLUBS_REQUEST, | |
| CLUBS_SUCCESS, | |
| CLUBS_FAILURE, |
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
| import { lazy } from 'react'; | |
| /** | |
| * Uses React's `lazy` utility underneath, and works the same way, but | |
| * `lazyRoute` will handle the "ChunkLoadError" error by reloading the page. | |
| * This is generally a good solution when the user runs into a "ChunkLoadError" | |
| * while changing routes. All other errors will be passed along as normal. | |
| * @param factory The function that returns the result of webpack's `import` | |
| * @example | |
| * const Page = lazyRoute(() => import('components/pages/Page')); |