└── README.md /README.md: -------------------------------------------------------------------------------- 1 | # DevNation-BatchJuly-WebDev-Python 2 | 3 | ## Labs 4 | 5 | 1. No Lab 6 | 2. May 17 Questions Online link: https://docs.google.com/document/d/1i0UXuJuymoZ1z30jYOgTw5Y7vxftNKld-GboqI1jpds/edit 7 | 3. May 19 Questions Online link: https://docs.google.com/document/d/1hVMeyFw-UukbRsAyXDAruxViC1J14ZB_yok5GS6WfPI/edit 8 | 4. May 21 Questions Online link: https://docs.google.com/document/d/1toDHvN7dcvI6nv2hEidJ3nuqIcjQRrN7WFqOogDVqGk/edit?usp=sharing 9 | 5. May 26 Questions Online link: https://docs.google.com/document/d/1S0R4HmcDzddYvPX2ZYUCUNiDDB2s1qmWcBZ4_dFIKxw/edit?usp=sharing 10 | 6. May 28 Questions Online link: https://docs.google.com/document/d/1tHmlUnwIdP8fxmdwWte_q1O9QOtslKBF1ZSh41h3MtI/edit?usp=sharing 11 | 7. May 31, June 4 Questions Online link: https://docs.google.com/document/d/1nsm0j8roYb70v7WDDGxaAkD_8oqbObLRD8uSdJDUXUw/edit?usp=sharing 12 | 8. June 7 Questons Online link: https://docs.google.com/document/d/1mOzT5XjomtPtdmbAgZnSfjCn5YSoYAVO-Ia6gt971tw/edit?usp=sharing 13 | 9. June 9 TEST instructions: https://docs.google.com/document/d/16KeCB8MGg4xMg6jtmI0gJ45c4dJwOp4rn3DCe3GbH0w/edit?usp=sharing 14 | 10. June 11 Hackerrank questions ( Go to Practice -> Problem Solving -> Algorithm )(https://www.hackerrank.com/domains/algorithms) [Solve first 5 questions] 15 | 11. June 14 Hackerrank questions ( Go to Practice -> Problem Solving -> Algorithm )(https://www.hackerrank.com/domains/algorithms) [Solve first 8 questions] 16 | 12. June 16 Hackerrank questions ( Go to Practice -> Problem Solving -> Algorithm )(https://www.hackerrank.com/domains/algorithms) [Solve first 13 questions] [Apple and Oranges, Number Line Jumps, Between two sets, Breaking the record, Subarray Division] 17 | 13. June 18 Hackerrank questions ( Go to Practice -> Problem Solving -> Algorithm )(https://www.hackerrank.com/domains/algorithms) [Solve first 16 questions] [Divisible Sum Pairs, Migratory Birds, Day of the Programmer] 18 | 14. June 21. Watch this video https://www.youtube.com/watch?v=BcfGWi8Qywk and fix your Linedin Profile. 19 | 15. June 21 Hackerrank questions ( Go to Practice -> Problem Solving -> Algorithm )(https://www.hackerrank.com/domains/algorithms) [Solve first 16 questions] [Bill Division, Sales by Match, Drawing book, Counting Valleys, Electronics Shop] 20 | 21 | 22 | 23 | # Command Prompt 24 | 25 | ### To create a new folder 26 | 27 | 28 | ```sh 29 | mkdir foldername 30 | ``` 31 | 32 | ### To change folder 33 | 34 | ```sh 35 | cd foldername 36 | ``` 37 | 38 | 39 | ### To go back in the folder 40 | ```sh 41 | cd ../ 42 | ``` 43 | 44 | 45 | ### To view subfolders and files in the current folder 46 | 47 | ```sh 48 | dir 49 | ``` 50 | In Mac OS 51 | ```sh 52 | ls 53 | ``` 54 | 55 | 56 | # Git Commands 57 | 58 | ### To clone a repo 59 | ```sh 60 | git clone REPO-LINK 61 | ``` 62 | 63 | 64 | ### To check all branches 65 | ```sh 66 | git branch 67 | 68 | ``` 69 | 70 | ### To check our current branch 71 | ```sh 72 | git branch 73 | ``` 74 | 75 | 76 | ### To create a new branch (Only need to do this first time) 77 | ```sh 78 | git checkout -b BRANCH-NAME 79 | ``` 80 | 81 | 82 | ### To switch to another branch 83 | ```sh 84 | git checkout BRANCH-NAME 85 | ``` 86 | ### Create a folder with this format 87 | ```sh 88 | [folder number][date] 89 | ``` 90 | ```sh 91 | 2.June20 92 | ``` 93 | ### Create a separate file for each question. 94 | ```sh 95 | q1.py 96 | ``` 97 | ```sh 98 | q2.py 99 | ``` 100 | 101 | ## To push your code on Github in your branch 102 | ```sh 103 | git checkout BRANCH-NAME 104 | ``` 105 | 106 | ```sh 107 | git add . 108 | ``` 109 | ```sh 110 | git commit -m "ADD YOUR MESSAGE" 111 | ``` 112 | ```sh 113 | git push origin BRANCH-NAME 114 | ``` 115 | 116 | 117 | 118 | 119 | --------------------------------------------------------------------------------