Skip to content

Instantly share code, notes, and snippets.

View riosfranklin's full-sized avatar

Franklin Rios riosfranklin

View GitHub Profile
@riosfranklin
riosfranklin / web-servers.md
Created June 1, 2022 21:38 — forked from willurd/web-servers.md
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000
@riosfranklin
riosfranklin / plugins.md
Created November 3, 2021 23:48 — forked from Klerith/plugins.md
Flutter: Curso de Flutter - Instalaciones recomendadas
@riosfranklin
riosfranklin / instalaciones-javascript-curso.md
Created January 5, 2021 08:23 — forked from Klerith/instalaciones-javascript-curso.md
Instalaciones recomendadas - Curso de JavaScript

Como subir un proyecto local a github.

desde la web de github

Creamos un nuevo repositorio en https://github.com. Le damos nombre, descripción, seleccionamos si va a ser un proyecto publico o privado si es el caso, y dejamos el check de crear README sin marcar. Le damos a crear repositorio y con esto ya tenemos el repositorio donde alojaremos nuestro proyecto.

desde la terminal del equipo donde esta el proyecto que queremos subir a github

Nos vamos a la carpeta del proyecto y ejecutamos estos comandos.

git init

git add .