I hereby claim:
- I am joeflateau on github.
- I am joeflateau (https://keybase.io/joeflateau) on keybase.
- I have a public key ASBl-_Z9OvQMOBqCEOooqfoyySXVOshxq4FaQODqrgWacQo
To claim this, I am signing this object:
| javascript:with(document.querySelector("video")){ | |
| removeAttribute('disablePictureInPicture'); | |
| requestPictureInPicture(); | |
| } |
| import videojs, { VideoJsPlayer } from 'video.js'; | |
| const Plugin = videojs.getPlugin('plugin'); | |
| // default setting | |
| const defaultSetting: VideoJsMarkerPluginSettings = { | |
| markerStyle: { | |
| width: '7px', | |
| 'border-radius': '30%', | |
| 'background-color': 'red' |
| declare module 'video.js' { | |
| namespace videojs { | |
| interface Player { | |
| ima(options: any): this; | |
| } | |
| } | |
| export default videojs; | |
| } |
| import videojs = require('video.js'); | |
| declare module 'video.js' { | |
| namespace videojs { | |
| interface Player { | |
| ima(options: any): this; | |
| } | |
| } | |
| } |
| declare module 'video.js' { | |
| namespace videojs { | |
| interface Player { | |
| ima(options: any): this; | |
| } | |
| } | |
| } |
| function umountsmbfs(){ | |
| for D in `mount -t smbfs | sed 's/.* on \(.*\) [(].*/\1/'`; do umount $D; done; mount; | |
| } | |
| function sawtailf(){ | |
| group=$1 | |
| hours=$2 | |
| if [ -z "$hours" ]; then | |
| hours=1 | |
| fi |
I hereby claim:
To claim this, I am signing this object:
| function deferredObservable(initialValue, creator){ | |
| if (!creator){ | |
| creator = initialValue; | |
| initialValue = null; | |
| } | |
| if ($.type(creator) === "string") { | |
| var getUrl = creator; | |
| creator = function(){ return $.get(getUrl); }; | |
| } |