Skip to content

Instantly share code, notes, and snippets.

View porfidev's full-sized avatar
⚛️
Now coding react-native

Porfirio Chávez porfidev

⚛️
Now coding react-native
View GitHub Profile
@porfidev
porfidev / _btg3.scss
Created November 28, 2017 15:02
Test de personalización ooyala Skin
.oo-scrubber-bar-container {
padding: 0;
margin: 0;
position: relative;
width: 80%;
}
.oo-control-bar-items-wrapper {
a.oo-time-duration {
&.oo-control-bar-duration {
@porfidev
porfidev / Game.js
Created November 10, 2017 19:09
Juego de prueba para el curso de react.js (se necesita transpilar)
/** UTILITARIO **/
const possibleCombinationSum = function(arr, n) {
if (arr.indexOf(n) >= 0) { return true; }
if (arr[0] > n) { return false; }
if (arr[arr.length - 1] > n) {
arr.pop();
return possibleCombinationSum(arr, n);
}
var listSize = arr.length, combinationsCount = (1 << listSize)
for (var i = 1; i < combinationsCount ; i++ ) {
/** Estrellas a mostrar **/
const Stars = (props) => {
const numberOfStars = 1 + Math.floor(Math.random()*9);
// let stars = [];
// for(let i = 0; i < numberOfStars; i++){
// stars.push(<i key={i} className="fa fa-star"></i>);
// }
return (
<div className="col-5">
{_.range(numberOfStars).map(i =>
<script src="//player.ooyala.com/static/v4/production/latest/core.min.js"></script>
<script src="//player.ooyala.com/static/v4/production/latest/video-plugin/main_html5.min.js"></script>
<script src="//player.ooyala.com/static/v4/production/latest/video-plugin/osmf_flash.min.js"></script>
<script src="//player.ooyala.com/static/v4/production/latest/video-plugin/bit_wrapper.min.js"></script>
<script src="//player.ooyala.com/static/v4/production/latest/other-plugin/discovery_api.min.js"></script>
@porfidev
porfidev / example.js
Created November 3, 2017 15:07
ngZone on Observable
return Observable.create(observer => {
this.ngZone.run(() => {
params.callback = (result) => {
if (result.status === 'FAIL') {
observer.error(result.errorDetails || result.errorMessage);
} else {
observer.next(result);
observer.complete();
}
@porfidev
porfidev / index.js
Created September 8, 2017 19:08
Trucos para Expresiones regulares
/** Declaración de expresiones regulares **/
var regexp = new RegExp('abc'); // Objeto
var regexp2 = /abc/; // Literales
/** Encontrar al menos un carácter en la lista **/
var regexp3 = /[0123456789]/;
var regexp3alter = /[0-9]/;
/** GUIA RAPIDA DE ATAJOS
console.log('hello')
@porfidev
porfidev / token-request-options.service.ts
Created June 5, 2017 18:53
Interceptor (Experimental) para Angular4
import {Injectable} from '@angular/core';
import {BaseRequestOptions, RequestOptions} from '@angular/http';
@Injectable()
export class TokenRequestOptionsService extends BaseRequestOptions {
private token: string;
constructor() {
super();
this.addToken();
@porfidev
porfidev / index.html
Created August 26, 2016 23:38
Cambiar la imagen de fondo con jQuery y CSS
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
.clase-miku {
background-image: url('anime-wallpaper-3.jpg');
}
@porfidev
porfidev / index.html
Created August 23, 2016 23:08
Previo a capturar o subir un archivo :)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Subir Archivo o tomar foto</title>
</head>
<style>
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */