Skip to content

Instantly share code, notes, and snippets.

View tuxdinosaur's full-sized avatar
🦊
Error 404. Nuvo not found

Zeltzin Tuxtla tuxdinosaur

🦊
Error 404. Nuvo not found
View GitHub Profile

Materials

Presentation

Feel free to use this presentation as a reference.

Starting Code

Open this CodeSandbox and start editing. It will automatically create a fork (that is, a duplicate) for you to work on.

SQL Database

Data is stored in tables. Every entry corresponds to a row.

SQL databases are usually relational.

Table: books

title author release_year rating pages
@codigoconjuan
codigoconjuan / footer.php
Last active October 25, 2020 05:49
Gist Agenda PHP
@mrcodedev
mrcodedev / emojisGitHub.md
Created August 26, 2018 14:41
Emoticonos GitHub Markdown

People

:bowtie: :bowtie: 😄 :smile: 😆 :laughing:
😊 :blush: 😃 :smiley: ☺️ :relaxed:
😏 :smirk: 😍 :heart_eyes: 😘 :kissing_heart:
😚 :kissing_closed_eyes: 😳 :flushed: 😌 :relieved:
😆 :satisfied: 😁 :grin: 😉 :wink:
😜 :stuck_out_tongue_winking_eye: 😝 :stuck_out_tongue_closed_eyes: 😀 :grinning:
😗 :kissing: 😙 :kissing_smiling_eyes: 😛 :stuck_out_tongue:
@mrcodedev
mrcodedev / reactDefinitions.md
Last active January 13, 2020 22:33
Definiciones de React

💥 Definiciones en React 💥

Similitudes entre HTML y React Native

<div> === <View>
<p> || span === <Text>
<button> === <TouchableHighlight>
<img /> === <Image />
<input /> === <TextInput />
@mrcodedev
mrcodedev / linuxBasicCommands.md
Created August 25, 2018 00:05
Comandos básicos Linux

COMANDOS DE LA CONSOLA DE LINUX

  • cat (de concatenar): Visualizar el contenido de un archivo sin un editor:
$ cat prueba.txt
  • ls (de listar): Lista el contenido del directorio en el que se está o que se indica:
$ ls /home/directorio/subdirectorio
@mrcodedev
mrcodedev / gitCommandsConsole.md
Created August 25, 2018 00:02
Comandos Git para consola

COMANDOS DE GIT EN CONSOLA:

1º Configuración y primeros pasos:

git init <nombre_proyecto>: Inicia un repositorio local con el nombre.

git init : Dentro de la carpeta del proyecto, inicia un repositorio en esta carpeta.

git clone <url> : Clona el repositiorio que haya en la url.