Skip to content

Instantly share code, notes, and snippets.

View diurivj's full-sized avatar

Diego Vazquez diurivj

View GitHub Profile
@diurivj
diurivj / broken-img-tag.md
Last active July 1, 2018 23:06
broken img tag

Intro a HTML

Metas de aprendizaje

Después de está lección, serás capaz de:

  • Entender que es un Lenguaje de marcado.
  • Comprender muy bien que es HTML.
  • Entender la estructura de un documento HTML.
https://github.com/Enured/pokeblog-back
https://github.com/Enured/pokblog-front
@diurivj
diurivj / index.html
Created October 30, 2018 22:16
windows logo
<div id="container">
<div id="logo">
<div id="rojo">
<div id="rojo2">
<div id="rojo3"></div>
</div>
</div>
<div id="verde"></div>
@diurivj
diurivj / index.html
Created October 30, 2018 23:05
position a la old school
<header>
<ul>
<li>login</li>
|
<li>signup</li>
|
<li>home</li>
</ul>
</header>
router.get('/carlos', (req, res, next) => {
Post.find().populate('creator').populate({
path:'comments',
populate:{
path:'author',
model:'User'
}
})
.then(posts => {
res.send(posts);
@diurivj
diurivj / package.json
Created December 10, 2018 16:30
package.json for react
{
"name": "starter-code",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"webpack": "webpack-dev-server --progress --color",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
@diurivj
diurivj / Resources for students
Created January 4, 2019 17:37
Recopilation of the repositories
react hooks - https://github.com/diurivj/React-Hooks
advanced routing react - https://github.com/diurivj/advanced-routing
ant design components - https://github.com/diurivj/lab-antd-components / sustituye bulma components
chat with socket.io - https://github.com/diurivj/socketioChat
auth with bcrypt - https://github.com/diurivj/First-auth-with-bcrypt
auth with firebase/hbs - https://github.com/diurivj/FirebaseAuthHBS
MongoDB-Atlas-Stitch-HTML - https://github.com/diurivj/MongoDB-Atlas-Stitch-HTML
git ignore - https://github.com/diurivj/Practica-de-gitignore/blob/master/foo/instrucciones.md
to do list dom - https://github.com/diurivj/ToDoListDOM
repaso módulo 1 - https://github.com/diurivj/REPASO-modulo-1-oct

Hola Silvia

Esto también funciona

@diurivj
diurivj / firebase.json
Created January 14, 2019 21:40
hosting cra in firebase with servie worker register
{
"hosting": {
"public": "build",
"ignore": [
"firebase.json",
"**/.*",
"**/node_modules/**"
],
"rewrites": [
{