Skip to content

Instantly share code, notes, and snippets.

@Elizabella
Elizabella / instalaciones-node.md
Created July 26, 2021 16:35 — forked from Klerith/instalaciones-node.md
Instalaciones recomendadas y obligatorias para seguir el curso de Node
@Elizabella
Elizabella / instalaciones-angular.md
Created July 26, 2021 16:35 — forked from Klerith/instalaciones-angular.md
Instalaciones necesarias y recomendadas - Curso de Angular de cero a experto
@Elizabella
Elizabella / reset styles browsers
Created July 18, 2021 19:53 — forked from bezael/reset styles browsers
Reset for browsers.
/*THE MINIFIED RESET*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers*/
@Elizabella
Elizabella / para_comenzar.html
Created July 15, 2021 22:48 — forked from jonmircha/para_comenzar.html
Código para iniciar el Curso de CSS Grid de @jonmircha
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Aprendiendo Grid CSS</title>
<style>
html {
box-sizing: border-box;
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Putting User Input into JS Objects</title>
<style>
.formBox{
padding: 0.5rem 2rem;
@Elizabella
Elizabella / state_capitals.json
Created July 15, 2021 01:40 — forked from bradtraversy/state_capitals.json
JSON array of states and capitals
[
{
"abbr": "AL",
"name": "Alabama",
"capital": "Montgomery",
"lat": "32.361538",
"long": "-86.279118"
},
{
"abbr": "AK",
// sort
var pokemons = [
{ name:'pickachu', level: 50 } ,
{ name:'bulbasour', level: 10 } ,
{ name:'snorlax', level: 1 } ,
{ name:'mew', level: 2 } ,
{ name:'abra', level: 150 }
];
// var numbers = [2, 34, 10, 2, 5, 1];
console.log(pokemons.sort(function (prev, next) {
@Elizabella
Elizabella / react-index.html
Created June 24, 2021 02:04 — 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>
@Elizabella
Elizabella / instalaciones-react.md
Created June 24, 2021 01:46 — forked from Klerith/instalaciones-react.md
Instalaciones recomendadas para el curso de React con Sockets
@Elizabella
Elizabella / instalaciones-backend.md
Created June 24, 2021 01:44 — forked from Klerith/instalaciones-backend.md
Instalaciones y configuraciones de nuestro backend