├── LICENSE ├── README.md ├── pending_topics.txt └── topics.txt /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 Neetish Raj 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Full stack developer training 2 | 3 | This repo is a collection of programming notes created during my full stack training classes with MERN stack. 4 | 5 | ## Usage 6 | This repo is intended for my students for quick-reference. All the daily sessions are captured date-wise by creating a separate branch. Just click the branch dropdown and select them to get the notes on that day or select from the links shown below. 7 | 8 | ### Topic wise links 9 | 10 | 11 | 12 | ##### CSS 13 | - [7-Jul-CSS-Part-1-Box-Model-Display-Position] 14 | - [8-Jul-CSS-Part-2-Selectors-Image-CSS] 15 | - [12-Jul-CSS-Part-3-Image-CSS-And-Flexbox] 16 | - [14-Jul-CSS-Part-4-Responsive-CSS-Units-Media-Queries] 17 | - [15-Jul-CSS-Part-5-Transform-Transition-Animations] 18 | - [16-Jul-CSS-Part-6-CSS-Demos] 19 | - [18-Jul-CSS-Part-7-Grid-And-Bootstrap] 20 | 21 | ##### Git and Github 22 | - [19-Jul-Git-Github-And-Open-Source-Contribution] 23 | 24 | ##### JavaScript 25 | - [20-Jul-JS-Part-1-Intro-History-Var-Let-Const] 26 | - [22-Jul-JS-Part-2-Functions] 27 | - [27-Jul-JS-Part-3-Call-Stack-Higher-Order-Functions] 28 | - [28-Jul-JS-Part-4-Data-Types] 29 | - [29-Jul-JS-Part-5-Closures] 30 | - [1-Aug-JS-Part-6-Arrays] 31 | - [4-Aug-JS-Part-7-Objects] 32 | - [5-Aug-JS-Part-8-Prototype-Inheritance-OOPS] 33 | - [17-Aug-JS-Part-10-BOM] 34 | - [18-Aug-JS-Part-11-DOM-Basics-And-Selectors] 35 | - [19-Aug-JS-Part-12-DOM-Events] 36 | - [JS-In-Class-Assignments-1] 37 | - [23-Aug-JS-Part-13-Events-Bubble-Capture-Delegation] 38 | - [25-Aug-JS-Part-14-Async-Callback-Promise] 39 | - [JS-In-Class-Assignments-2] 40 | - [29-Aug-JS-Part-15-try-catch-async-await] 41 | - [31-Aug-Part-16-ES6] 42 | - [2-Sep-JS-Part-17-ES6-Continued-Class] 43 | - [6-Sep-Advanced-JS-Part-1] 44 | - [8-Sep-Advanced-JS-Part-2] 45 | - [13-Sep-JS-Projects] 46 | ##### React 47 | - [19-Sep-React-1-Intro] 48 | - [20-Sep-React-2-Components-Concept] 49 | 50 | [//]: # 51 | [7-Jul-CSS-Part-1-Box-Model-Display-Position]: 52 | [8-Jul-CSS-Part-2-Selectors-Image-CSS]: 53 | [12-Jul-CSS-Part-3-Image-CSS-And-Flexbox]: 54 | [14-Jul-CSS-Part-4-Responsive-CSS-Units-Media-Queries]: 55 | [15-Jul-CSS-Part-5-Transform-Transition-Animations]: 56 | [16-Jul-CSS-Part-6-CSS-Demos]: 57 | [18-Jul-CSS-Part-7-Grid-And-Bootstrap]: 58 | [19-Jul-Git-Github-And-Open-Source-Contribution]: 59 | [20-Jul-JS-Part-1-Intro-History-Var-Let-Const]: 60 | [22-Jul-JS-Part-2-Functions]: 61 | [27-Jul-JS-Part-3-Call-Stack-Higher-Order-Functions]: 62 | [28-Jul-JS-Part-4-Data-Types]: 63 | [29-Jul-JS-Part-5-Closures]: 64 | [1-Aug-JS-Part-6-Arrays]: 65 | [4-Aug-JS-Part-7-Objects]: 66 | [5-Aug-JS-Part-8-Prototype-Inheritance-OOPS]: 67 | [10-Aug-JS-Part-9-Math-String-Date]: 68 | [17-Aug-JS-Part-10-BOM]: 69 | [18-Aug-JS-Part-11-DOM-Basics-And-Selectors]: 70 | 71 | [19-Aug-JS-Part-12-DOM-Events]: 72 | [JS-In-Class-Assignments-1]: 73 | [23-Aug-JS-Part-13-Events-Bubble-Capture-Delegation]: 74 | [25-Aug-JS-Part-14-Async-Callback-Promise]: 75 | [JS-In-Class-Assignments-2]: 76 | [29-Aug-JS-Part-15-try-catch-async-await]: 77 | [31-Aug-Part-16-ES6]: 78 | [2-Sep-JS-Part-17-ES6-Continued-Class]: 79 | [6-Sep-Advanced-JS-Part-1]: 80 | [8-Sep-Advanced-JS-Part-2]: https://github.com/NeetishRaj/dreamers_batch/tree/8-Sep-Advanced-JS-Part-2 81 | [13-Sep-JS-Projects]: https://github.com/NeetishRaj/dreamers_batch/tree/13-Sep-JS-Projects 82 | [19-Sep-React-1-Intro]: https://github.com/NeetishRaj/dreamers_batch/tree/19-Sep-React-1-Intro 83 | [20-Sep-React-2-Components-Concept]: https://github.com/NeetishRaj/dreamers_batch/tree/20-Sep-React-2-Components-Concept 84 | 85 | 86 | -------------------------------------------------------------------------------- /pending_topics.txt: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /topics.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NeetishRaj/dreamers_batch/2627de2964d163e69b02a06e7aa85486d3e7c01b/topics.txt --------------------------------------------------------------------------------