I hereby claim:
- I am brkattk on github.
- I am brkattk (https://keybase.io/brkattk) on keybase.
- I have a public key ASAXZz9hWCV9VQFBpRdbrid6L4b7H40abmPNakkMgOkZhwo
To claim this, I am signing this object:
## This file is automatically generated by Android Studio. | |
# Do not modify this file -- YOUR CHANGES WILL BE ERASED! | |
# | |
# This file should *NOT* be checked into Version Control Systems, | |
# as it contains information specific to your local configuration. | |
# | |
# Location of the SDK. This is only used by Gradle. | |
# For customization when using a Version Control System, please read the | |
# header note. | |
sdk.dir=/Users/brkattk/Library/Android/sdk |
npm install --save @oddnetworks/oddworks |
npm install --global @oddnetworks/oddworks-cli |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env node | |
'use strict'; | |
const _ = require('lodash'); | |
const filepath = require('filepath'); | |
const Promise = require('bluebird'); | |
const Archiver = require('archiver'); | |
const output = filepath.create(process.env.OUTPUT).newWriteStream(); | |
const archive = Archiver('zip'); |
Feed will support xcal (xml representation of ical). This allows us to handle event schedules (PBR) in a nice way
Feed will also support the media rss spec as part of our RSS parsing. This allows a nice way to provide links to assets (images, video, etc) within the rss feed in a standardized way.
Both of these require the tag to add additional XML namespaces (xmlns:media, xmlns:xcal).
These are used within an RSS feed like so:
<?xml version="1.0"?>
<rss version="2.0"
public class BaseActivity extends AppCompatActivity { | |
protected OnBackPressedListener onBackPressedListener; | |
public void setOnBackPressedListener(OnBackPressedListener onBackPressedListener) { | |
this.onBackPressedListener = onBackPressedListener; | |
} | |
@Override | |
public void onBackPressed() { | |
if (onBackPressedListener != null) { |
vjs.MediaTechController.prototype.emulateTextTracks = function() { | |
var player = this.player_, | |
textTracksChanges, | |
tracks, | |
script; | |
if (!window['WebVTT']) { | |
script = document.createElement('script'); | |
script.src = player.options()['vtt.js'] || '../node_modules/vtt.js/dist/vtt.js'; | |
player.el().appendChild(script); |
export default React.createClass({ | |
// ... | |
render () { | |
const style = { | |
WebkitTransform: 'translateY(' + this.state.translatedYPosition + ')' | |
} | |
let containerClassString = this.state.containerExpanded ? LeftNavConstants.CONTAINER_EXPANDED : LeftNavConstants.CONTAINER_COLLAPSED | |
if (this.state.containerHighlighted) containerClassString += ' ' + LeftNavConstants.CONTAINER_HIGHLIGHTED |