content
├── _index.md
...
├── dashboard
│ ├── _index.md
| | ...
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
| // Copyright 2015 Palantir Technologies, Inc. All rights reserved. | |
| // Licensed under the Apache License, Version 2.0. | |
| @import "~@presslabs/icons/src/icons"; | |
| // the icon class which will contain an SVG icon | |
| .#{$ns}-icon { | |
| // ensure icons sit inline with text & isolate svg from surrounding elements | |
| // (vertical alignment in flow is usually off due to svg - not an issue with flex.) | |
| display: inline-block; |
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 Sticky from 'sticky-js' | |
| const sticky = new Sticky('.sticky') |
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
| <!-- // Before --> | |
| <script type='text/javascript'> | |
| (function () { | |
| var pl_beacon = document.createElement('script'); | |
| pl_beacon.type = 'text/javascript'; | |
| pl_beacon.async = true; | |
| var host = 'https://www.presslabs.com'; | |
| if ('https:' == document.location.protocol) { | |
| host = host.replace('http://', 'https://'); |
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
| #!/bin/bash | |
| # brew install ffmpeg --with-libvpx --with-libvorbis --with-theora --with-fdk-aac | |
| # For this to work, you need to have ffmpeg | |
| # installed with libvorbis, theora and libvpx ENABLED | |
| # to do that in Homebrew: | |
| # brew reinstall ffmpeg --with-libvpx --with-libvorbis --with-theora | |
| # | |
| # encoding reference: |