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
WEBsVTT | |
1a | |
00:00.080 --> 00:00.91a3a | |
<v Reporter>It's already looksing like</ssv> | |
2 | |
00:0A0.913 --> 00:02.470 | |
it's going to be a strong opening weekend |
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
WEBVTT | |
1 | |
00:00.080 --> 00:00.913 | |
<v Reporter>It's already looking like</v> | |
2 | |
00:00.913 --> 00:02.470 | |
it's going to be a strong opening weekend |
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
inputChange = (e) => { | |
this.setState({ | |
[e.currentTarget.id]: e.target.value // NOTE: Sets the state object equal to the inoput ID, ensure you have an id on the input | |
}); | |
} |
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
<?php | |
$row = 1; | |
if (($handle = fopen("collection_ejs.csv", "r")) !== FALSE) { | |
while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) { | |
$num = count($data); | |
$row++; | |
$post = array( | |
'name' => $data[1], | |
'locale' => 'en_us', | |
'attributes' => '{}' |
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 React from 'react'; | |
import { | |
VrHeadModel, | |
View | |
} from 'react-vr'; | |
const RCTDeviceEventEmitter = require('RCTDeviceEventEmitter'); | |
/** | |
* Helper to fix a component to the viewport. | |
* @module components/fixed |
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 React from 'react'; | |
import { | |
Box | |
} from 'react-vr'; | |
import * as THREE from 'three'; | |
/** | |
* Testing out custom shaders. | |
* NOTE: This does not currently allow for the animation of uniforms. Attempted a three clock and a interval setting state. | |
* @module components/shaderTest |
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 React from 'react'; | |
import { | |
VrHeadModel, | |
View | |
} from 'react-vr'; | |
/** | |
* Helper to fix a component to the viewport. | |
* @module components/fixed | |
* @property {number} stickiness - The delay in ms between state updates. Lower values = less visual lag. |