Skip to content

Instantly share code, notes, and snippets.

@adolfovj
adolfovj / instalaciones-javascript-curso.md
Created September 1, 2021 10:06 — forked from Klerith/instalaciones-javascript-curso.md
Instalaciones recomendadas - Curso de JavaScript
@adolfovj
adolfovj / parse-jwt.js
Created August 5, 2021 10:58 — forked from Klerith/parse-jwt.js
Parse - JWT - Obtener Payload y fecha de creación y expiración
function parseJwt (token) {
var base64Url = token.split('.')[1];
var base64 = base64Url.replace('-', '+').replace('_', '/');
return JSON.parse(window.atob(base64));
};
@adolfovj
adolfovj / plugins.md
Created July 2, 2021 10:39 — forked from Klerith/plugins.md
Flutter: Curso de Flutter - Instalaciones recomendadas
@adolfovj
adolfovj / instalaciones-node.md
Created July 2, 2021 10:36 — forked from Klerith/instalaciones-node.md
Instalaciones recomendadas y obligatorias para seguir el curso de Node
@adolfovj
adolfovj / index.html
Last active June 26, 2021 10:54
Hmtl: Codigo basico
<!DOCTYPE html>
<html>
<body>
<h1>My First Heading</h1>
<p>My fi paragraph.</p>
</body>
</html>