- Fixes some issues with sessions that does not have all the info
- Fixes one issue that prevent conference connect correctly
This file has been truncated, but you can view the full file.
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
eyJraWQiOiJTSUdOSU5HX0tFWSIsImFsZyI6IlJTMjU2In0.W3siaWRlbnRpdHlJZCI6IjVmNTgwNDViODNkZmE5MDAxMWNlNTk4NSIsImV2ZW50TmFtZSI6InNlbGZpZSIsImV2ZW50RGF0YSI6e2ltZ1NpemVJbkJ5dGVzPTQ5ODgzMywgZmFjZVRlbXBsYXRlPUFRRUZDL3dBOUFML0FmLzUvL2tXQlFJSkFQbndDL3IzL3dBQkJRWDQ3Z2p3QlFINDl3SUVCLzcwL3dIejlnY0M5dmtFL1A3OUNRTUpDUWY4L3ZvTkJmajNCL0VRK1FJRS9mb09Dd2I2L1A4QkJmMEU4Z2dGQmd2MSt3TUFCd1g2L3hRRCtQa0gvUUlGREFNR0JRci9BZjBBL1BzREJnY0cvL2dGQVF3SSsvOEhBTzczQ2ZqNDZ3VC8rUE1FQUFBSjcvbi83UGdEK1FUeURQOEFBZmo3OXdEekVQLzVDd3p2QlA0S0N2Lzcvd0Q5K1FiMytQMzgrZ2dGQ2dQODkvTUMvd0FOQXdEOCtRWCtEd2I2Q3dmOUIrLzJBUUQvOVAzM0J3WUhBUWNBL1FBRCt3ZjRCZno5QUFNTEFBVDYvZzBPK0FBRS92MFU5djRJN3dBTUFQSUZDUE1LfSwiZXZlbnRUeXBlIjpudWxsLCJzaWduYXR1cmUiOiJleUpyYVdRaU9pSlRTVWRPU1U1SFgwdEZXU0lzSW1Gc1p5STZJbEpUTWpVMkluMC5leUpmYVdRaU9tNTFiR3dzSWw5amNtVmhkR1ZrUVhRaU9tNTFiR3dzSWw5MWNHUmhkR1ZrUVhRaU9tNTFiR3dzSW1Gd2FVdGxlU0k2Ym5Wc2JDd2lhV1JsYm5ScGRIbEpaQ0k2SWpWbU5UZ3dORFZpT0ROa1ptRTVNREF4TVdObE5UazROU0lzSW1WMlpXNTBUbUZ0WlNJNkluTmxiR1pwWlNJc0ltVjJaVzUwVkhsd1pTSTZJbWx0WVdkbElpd2laWFps |
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
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>iframe Window</title> | |
<style> | |
body { | |
background-color: #D53C2F; | |
color: white; | |
} |
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
const opposite = { | |
'NORTH': 'SOUTH', | |
'SOUTH': 'NORTH', | |
'EAST': 'WEST', | |
'WEST': 'EAST' | |
}; | |
function dirReduc(arr) { | |
let hasReduced = false | |
let newArray = [] |
hola
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
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'}, | |
] |
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
// Empty |
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 createPerson = (nombre, edad) => { | |
let getName = () => nombre; | |
return { | |
nombre, | |
edad, | |
getName, | |
} | |
} |