Skip to content

Instantly share code, notes, and snippets.

View gabolopez90's full-sized avatar

Gabriel López gabolopez90

  • Caracas, Venezuela
View GitHub Profile
@gabolopez90
gabolopez90 / index.html
Created December 31, 2016 18:46
Wikipedia Viewer
<div class="title text-center">
<h1>Wikipedia Viewer</h1>
<br />
</div>
<div class="text-center subtitulo">
<button class="btn" id="random" type="button">Random<span></span></button>
</div>
<br />
<div class="text-center forma">
<form>
@gabolopez90
gabolopez90 / index.html
Created December 31, 2016 19:07
Weather app for FCC
<div class="texto">
<div class="text-center top">
<h1 class="text-center">Gabo's Weather App</h1>
<p>An app for the FreeCodeCamp challenge.</p>
</div>
<div class="city text-center" id="data">
<h3>Your current location is: </h3>
</div>
<div class="text-center">
<p class="temperatura"></p>
@gabolopez90
gabolopez90 / index.html
Created January 4, 2017 16:21
Twitch TV
<div class="header text-center">
<h1>Twitch TV Streams</h1>
</div>
<div class="streams ">
<div class="text-center container">
<ul class="streamer">
</ul>
</div>
</div>
@gabolopez90
gabolopez90 / index.html
Created January 26, 2017 15:05
Tic Tac Toe game
<div class="container text-center">
<div id="header">
<h1><i class="fa fa-times" aria-hidden="true"></i> Tic Tac Toe <i class="fa fa-circle-o" aria-hidden="true"></i></span></h1>
</div>
<div id="body">
<button class="btn" id="btnx">Select X</button>
<button class="btn" id="btno">Select O</button>
<div id="tablero">
<table class="table table-bordered table-inverse">
@gabolopez90
gabolopez90 / freecodecamp-westworld-quotes.markdown
Last active April 26, 2017 18:58
FreeCodeCamp Westworld Quotes

FreeCodeCamp Westworld Quotes

A random quoting generator created for the Random Quote Machine challenge. I loved Westworld the HBO series so I'm making that my theme here.

A Pen by Gabriel Lopez on CodePen.

License.

@gabolopez90
gabolopez90 / MongoDB.md
Last active April 29, 2017 15:35
Apuntes de mongoDB, tanto para trabajarlo en la terminal como desde Node.js a través de Mongoose

MongoDB

Algunos apuntes de mongoDB

Instalar mongodb desde la terminal de c9

$ sudo apt-get install -y mongodb-org

Iniciar MongoDB

@gabolopez90
gabolopez90 / git.md
Last active May 22, 2023 21:42
Apuntes sobre comandos de Git para la terminal.

Git

Luego de instalar git, podrás acceder a git en cualquier momento desde la terminal de tu pc (bash, cmd, shell, etc?.

Revisar versión de git

$ git --version

Configurar tu nombre

@gabolopez90
gabolopez90 / javascript.md
Last active January 15, 2025 19:17
Apuntes de Javascript

Javascript

String en minusculas

	var str = "Hello World!";
	var res = str.toLowerCase();

Concatenar strings con el operador +=

@gabolopez90
gabolopez90 / html-css.md
Last active October 10, 2024 20:33
Apuntes de html y css.

HTML

HTML es un lenguaje de marcado que se utiliza para el desarrollo de páginas de Internet. Se trata de la sigla que corresponde a HyperText Markup Language, es decir, Lenguaje de Marcas de Hipertexto, que podría ser traducido como Lenguaje de Formato de Documentos para Hipertexto.

Estructura de un archivo html:

	<!DOCTYPE html>
	<html>