Skip to content

Instantly share code, notes, and snippets.

View alexismellamo's full-sized avatar
:octocat:

Alexis Navarro alexismellamo

:octocat:
View GitHub Profile
This file has been truncated, but you can view the full file.

Release notes - 2020-06-22 - 1.5.0

  • Fixes some issues with sessions that does not have all the info
  • Fixes one issue that prevent conference connect correctly

Release notes - 2020-06-22

  • Fixes some issues with sessions that does not have all the info
  • Fixes one issue that prevent conference correctly

You need to create this web app: https://zpl.io/2ZX6p9d

  • It needs to be a react app
  • No CSS framework (bootstrap, bulma, etc)
  • You can use any other library
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>iframe Window</title>
<style>
body {
background-color: #D53C2F;
color: white;
}
const opposite = {
'NORTH': 'SOUTH',
'SOUTH': 'NORTH',
'EAST': 'WEST',
'WEST': 'EAST'
};
function dirReduc(arr) {
let hasReduced = false
let newArray = []

hola

const animals = [
{name: 'Fluffy', species: 'rabbit'},
{name: 'Caro', species: 'dog'},
{name: 'Hamilton', species: 'dog'},
{name: 'Harold', species: 'fish'},
{name: 'Ursula', species: 'cat'},
{name: 'Jimmy', species: 'cat'},
{name: 'Fluffy', species: 'dog'},
]
@alexismellamo
alexismellamo / cloudSettings
Created September 7, 2018 18:10
Visual Studio Code Settings Sync Gist
// Empty
@alexismellamo
alexismellamo / .js
Created March 20, 2018 23:48 — forked from GeDiez/.js
Ejemplo crear objetos: puras funciones
let createPerson = (nombre, edad) => {
let getName = () => nombre;
return {
nombre,
edad,
getName,
}
}