Skip to content

Instantly share code, notes, and snippets.

@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>
@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 / plugins.md
Created July 2, 2021 10:39 — forked from Klerith/plugins.md
Flutter: Curso de Flutter - Instalaciones recomendadas
@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 / instalaciones-javascript-curso.md
Created September 1, 2021 10:06 — forked from Klerith/instalaciones-javascript-curso.md
Instalaciones recomendadas - Curso de JavaScript
@adolfovj
adolfovj / debouncer.dart
Created October 1, 2021 08:29 — forked from Klerith/debouncer.dart
Flutter: Debouncer manual
import 'dart:async';
// Creditos
// https://stackoverflow.com/a/52922130/7834829
class Debouncer<T> {
Debouncer({
required this.duration,
this.onValue
});
@adolfovj
adolfovj / react-index.html
Created May 2, 2022 23:55 — forked from Klerith/react-index.html
Introducción a React
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<!-- Cargat React -->
<script crossorigin src="https://unpkg.com/react@16/umd/react.production.min.js"></script>
<script crossorigin src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js"></script>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
@adolfovj
adolfovj / heroes.js
Created May 17, 2022 22:13 — forked from Klerith/heroes.js
Un pequeño arreglo de héroes para hacer ejercicios
const heroes = [
{
id: 1,
name: 'Batman',
owner: 'DC'
},
{
id: 2,
name: 'Spiderman',
owner: 'Marvel'
@adolfovj
adolfovj / instalaciones.md
Created June 1, 2022 02:11 — forked from Klerith/instalaciones.md
Instalaciones recomendadas para el curso de principios SOLID y CleanCode

Instalaciones recomendadas - Curso de principios SOLID y CleanCode

Instalaciones Necesarias

opcional - Yarn