Skip to content

Instantly share code, notes, and snippets.

View Bound3R's full-sized avatar
⚒️

Daniel Naranjo Bound3R

⚒️
View GitHub Profile
@Jossdz
Jossdz / check.md
Last active July 9, 2021 06:55
Revisión del Prework en español.
@lucky-c
lucky-c / app.js
Last active May 6, 2024 13:13
React Native: Expo video HLS streaming sample
import React from 'react';
import { StyleSheet, Text, View, Dimensions } from 'react-native';
import { Video } from 'expo';
export default class App extends React.Component {
render() {
// Set video dimension based on its width, so the video doesn't stretched on any devices.
// The video dimension ratio is 11 : 9 for width and height
let videoWidth = Dimensions.get('window').width;
@flexbox
flexbox / android.sh
Created July 2, 2018 13:54
React Native with expo SDK release script for android
#!/bin/sh
echo ''
echo '================'
echo 'Dependency check '
echo '================'
echo ''
yarn
echo ''
@pavsidhu
pavsidhu / form.jsx
Last active March 22, 2020 14:27
Validate.js with React Native Form Example
import React, {Component} from 'react'
import {View, Button} from 'react-native'
import TextField from 'textfield'
import validation from 'validation'
import validate from 'validation_wrapper'
export default class Form extends Component {
constructor(props) {
super(props)