I hereby claim:
- I am ntassone on github.
- I am nickt (https://keybase.io/nickt) on keybase.
- I have a public key whose fingerprint is 72BC 514A 132B 48E9 CB8E 0FA6 C036 BF3D E389 414E
To claim this, I am signing this object:
| ol { | |
| list-style: none; | |
| counter-reset: li; | |
| li { | |
| counter-increment: li; | |
| &:before { | |
| content: counter(li) '.'; | |
| //Decimal follows count | |
| } | |
| } |
| <html> | |
| <head> | |
| <title>Query Chat</title> | |
| <script src="https://cdn.goinstant.net/v1/platform.min.js"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> | |
| <style type="text/css"> | |
| body { | |
| margin: 0; | |
| padding: 0; | |
| font-family: sans-serif; |
| @mixin text-truncate { | |
| overflow: hidden; | |
| text-overflow: ellipsis; | |
| white-space: nowrap; | |
| } |
| @mixin font-size($sizeValue: 12 ){ | |
| font-size: $sizeValue + px; //fallback for old browsers | |
| font-size: (0.125 * $sizeValue) + rem; | |
| } |
| @mixin line-height($heightValue: 12 ){ | |
| line-height: $heightValue + px; //fallback for old browsers | |
| line-height: (0.125 * $heightValue) + rem; | |
| } |
| //Set Variables | |
| $button-white: #ffffff; | |
| $button-green: #44ca00; | |
| $button-green-dark: #369a12; | |
| $button-blue: #a6d1f9; | |
| $button-blue-dark: #14283e; | |
| $button-gray: #eeeeee; | |
| $button-red: #9e0b0f; | |
| //Create Array |
| $icon_font: 'EntypoRegular'; | |
| $icon_prefix: dicon; | |
| $icon_color: inherit; | |
| $icon_color_hover: inherit; | |
| @font-face { | |
| font-family: $icon_font; | |
| src: url('../fonts/entypo/entypo.eot'); | |
| src: url('../fonts/entypo/entypo.eot#iefix') format('embedded-opentype'), | |
| url('../fonts/entypo/entypo.woff') format('woff'), |
I hereby claim:
To claim this, I am signing this object:
| # Split into two separate files at the 50 min mark. | |
| ffmpeg -i original.mp4 -t 00:50:00 -c copy new-1.mp4 -ss 00:50:00 -c copy new-2.mp4 |