This file contains 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
<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> |
This file contains 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
/** 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 => |
This file contains 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
/** 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++ ) { |
This file contains 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
.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 { |
This file contains 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
/** 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 |
This file contains 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
var folder = "images/"; | |
var availableImages = []; | |
var time = 4000; | |
// Ejecutar un AJAX a un folder con las imágenes | |
// Importante que sea de acceso publico y sin un index. | |
$(document).ready(function () { | |
$.ajax({ | |
url: folder, | |
success: function (data) { |
This file contains 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 {PS4GameFactory, XBOXGameFactory} from "./factory_clases"; | |
export class GameMaker { | |
public constructor() { | |
const ps4Game = new PS4GameFactory(); | |
this.tester(ps4Game); | |
const xboxGame = new XBOXGameFactory(); | |
this.tester(xboxGame); | |
} |
This file contains 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
let langSentence = 'Estos son los lenguajes requeridos: Javascript, PHP, Java, Python.'; | |
// Inicio y fin de busqueda | |
let startSearch = langSentence.indexOf(':'); | |
let endSearch = langSentence.indexOf('.', startSearch + 1); | |
// Obtener el texto despujes del inicio y fin | |
let langString = langSentence.substring(startSearch + 1, endSearch); | |
// Convertir cada elemento separado por coma en un elemento del arreglo |
This file contains 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 | |
$name = "file-" . time(); | |
$myfile = fopen($name, "w") | |
?> |
This file contains 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, { Component } from "react"; | |
import "./App.css"; | |
class App extends Component { | |
state = { | |
nombre: "", | |
email: "", | |
esAdmin: "", | |
genero: "", | |
color: "", |