├── .gitignore ├── README.md ├── chat ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── server │ └── app.js ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── actions │ │ └── index.js │ ├── components │ │ ├── AddMessage.js │ │ ├── Message.js │ │ ├── MessagesList.js │ │ └── Sidebar.js │ ├── constants │ │ └── ActionTypes.js │ ├── containers │ │ ├── AddMessage.js │ │ ├── MessagesList.js │ │ └── Sidebar.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ ├── reducers │ │ ├── index.js │ │ ├── messages.js │ │ └── users.js │ ├── registerServiceWorker.js │ ├── sagas │ │ └── index.js │ ├── sockets │ │ └── index.js │ └── utils │ │ └── name.js └── yarn.lock ├── gameoflife ├── .gitignore ├── README.md ├── improvements │ ├── ES6 + more │ │ └── index.js │ └── README.md ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── src │ ├── index.css │ └── index.js └── yarn.lock ├── node-web-scraping ├── index.js └── package-lock.json ├── notable ├── app │ └── routes │ │ ├── index.js │ │ └── note_routes.js ├── config │ └── db.js ├── package.json └── server.js └── tictactoe ├── 2 └── tictactoe.html ├── 3 ├── style.css └── tictactoe.html ├── 4 ├── script.js ├── style.css └── tictactoe.html ├── 5 ├── script.js ├── style.css └── tictactoe.html ├── 6 ├── script.js ├── style.css └── tictactoe.html ├── 7 ├── script.js ├── style.css └── tictactoe.html └── improvements ├── script.js ├── style.css └── tictactoe.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/README.md -------------------------------------------------------------------------------- /chat/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/.gitignore -------------------------------------------------------------------------------- /chat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/README.md -------------------------------------------------------------------------------- /chat/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/package-lock.json -------------------------------------------------------------------------------- /chat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/package.json -------------------------------------------------------------------------------- /chat/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/public/favicon.ico -------------------------------------------------------------------------------- /chat/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/public/index.html -------------------------------------------------------------------------------- /chat/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/public/manifest.json -------------------------------------------------------------------------------- /chat/server/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/server/app.js -------------------------------------------------------------------------------- /chat/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/src/App.css -------------------------------------------------------------------------------- /chat/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/src/App.js -------------------------------------------------------------------------------- /chat/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/src/App.test.js -------------------------------------------------------------------------------- /chat/src/actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/src/actions/index.js -------------------------------------------------------------------------------- /chat/src/components/AddMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/src/components/AddMessage.js -------------------------------------------------------------------------------- /chat/src/components/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/src/components/Message.js -------------------------------------------------------------------------------- /chat/src/components/MessagesList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/src/components/MessagesList.js -------------------------------------------------------------------------------- /chat/src/components/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/src/components/Sidebar.js -------------------------------------------------------------------------------- /chat/src/constants/ActionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/src/constants/ActionTypes.js -------------------------------------------------------------------------------- /chat/src/containers/AddMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/src/containers/AddMessage.js -------------------------------------------------------------------------------- /chat/src/containers/MessagesList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/src/containers/MessagesList.js -------------------------------------------------------------------------------- /chat/src/containers/Sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/src/containers/Sidebar.js -------------------------------------------------------------------------------- /chat/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/src/index.css -------------------------------------------------------------------------------- /chat/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/src/index.js -------------------------------------------------------------------------------- /chat/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/src/logo.svg -------------------------------------------------------------------------------- /chat/src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/src/reducers/index.js -------------------------------------------------------------------------------- /chat/src/reducers/messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/src/reducers/messages.js -------------------------------------------------------------------------------- /chat/src/reducers/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/src/reducers/users.js -------------------------------------------------------------------------------- /chat/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/src/registerServiceWorker.js -------------------------------------------------------------------------------- /chat/src/sagas/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/src/sagas/index.js -------------------------------------------------------------------------------- /chat/src/sockets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/src/sockets/index.js -------------------------------------------------------------------------------- /chat/src/utils/name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/src/utils/name.js -------------------------------------------------------------------------------- /chat/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/chat/yarn.lock -------------------------------------------------------------------------------- /gameoflife/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/gameoflife/.gitignore -------------------------------------------------------------------------------- /gameoflife/README.md: -------------------------------------------------------------------------------- 1 | Code for Game of Life project. 2 | -------------------------------------------------------------------------------- /gameoflife/improvements/ES6 + more/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/gameoflife/improvements/ES6 + more/index.js -------------------------------------------------------------------------------- /gameoflife/improvements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/gameoflife/improvements/README.md -------------------------------------------------------------------------------- /gameoflife/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/gameoflife/package.json -------------------------------------------------------------------------------- /gameoflife/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/gameoflife/public/favicon.ico -------------------------------------------------------------------------------- /gameoflife/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/gameoflife/public/index.html -------------------------------------------------------------------------------- /gameoflife/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/gameoflife/public/manifest.json -------------------------------------------------------------------------------- /gameoflife/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/gameoflife/src/index.css -------------------------------------------------------------------------------- /gameoflife/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/gameoflife/src/index.js -------------------------------------------------------------------------------- /gameoflife/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/gameoflife/yarn.lock -------------------------------------------------------------------------------- /node-web-scraping/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/node-web-scraping/index.js -------------------------------------------------------------------------------- /node-web-scraping/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/node-web-scraping/package-lock.json -------------------------------------------------------------------------------- /notable/app/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/notable/app/routes/index.js -------------------------------------------------------------------------------- /notable/app/routes/note_routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/notable/app/routes/note_routes.js -------------------------------------------------------------------------------- /notable/config/db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/notable/config/db.js -------------------------------------------------------------------------------- /notable/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/notable/package.json -------------------------------------------------------------------------------- /notable/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/notable/server.js -------------------------------------------------------------------------------- /tictactoe/2/tictactoe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/tictactoe/2/tictactoe.html -------------------------------------------------------------------------------- /tictactoe/3/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/tictactoe/3/style.css -------------------------------------------------------------------------------- /tictactoe/3/tictactoe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/tictactoe/3/tictactoe.html -------------------------------------------------------------------------------- /tictactoe/4/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/tictactoe/4/script.js -------------------------------------------------------------------------------- /tictactoe/4/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/tictactoe/4/style.css -------------------------------------------------------------------------------- /tictactoe/4/tictactoe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/tictactoe/4/tictactoe.html -------------------------------------------------------------------------------- /tictactoe/5/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/tictactoe/5/script.js -------------------------------------------------------------------------------- /tictactoe/5/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/tictactoe/5/style.css -------------------------------------------------------------------------------- /tictactoe/5/tictactoe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/tictactoe/5/tictactoe.html -------------------------------------------------------------------------------- /tictactoe/6/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/tictactoe/6/script.js -------------------------------------------------------------------------------- /tictactoe/6/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/tictactoe/6/style.css -------------------------------------------------------------------------------- /tictactoe/6/tictactoe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/tictactoe/6/tictactoe.html -------------------------------------------------------------------------------- /tictactoe/7/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/tictactoe/7/script.js -------------------------------------------------------------------------------- /tictactoe/7/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/tictactoe/7/style.css -------------------------------------------------------------------------------- /tictactoe/7/tictactoe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/tictactoe/7/tictactoe.html -------------------------------------------------------------------------------- /tictactoe/improvements/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/tictactoe/improvements/script.js -------------------------------------------------------------------------------- /tictactoe/improvements/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/tictactoe/improvements/style.css -------------------------------------------------------------------------------- /tictactoe/improvements/tictactoe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beaucarnes/fcc-project-tutorials/HEAD/tictactoe/improvements/tictactoe.html --------------------------------------------------------------------------------