Skip to content

Instantly share code, notes, and snippets.

View diurivj's full-sized avatar

Diego Vazquez diurivj

View GitHub Profile

Project #3: MERN Application

Overview

This third project is your first foray into building a MERN Stack application. You'll be building a MERN app, which means you'll learn about what it takes to build a functional application from the ground up yourself.

This is exciting! It's also a lot, but we have been giving you the tools for your toolbelt during the course, and you

Module 2 / Updates / Sandra, Joss, Diego

Week 4

Week4

Week 5

Week5

💡 What is the current problem in lesson X:

Project 1: Video Game with Javascript

Presentations

Project 1's presentation will focus more on you again, since you will be presenting to judges.

Format

  • Talking with Slides: 2 minutes
  • Demo: 3 minutes
  • Total: 5 minutes
const hacker1 = 'Diego'
console.log("The driver's name is " + hacker1)
@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": [
{

Hola Silvia

Esto también funciona

@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
@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": "",
router.get('/carlos', (req, res, next) => {
Post.find().populate('creator').populate({
path:'comments',
populate:{
path:'author',
model:'User'
}
})
.then(posts => {
res.send(posts);