Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ms8909/master-python-for-data-science


https://github.com/ms8909/master-python-for-data-science

Last synced: 24 days ago
JSON representation

Awesome Lists containing this project

README

        

# DevNation-BatchJuly-WebDev-Python

## Labs

1. No Lab
2. May 17 Questions Online link: https://docs.google.com/document/d/1i0UXuJuymoZ1z30jYOgTw5Y7vxftNKld-GboqI1jpds/edit
3. May 19 Questions Online link: https://docs.google.com/document/d/1hVMeyFw-UukbRsAyXDAruxViC1J14ZB_yok5GS6WfPI/edit
4. May 21 Questions Online link: https://docs.google.com/document/d/1toDHvN7dcvI6nv2hEidJ3nuqIcjQRrN7WFqOogDVqGk/edit?usp=sharing
5. May 26 Questions Online link: https://docs.google.com/document/d/1S0R4HmcDzddYvPX2ZYUCUNiDDB2s1qmWcBZ4_dFIKxw/edit?usp=sharing
6. May 28 Questions Online link: https://docs.google.com/document/d/1tHmlUnwIdP8fxmdwWte_q1O9QOtslKBF1ZSh41h3MtI/edit?usp=sharing
7. May 31, June 4 Questions Online link: https://docs.google.com/document/d/1nsm0j8roYb70v7WDDGxaAkD_8oqbObLRD8uSdJDUXUw/edit?usp=sharing
8. June 7 Questons Online link: https://docs.google.com/document/d/1mOzT5XjomtPtdmbAgZnSfjCn5YSoYAVO-Ia6gt971tw/edit?usp=sharing
9. June 9 TEST instructions: https://docs.google.com/document/d/16KeCB8MGg4xMg6jtmI0gJ45c4dJwOp4rn3DCe3GbH0w/edit?usp=sharing
10. June 11 Hackerrank questions ( Go to Practice -> Problem Solving -> Algorithm )(https://www.hackerrank.com/domains/algorithms) [Solve first 5 questions]
11. June 14 Hackerrank questions ( Go to Practice -> Problem Solving -> Algorithm )(https://www.hackerrank.com/domains/algorithms) [Solve first 8 questions]
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]
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]
14. June 21. Watch this video https://www.youtube.com/watch?v=BcfGWi8Qywk and fix your Linedin Profile.
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]

# Command Prompt

### To create a new folder

```sh
mkdir foldername
```

### To change folder

```sh
cd foldername
```

### To go back in the folder
```sh
cd ../
```

### To view subfolders and files in the current folder

```sh
dir
```
In Mac OS
```sh
ls
```

# Git Commands

### To clone a repo
```sh
git clone REPO-LINK
```

### To check all branches
```sh
git branch

```

### To check our current branch
```sh
git branch
```

### To create a new branch (Only need to do this first time)
```sh
git checkout -b BRANCH-NAME
```

### To switch to another branch
```sh
git checkout BRANCH-NAME
```
### Create a folder with this format
```sh
[folder number][date]
```
```sh
2.June20
```
### Create a separate file for each question.
```sh
q1.py
```
```sh
q2.py
```

## To push your code on Github in your branch
```sh
git checkout BRANCH-NAME
```

```sh
git add .
```
```sh
git commit -m "ADD YOUR MESSAGE"
```
```sh
git push origin BRANCH-NAME
```