Skip to content

Instantly share code, notes, and snippets.

View ralexrdz's full-sized avatar

Raul Rodriguez ralexrdz

  • Vientos
  • Mexico City
View GitHub Profile
# instalar GIT
1. Update packetes de linux
- $ sudo apt-get update
2. Instalar git desde los packetes de linux
- $ sudo apt-get install git
https://insiders.liveshare.vsengsaas.visualstudio.com/join?70D3CC908CFAFD425071612F3E862C492038
Forum App
Componentes:
- ListaPost
- TextArea
- Botón Agregar
- Posts
- Post
- Parrafo
- TextArea para Comments
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

Multicursor

ctrl+d

  • Cuando tenemos puntero sin selección, selecciona la palabra que lo contenga
  • Cuando tenemos una selección, agrega una nueva selección (con cursor) en la siguiente aparición del texto seleccionado

(si te pasas y quieres regresar) ctrl+u

  • Soft Undo: Deselecciona la última selección agregada
> db.jugadores.find().skip(1).limit(2).pretty()
{
"_id" : ObjectId("5d8ac9850e4bb7a6ae5a473c"),
"nombre" : "Ronaldinho",
"numero" : "10",
"equipo" : "Brasil"
}
{
"_id" : ObjectId("5d8acbf50e4bb7a6ae5a473d"),
"nombre" : "Modrik",
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Collapsible Tree Example</title>
<style>
.node circle {
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.node {
cursor: pointer;
}
.node circle {
fill: #fff;
stroke: steelblue;
# Objetivos personales
## Oscar
- Creación de aplicación Web
- JS ****
- HTML ***
- CSS ***
- Backend (As A Service) con Firebase ***
- Backend con JS o Python **
git checkout master
git pull
git checkout -b mi-rama
<hago mis cambios>
git add .
git commit -m "mi mensaje"
git checkout master
git pull