├── .github └── workflows │ └── mdToHtml.yaml ├── Markdown ├── ASBD.md ├── CA.md ├── CN.md ├── DIP.md ├── ES.md ├── HCI.md ├── OS.md └── PR.md ├── README.md ├── docs ├── ASBD.html ├── ASBD.pdf ├── CA.html ├── CA.pdf ├── CN.html ├── CN.pdf ├── DIP.html ├── DIP.pdf ├── ES.html ├── ES.pdf ├── HCI.html ├── HCI.pdf ├── OS.html ├── OS.pdf ├── PR.html └── PR.pdf └── url_changer.py /.github/workflows/mdToHtml.yaml: -------------------------------------------------------------------------------- 1 | name: Docs to PDF/HTML 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | 8 | jobs: 9 | converttopdf: 10 | name: Build PDF/HTML 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/checkout@v2 14 | - uses: actions/setup-python@v2 15 | with: 16 | python-version: '3.x' 17 | - run: python url_changer.py 18 | - uses: baileyjm02/markdown-to-pdf@v1 19 | with: 20 | input_dir: Markdown 21 | output_dir: docs 22 | build_html: true 23 | - name: update file and push to remote 24 | run: | 25 | git config --global user.name "Conversion bot" 26 | git config --global user.email "conversion@bot.com" 27 | 28 | git add -A 29 | git commit -m "Converting to pdf and html" 30 | git push 31 | -------------------------------------------------------------------------------- /Markdown/ASBD.md: -------------------------------------------------------------------------------- 1 | # Analytics and Systems of Big data 2 | ## Faculty - Dr. Sivaselvan B 3 | 4 | |Lecture |Topic |PDF|Video| 5 | |---|---|---|---| 6 | | Lec 1 6/1| Overview and Eval pattern| [Slides](https://drive.google.com/file/d/11EJ6P43_0_aAuAyZdz2lM4wWXfJrC9cz/view)| [Lecture](https://drive.google.com/file/d/1eBfzOTXIhFgP9Yr3J_Yf_suRCV8Z_ljY/view)| 7 | | Lec 2 7/1|Introduction | [Slides](https://drive.google.com/file/d/1Nz8ob307KTyR1Deg0nlisyy3_yAK6Lwz/view)| [Lecture](https://drive.google.com/file/d/1UpmAfqrVFcgnntBC7dMmxO9fcFmoptjQ/view)| 8 | | Lec 3 8/1| Applications | [Slides](https://drive.google.com/file/d/1TD35xW0QBxdYSTBBsfC8UyyRXDw1YMVY/view)| [Lecture](https://drive.google.com/file/d/1GJwNYnO_k4HvxboFu7rnEchB4EYOI4Fq/view)| 9 | | Lec 4 13/1| Intro to Data Analytics | [Slides](https://drive.google.com/file/d/13Xi4i_guUxuES83mR5szX9UCjtV_W3PQ/view)| [Lecture](https://drive.google.com/file/d/1e2-c4wF7Le76ixAjMfN6FBiWa5tKocrB/view)| 10 | | Lec 5 15/1|Descriptive Stats and Data Representation Mechanisms | [Slides](https://drive.google.com/file/d/1NMK5SgXyh6gAfTJVrIs-M5EgsUFT3PNX/view)| [Lecture](https://drive.google.com/file/d/1MVvowtjE-CovFsBKqRbhVC111p_6KVrm/view)| 11 | | Lec 6 20/1|Dot, Stem-leaf & Box Plots | [Slides](https://drive.google.com/file/d/1Rgj_osyO92Nb_Qz7JmfOlxnZDWVxbZBw/view)| [Lecture](https://drive.google.com/file/d/1ZlU_aCAtlD0ywnVlqg1Xe-pu250qWw6s/view)| 12 | | Lec 7 21/1|Boxplot Interpretation | [Slides](https://drive.google.com/file/d/1-fRTTmcwciKYtJT7BwliZz0GkrKVg0JA/view)| [Lecture](https://drive.google.com/file/d/1s9d1RoFloP4XeH7B6Qaa_3Ate24pmZN_/view)| 13 | | Lec 8 22/1|KDD Phases | [Slides](https://drive.google.com/file/d/1HIH0F4WkUqUr9QZ_VpwvFJGDiVN63ctX/view)| [Lecture](https://drive.google.com/file/d/1tF4XBkIyN71z5m77CAwYzH7hDfQ6FKCw/view)| 14 | | Lec 9 27/1|Data Preprocessing | [Slides](https://drive.google.com/file/d/1yHUrt4uVEsNOSxVItdGNgLwhHd4TzGJB/view)| [Lecture](https://drive.google.com/file/d/1Y0wtHJ3YqQkfNvrVbRf2sIez1ng10tkJ/view)| 15 | | Lec 10 28/1| ARM| [Slides](https://drive.google.com/file/d/1f2s0lsitUTXxWWliZI4o64wmGs-vV45j/view)| [Lecture](https://drive.google.com/file/d/1XQOivC9R4H-Q_o9yyDcxtHnn9Fbssp0G/view)| 16 | | Lec 11 29/1| FPM Apriori| [Slides](https://drive.google.com/file/d/13W0ATRoMAMgHVktsTGy2CFrgn5zoUsvM/view)| [Lecture](https://drive.google.com/file/d/1JvPnmXHp9c0VdQ3OVYzyaGCivbw5dxJj/view)| 17 | | Lec 12 3/2|FPM Apriori 2 |[Slides](https://drive.google.com/file/d/16QWkYK17wSlNyAfjIfao3afnAEbTey-4/view)|[Lecture](https://drive.google.com/file/d/1oNZs3fPFYNaX5XfWyHuzNcexhu09q0Lj/view)| 18 | |Lec 13 4/2|FPM Apriori 3 |[Slides](https://drive.google.com/file/d/1Fh--9RtFaYp2ZARmFo_v_cq9Dt3LdpUk/view)|[Lecture](https://drive.google.com/file/d/1Y083bi6AA7M8lpdpT25MzrpJ2AqyE1ch/view)| 19 | |Lec 14 5/2|FP growth |[Slides](https://drive.google.com/file/d/1F6et7G-GCQ-KuH5pZ2lgHODjTwEZA3M-/view)|[Lecture](https://drive.google.com/file/d/19ZgHp3IfWSw0QcE-Z2E_Ok2zpOOTTxdM/view)| 20 | |Lec 15 10/2|FP-Trace I |[Slides](https://drive.google.com/file/d/1vsHtKemxmf2GCBSVCDcJOfG_ZlAd6XCX/view)|[Lecture](https://drive.google.com/file/d/1oVClgye0yQGveyoxGksSTNJZE07u7oUZ/view)| 21 | |Lec 16 11/2|FP-Trace II|[Slides](https://drive.google.com/file/d/1NDavIZVD5gc7rvbd3QAtQn0nOijfy-8T/view)|[Lecture](https://drive.google.com/file/d/1DfWpv0IklCZBHUChTQyiKfGFT3AUvK2C/view)| 22 | |Lec 17 12/2|DIC |[Slides](https://drive.google.com/file/d/1T_ElinaL1QCR2TQCbABPxJPEIO5i5Ljs/view)|[Lecture](https://drive.google.com/file/d/1JVm5jlt508NWlqUjZC9o__EIA2-6hJEs/view)| 23 | |Lec 18 17/2|DIC and DHP |[Slides](https://drive.google.com/file/d/1ZDu1eqAlaE7mEsDf-bqeolvqfhSgksFA/view)|[Lecture](https://drive.google.com/file/d/13MvPtbqj8OyUFY6ik3ilnHIKiUwAh0pr/view)| 24 | |Lec 19 18/2|Apriori Transaction Reduction and CFI,MFI |[Slides](https://drive.google.com/file/d/1q68uXjMaKMnmsxzlfQFbC16m42Wwk6dg/view)|[Lecture](https://drive.google.com/file/d/1swTKLtOiNsppjBgAQMTOq97GkbkmRqSv/view)| 25 | |Lec 20 19/2| Vertical Transaction Reduction|[Slides](https://drive.google.com/file/d/1lieREgQNKcjYedbUv74_kMbzKBB-ExD7/view)|[Lecture](https://drive.google.com/file/d/1VDq8IB6W2POCbmwkayAv8BzAONN3nFPj/view)| 26 | |Lec 21 24/2|CFI-Aclose Intro |[Slides](https://drive.google.com/file/d/1wo5uWS761em3_BRPmyJ0bA7RAGPMcoUP/view)|[Lecture](https://drive.google.com/file/d/1bTXvTty2NtuX4ZrNFI8kgi8SYM2mCI8k/view)| 27 | |Lec 22 25/2 |Aclose & Pincer |[Slides](https://drive.google.com/file/d/1EOQ82HhDynpEZ5dPNXL9solllJrfviCW/view)|[Lecture](https://drive.google.com/file/d/1ipSg96Yye-pj_-G8VorcKRy450fN_eZ6/view)| 28 | |Lec 23 26/2|Data Classification |[Slides](https://drive.google.com/file/d/19Rtjl0jMSttpywQ9mPUWVPPojI2bOqDJ/view)|[Lecture](https://drive.google.com/file/d/1mVbphmxpzScqLvr3Ee_WPxdCsvS756DS/view)| 29 | |Lec 24 10/3|Decision Tree Induction |[Slides](https://drive.google.com/file/d/17crzmopZQ6lFSU_KrDd0hQmZ1atqXDPW/view)|[Lecture](https://drive.google.com/file/d/1-KN6EEoGlVhcDHE3EgO9rV5b4JceJIQU/view)| 30 | |Lec 25 11/3|Decision Tree II |[Slides](https://drive.google.com/file/d/1JWdfWe56MsvCCsdYUKuHxEQHtvbKAkV-/view)|[Lecture](https://drive.google.com/file/d/1I1k099UOvvnIcmqzGk6-T8jVMbQ8wum3/view)| 31 | |Lec 26 12/3|Classifier Evaluation Measures |[Slides](https://drive.google.com/file/d/1hh0eBb-CJ7j4W_i-b00e0pYSOSDrcvlc/view)|[Lecture](https://drive.google.com/file/d/1bfE0eTeQDBDzlqQHe9vTK9BRtTXEUaz7/view)| 32 | |Lec 27 15/3|NBC |[Slides](https://drive.google.com/file/d/1pUyfRLvARvsskithu5iVZ1dZgK2IkG6X/view)|[Lecture](https://drive.google.com/file/d/1muJyMwaxFKS42g4T7roX1rRsxY5aul7A/view)| 33 | |Lec 28 17/3|NBC Laplacian Correction & GA Intro |[Slides](https://drive.google.com/file/d/1JDBPoknT5jkffStcFBbc7oRydiz-_F4n/view)|[Lecture](https://drive.google.com/file/d/1C6n3a9oOZm64-oAbV8WTGotLNbpW0XsG/view)| 34 | |Lec 29 18/3|GA |[Slides](https://drive.google.com/file/d/1ZWEVxKX1Izy2sxwOgIxwRi0JVrC4_XMK/view)|[Lecture](https://drive.google.com/file/d/1KSo7qjo2up46-jBKu0cBc6RYYLjGR0J0/view)| 35 | |Lec 30 19/3|Big data & Hadoop |[Slides](https://drive.google.com/file/d/1g_YeiypuUt-sh3XvOsF37K7BAThk2LvP/view)|[Lecture](https://drive.google.com/file/d/1BCSKuKYPBhcq-ZxSORzNRr_539G9bhOS/view)| 36 | |Lec 31 24/3| GA |[Slides](https://drive.google.com/file/d/1fLdBveqdeE3rYMuON1uN8QGefTmbDbMD/view)|[Lecture](https://drive.google.com/file/d/1tz0fX9RdC_QksJCP_iXgd5hwoXfk39_c/view)| 37 | |Lec 32 25/3|GA Schema theorem |[Slides](https://drive.google.com/file/d/1QI9ACHzTAHJWBPZo3bL1Ox7ofNIgJpdJ/view)|[Lecture](https://drive.google.com/file/d/1RLFm942yFUgNCqlgNuEGAnbJjCmtBknl/view)| 38 | |Lec 33 26/3|GA |[Slides](https://drive.google.com/file/d/1Dl23jQRsz5Byim1fr_fA0-SAtV_qApIh/view)|[Lecture](https://drive.google.com/file/d/1rSTz6J4AwsMl4JmsN8wAIuaMeu6msmLB/view)| 39 | |Lec 34 31/03|Bucket Brigade Classifier |[Slides](https://drive.google.com/file/d/1MohLgeG8mDefTWb0Obtwu9D5S9opFzxW/view)|[Lecture](https://drive.google.com/file/d/1_uX_RX0YbNJSF4vrSQCQb94wW9B6kZ61/view)| 40 | |Lec 35 01/04|BBC and Spark intro |[Slides](https://drive.google.com/file/d/17yCqPG185nAxYsfWI73VdQFEmwfe6lUH/view)|[Lecture](https://drive.google.com/file/d/1_yKg_P5jHKB4q2w9dnLvC1QF1H3KdIZB/view)| 41 | |Lec 36 07/04|NN |[Slides](https://drive.google.com/file/d/1XAVELmZkIY4X5vUptGpUywt2LBQLfvho/view)|[Lecture](https://drive.google.com/file/d/1imUg8AAACjI0d6eSP9sSy3odHAA9HH5p/view)| 42 | |Lec 37 08/04|NN-Logic gates |[Slides](https://drive.google.com/file/d/1V2cCJihbtc6-8yV5H4OrmbvXGHsYVgcL/view)|[Lecture](https://drive.google.com/file/d/1U909JgoTXZcx6zQDSXH1oCF-osvHAT5c/view)| 43 | |Lec 38 09/04|Spark Programming |[Slides](https://drive.google.com/file/d/1X73-W44CSZswM6xvmmty_Pxtx5emR3YX/view)|[Lecture](https://drive.google.com/file/d/1vGvTVu8Mw01n9H5DBWIxr_djXVEkfiao/view)| 44 | |Lec 39 13/04|NN- BackProp|[Slides](https://drive.google.com/file/d/1VcbBbYTKFitohP4nek6Nxgg5Df2PyoO7/view)|[Lecture](https://drive.google.com/file/d/1qrBJvRoCTW0Kk8NA-suofVPEuc0Lqeo3/view)| 45 | |Lec 40 15/04|Clustering K-Means |[Slides](https://drive.google.com/file/d/1z3Rs26oi0SMHa7c8TeCdTDDYnRAPrwn2/view)|[Lecture](https://drive.google.com/file/d/1llOEP-pyu9MErUHKSgJ0H-ZIcZzAGus7/view)| 46 | |Lec 41 16/04|Hierarchial Clustering |[Slides](https://drive.google.com/file/d/1u2zTonNGyt6z8Yyl5CnzbG6x66nARpmG/view)|[Lecture](https://drive.google.com/file/d/1UYSDsHG8GErWXLsAXuzxmv7bXEmwwGWr/view)| 47 | |Lec 42 21/04|Distance Measures |[Slides](https://drive.google.com/file/d/1UxrJE_Pklc2ojsrIzlJethVczwtYEdpk/view)|[Lecture](https://drive.google.com/file/d/1vMmkrSEKLJ2Q5tWgRfM3byoQ5afzu1zN/view)| 48 | |Lec 43 22/04|DBScan and LSH |[Slides](https://drive.google.com/file/d/1Dg-yfoL7rBxUHNoNwhfmj4Ae6XgEJpF8/view)|[Lecture](https://drive.google.com/file/d/1xhlYTed6mdyi2DkUs2kNo5PM7VhgYe9G/view)| 49 | 50 | 51 | ## Useful links: 52 | 53 | - Mining massive datasets (course+book) - [http://www.mmds.org/](http://www.mmds.org/) 54 | - For apriori trace - [link](https://www.youtube.com/watch?v=h_l3b2CIQ_o&list=PLYT7YDstBQmE50voZ81eLS0hz2gUdZJwp&index=6&ab_channel=CSEGURUS) 55 | - For FP-Growth trace - [link](https://www.youtube.com/watch?v=VB8KWm8MXss) 56 | - For Hadoop - refer [Installation steps](https://drive.google.com/open?id=1aKEUzB700kWvH9acmziNKUNnBNOPRm-E&authuser=0) [Example file](https://drive.google.com/open?id=1oV9Xe91lUltXg4nmu4mQbqHRNIOG6P81&authuser=0) 57 | - Evolutionary algo [link](https://drive.google.com/open?id=17COxlVYBVavNNyLQFlO7QEpEXH1hUx_d&authuser=0) 58 | - Hybrid Decision Tree gen [link](https://drive.google.com/open?id=1zeC8SFVe1Fnl-4GirDvJQQuuVrHz0KaZ&authuser=0) 59 | - Spark Prog [Installation](https://drive.google.com/open?id=1tFbiSH8VDw0dh7q_Te2QopwAxnPoQdKG&authuser=0) [Example](https://drive.google.com/open?id=1OmQLZxMiDvBmvTAlN8UXOqf8YX0qLKvB&authuser=0) 60 | 63 | -------------------------------------------------------------------------------- /Markdown/CA.md: -------------------------------------------------------------------------------- 1 | # COMPUTER ARCHITECTURE 2 | 3 | ## Faculty - Dr. Noor Mahammad SK 4 | 5 | ### Schedule 6 | - Monday 2.00 - 2.50 pm 7 | - Tuesday 12.00 - 12.50 pm 8 | - Thursday 11.00 - 11.50 am 9 | 10 | [Textbook](https://drive.google.com/file/d/18avYCG7UsnDsKBb2IszoQ5yp7rIaxsXe/view) 11 | 12 | |Lecture |Topic |PDF|Video| 13 | |---|---|---|---| 14 | | Lec 1 |Intro and fundamentals of computer design | [Slides](https://drive.google.com/file/d/1eSNxtQAbrjhxjjOjvq4QGAAwtaa18nJH/view) | [Lecture](https://drive.google.com/file/d/1LkrOStJJeoOQ9Ewsl4S3NKCYboicG-As/view) | 15 | | Lec 2 |Fundamentals of computer design | | [Lecture](https://drive.google.com/file/d/1v7YzVZs8LRu0ztEQZJQa7SdEc6sjUrAo/view) | 16 | | Lec 3 || | [Lecture](https://drive.google.com/file/d/1UrPQNixi66eAwCXz30APWk_k6QzpxrGd/view) | 17 | | Lec 4 | | | [Lecture](https://drive.google.com/file/d/1sQXrVUvnrZ4zUHIbtVQhcmIEl8_-yqx6/view) | 18 | | Lec 5 | | | [Lecture](https://drive.google.com/file/d/1VpYU1GjzeM36EucapkZU4mAZ7_nbF3sh/view) | 19 | | Lec 6 |Review of ISA and pipelines| [Slides](https://drive.google.com/file/d/1oC_O0LUF2z9PpPXb48-cZ4P97JO7G082/view) | [Lecture](https://drive.google.com/file/d/1OAdMz6mrXETth49q_F9fUs809IqUTI9-/view) | 20 | | Lec 7 | | | [Lecture](https://drive.google.com/file/d/1rc-BrJnSH6viyyo7FE4XeBrRmFUn8BXu/view) | 21 | | Lec 8 | | | [Lecture](https://drive.google.com/file/d/19vZ-bnxlCQ1iHvfHkBbNvFGgTDpvFu-N/view) | 22 | | Lec 9 | | | [Lecture](https://drive.google.com/file/d/1t_2UQS66Du_oEWiDD-0tx00t_mupgWFX/view) | 23 | | Lec 10 |Advanced ILP | [Slides](https://drive.google.com/file/d/1iXmGBhLPb3I_V69L3brgFqd9Jn7oAGuZ/view) | [Lecture](https://drive.google.com/file/d/1J3HkGY0oy-QOmfk0gKT4mO6NhIRnK-Bj/view) | 24 | | Lec 11 (1/2/21)| | | [Lecture](https://drive.google.com/file/d/1OssjxKNycoaXG-_zdYSfcY1O-yFaDOF7/view) | 25 | | Lec 12 (2/2/21)| || [Lecture](https://drive.google.com/file/d/1xSPrcZQJ5ZA4ZCHUngaBC7LhbtM6n2xH/view) | 26 | | Lec 13 (4/2/21)| || [Lecture](https://drive.google.com/file/d/192Nj671-SPNn8ILuKIO3SY0uo-m_Why4/view) | 27 | | Lec 14 (8/2/21)| || [Lecture](https://drive.google.com/file/d/1QDQkRaxg385YOUVnE9s1OGe8q8yrGj2s/view) | 28 | | Lec 15 (9/2/21)| || [Lecture](https://drive.google.com/file/d/11mBKTWwCSvG4QbWRzDWbkOSYYsvGZ5Uk/view) | 29 | | Lec 16 (11/2/21)| || [Lecture](https://drive.google.com/file/d/1N7bYh3B_NQ58N3dSsj4r6YaY_8EWi9o8/view) | 30 | | Lec 17 (15/2/21)| || [Lecture](https://drive.google.com/file/d/1Uz63nNtield_868-YBTn0cCeDnjVx8IG/view) | 31 | | Lec 18 (16/2/21)|Logic unit design(Exp-9) || [Lecture](https://drive.google.com/file/d/1wOxvDJYJjUBxL0XRL9REt0qPiFlSEfDJ/view) | 32 | 33 | -------------------------------------------------------------------------------- /Markdown/CN.md: -------------------------------------------------------------------------------- 1 | # Computer Networks 2 | 3 | ## Faculty - Dr. Munesh Singh 4 | 5 | |Lecture |Topic |PDF|Video| 6 | |---|---|---|---| 7 | |Lec 1 | Intro |[Slides](https://drive.google.com/file/d/1jYADMqUI_L2_qc6oqIfBDk3kAfZFOlQr/view)|[Lecture 1](https://drive.google.com/file/d/1ot_QEq2oLC0xoXd7p24Dfvp0yF5tzyc4/view)| 8 | |Lec 2 | Computer Network Devices and Media |[Slides](https://drive.google.com/file/d/19I0ZLhV410WhfUVEyKD5DrbklN0ddxUb/view)|[Lecture 2](https://drive.google.com/file/d/1hlFhHPS1o5ZayPivMo1zIG2ySUfUQMPn/view)| 9 | |Lec 3 |Computer Network Devices |[Slides](https://drive.google.com/file/d/1YMDuqfcEBg_1_y8iapo_gxterQ0YztZ1/view)|[Lecture 3](https://drive.google.com/file/d/1W6aHHR4Sr03K_SnE-9CPjnu82G-Kl1-y/view)| 10 | |Lec 3- II| ""| "" |[Lecture 3-II](https://drive.google.com/file/d/1NNMLmifDdvho1pJ5nqYrBpW-rxq-iSPF/view)| 11 | |Lec 4 | Open system Interconnection (OSI) |[Slides](https://drive.google.com/file/d/1g9L4oKtIxoJFMLU2wYhASo4e5Un9lnXi/view)|[Lecture 4](https://drive.google.com/file/d/1SaBW5EbUYnfGIB_R336C1dWjdqAIoVDP/view)| 12 | |Lec 5 | OSI physical layer |[Slides](https://drive.google.com/file/d/1NGU8kdsjxjLHjxM_yCImKmJTE9K2Obwh/view)|[Lecture 5](https://drive.google.com/file/d/1DUid1nCbmifzT-l9PRPu0vaBs1u_CkYY/view)| 13 | |Lec 6 | OSI physical layer |[Slides](https://drive.google.com/file/d/1CRSxEcHD0_O15ZpYlzQV6hoA2Nihjjhh/view)|[Lecture 6](https://drive.google.com/file/d/10imkgTSWjKpCx4Qi_rMPxqhtd4bi5RI4/view)| 14 | |Lec 7 |Physical Layer Transmission Impairment & Performance Metrics |[Slides](https://drive.google.com/file/d/1asovMJX8bt20Gd9QHA2VnW6l3g-w3C5S/view)|[Lecture 7](https://drive.google.com/file/d/1uNoHUtK1r1cdG4F33hRhX0NOitTkh78_/view)| 15 | |Lec 7-II | "" |""|[Lecture 7-II](https://drive.google.com/file/d/1GUB-dYndUy468OOS_iC1BgyrhBQgOXEn/view)| 16 | |Lec 8| Digital to Digital Conversion or Line Coding|[Slides](https://drive.google.com/file/d/1gkX7zMxwqlnxMFTp1kB6G5Akn1EINk0A/view)|[Lecture 8](https://drive.google.com/file/d/1NbLOsacNlcjusdtoKsEIr6z6c-MmD50M/view)| 17 | |Lec 9 | Transmission Modes |[Slides](https://drive.google.com/file/d/1qVsWYchd0Neloyd5gtjmuEHgK_4qt4pq/view)|[Lecture 9](https://drive.google.com/file/d/1QfcQonxo2VGrhNBuZbbjd-iV-_zsZsGr/view)| 18 | |Lec 10| Bandwidth Utilization: Multiplexing and Spreading |[Slides](https://drive.google.com/file/d/1yEE5-bb5c1q2xvBnvy4FdoTijdC_Yb4f/view)|[Lecture 10](https://drive.google.com/file/d/1PQGmfl0jsmj4Hzm3n0YKxOWqYTMYe3XK/view)| 19 | |Lec 11 | DataLink Layer , Flow Control , Stop and wait |[Slides](https://drive.google.com/file/d/1QUjVu77oHZ4063_hUJT0gEwfNOCpqV4P/view)|[Lecture 11](https://drive.google.com/file/d/1HXPrLO44cNwB9FvWRvndOqKa_1rnETw5/view)| 20 | |Lec 12 | Flow control , Stop and Wait ARQ |[Slides](https://drive.google.com/file/d/1dQqpwHncmK2lQsToBozimG2jFp4FeEm6/view)|[Lecture 12](https://drive.google.com/file/d/1fbxyUHF12T0rKQMYKC-F-1vEhkR9oINR/view)| 21 | |Lec 13| Problems on Stop and Wait |[Slides](https://drive.google.com/file/d/1ToYpD7qS_4fmTgUEd7AMNm8YP0V_4KAv/view)|[Lecture 13](https://drive.google.com/file/d/1EGaP--BkOLhoM_0EKXWEE4w-7h7GTvIN/view)| 22 | |Lec 14 | Sliding Window and problems |[Slides](https://drive.google.com/file/d/1ThrhHnTrsNrLJTvh9MCnwojZ-dMyzZJ1/view)|[Lecture 14](https://drive.google.com/file/d/1VX0t_geUspBaP7uoF-BYBUIXwS6NgCpB/view)| 23 | |Lec 15 | Go Back N and problems |[Slides](https://drive.google.com/file/d/1FXT-O-UcjFXEQERQoNAclwtfhlJgJCvv/view)|[Lecture 15](https://drive.google.com/file/d/16C9GSOiJT0dB7lcNxds5T-WzgSf3cxNe/view)| 24 | |Lec 16 | Selective Repeat and problems , Review of all protocols |[Slides](https://drive.google.com/file/d/1kVCBZq0ZU3gKB0Bgcf9PhUiWdjOjX0gs/view)|[Lecture 16](https://drive.google.com/file/d/1wq4II8LgtOkdwGyruMRXAQ20UmvxPTP9/view)| 25 | |Lec 17|DataLink Layer Error Control (Parity,CRC) |[Slides](https://drive.google.com/file/d/1XRkpEuQN2DlKuUlv0wiKOSBlMQcuvPuH/view)|[Lecture 17](https://drive.google.com/file/d/1GPN1Wtbk5HvZIehPQ-BA5Kh7GTOtHsX4/view)| 26 | |Lec 18 |Checksum and Access Control|[Slides](https://drive.google.com/file/d/1gDJhybFj-PHkw09F2bhcrhtL9FR90uzA/view)|[Lecture 18](https://drive.google.com/file/d/18s1LB6Gwc4nG99tJ8f9XdSWvdFNo7dZZ/view)| 27 | |Lec 19 | Polling & CSMA/CD |[Slides](https://drive.google.com/file/d/1aIW3HgrquiOjEf3wg6A-O5DQxjrBr1zj/view)|[Lecture 19](https://drive.google.com/file/d/1kL6aSDcbMwob9N6DKnp_QdTzS5nQ2xwS/view)| 28 | |Lec 20|CSMA/CD , Binary Exponential BackOff Algorithm |[Slides](https://drive.google.com/file/d/10n7zPhzY0RaAn6IULP3QPeNLJEaHjnl1/view)|[Lecture 20](https://drive.google.com/file/d/1IktSh5iaSDPnJS6fzg4P_tLSyTClCnCx/view)| 29 | |Lec 21| Problems on CSMA / CD and Backoff algo|[Slides](https://drive.google.com/file/d/1372XAxOA-39HJ0l2Xz5A-n6dUzNAqe5O/view)|[Lecture 21](https://drive.google.com/file/d/1hXHJxT8FpoAFDGfB2MUsV05R1m2DL6Ji/view)| 30 | |Lec 22|Token Passing, DTR and ETR|[Slides](https://drive.google.com/file/d/12do9ZS-vLfiOYAnsuFCGAw-XnW9Zhjt7/view)|[Lecture 22](https://drive.google.com/file/d/11BbZzp3X0jd6BB_x0Mup6icSwvcKxUHy/view)| 31 | |Lec 23|Aloha-slotted;pure,Ethernet |[Slides](https://drive.google.com/file/d/1PiuBYc6c_OD2RNvbJuPyEIO1IbQ83Djc/view)|[Lecture 22](https://drive.google.com/file/d/1mQ9l7i5XP0y_pgJbGcwwrU7F8IY57qmS/view)| 32 | |Lec 24|Switching|[Slides](https://drive.google.com/file/d/1SMCFLwkkR5qkI91kaxTuiG4UFOaJk87l/view)|[Lecture 24](https://drive.google.com/file/d/1Xoge5aW3DTpesnt66k7ebAcfqiYRl05_/view)| 33 | |Lec 25|Routing algorithms|[Slides](https://drive.google.com/file/d/1AslcNxK5WVTCzI5F5AMvyxjwDvvINncy/view)|[Lecture 25](https://drive.google.com/file/d/1uERGCKrYvxiu7gZXOGQCQ8n4q3nmYKnk/view)| 34 | |Lec 26|IP address, Casting|[Slides](https://drive.google.com/file/d/1lGmMOQso2BZi2RVHsqse63h3d3Jx_ecT/view)|[Lecture 26](https://drive.google.com/file/d/1r8zsLRXHrqokOuXv-EKNi3o8dxvZD4bo/view)| 35 | |Lec 27|CIDR,Subnetting|[Slides](https://drive.google.com/file/d/1RNV9QPbQMozgtpv8JGV7jGNZo0vjQA_y/view)|[Lecture 27](https://drive.google.com/file/d/1Vlsa1uYuxuM5iHc4OoyFlDa-nG5fG0Ue/view)| 36 | |Lec 28|Subnetting|[Slides](https://drive.google.com/file/d/1XxQi4P1V6k-J2DXAJznKrd-o9Ll0AVbq/view)|[Lecture 28](https://drive.google.com/file/d/1HcYH3DgkS4Y8AUAB0X4Q8G1OC18f1O2c/view)| 37 | |Lec 29|IPv4,Fragmentation,IPv6|[Slides](https://drive.google.com/file/d/1sS1V7WmXkNlinjhm616fHd7qHUa0bfyj/view)|[Lecture 29](https://drive.google.com/file/d/10eeGax8Ex3X7s90v3DK0PJh6i0Xp0yf-/view)| 38 | |Lec 30|Transport layer protocol-TCP|[Slides](https://drive.google.com/file/d/1wzXduaya4a6xUpNzYNjVbo5iC0rnk65F/view)|[Lecture 30](https://drive.google.com/file/d/15cnhcvWIo66wAN4eeiUHMwtPTLYPPGTt/view)| 39 | |Lec 31|TCP|[Slides](https://drive.google.com/file/d/1TRfOxPWH53svXQWzV1eP9YC3C3Fwm0Tk/view)|[Lecture 31](https://drive.google.com/file/d/1YZp3TANWxW1zgf3lzRaHykqNdyt183KV/view)| 40 | |Master|All slides in one file|[Slides](https://drive.google.com/file/d/1rOHr1JPM7lwzzJ_kIWwsI6EwU6GfGt9l/view)|[-](-)| -------------------------------------------------------------------------------- /Markdown/DIP.md: -------------------------------------------------------------------------------- 1 | # Digital Image Processing 2 | ## Faculty - Dr. Masilamani 3 | 4 | ### Schedule 5 | - Wednesday 6.00 - 7.15 pm 6 | - Thursday 6.00 - 7.15 pm 7 | 8 | [Text Book](https://github.com/Aryelld/PDI/blob/master/Rafael%20C.%20Gonzalez%2C%20Richard%20E.%20Woods%20-%20Digital%20Image%20Processing%20(2008%2C%20Prentice%20Hall).pdf) 9 | 10 | [Syllabus](http://iiitdm.ac.in/img/electives/Digital_Image_Processing.pdf) 11 | 12 | [Class Notes](https://iiitdmacin-my.sharepoint.com/:o:/g/personal/masila_iiitdm_ac_in/Ehj-vb_3RFtNpSf6GzOrvEYB8YEb3LAdm_-i2zcienskiw?e=Dh6Pza) 13 | 14 | |Lecture|Date|Topic|Video| 15 | |---|---|---|---| 16 | |1|6 jan 2021|Introduction|[Lecture](https://drive.google.com/file/d/1kUXw-GhxCTZACiQLkLDlLhxtp4EtA3bJ/view)| 17 | |2|7 jan 2021|Image acquisition|[Lecture](https://drive.google.com/file/d/1IpwAu90qUYahStNKdxOyUvS4hIiuLVCy/view)| 18 | |3|13 jan 2021|Image display, Image operations|[Lecture](https://drive.google.com/file/d/1hzCj4TQkTWVhy3NzaTgm3WU36zaxHu59/view)| 19 | |4|20 jan 2021|Image operations|[Lecture](https://drive.google.com/file/d/187CKGJnRMs6WuAH855-b2g8FR7oSteWa/view)| 20 | |5|21 jan 2021|Interpolation, Image file format|[Lecture](https://drive.google.com/file/d/1ti_eZddkBvz7KWRty1LSRQA8vNHNHH9d/view)| 21 | |6|27 jan 2021|Geometric transformations|[Lecture](https://drive.google.com/file/d/1XxhSpSBYtgv9EFUeMu-QjyDBSWG1aV4o/view)| 22 | |7|30 jan 2021||[Lecture](https://drive.google.com/file/d/10fMo9jF7aacgcuE0hX5z_dxDR9jyjyxO/view)| 23 | |8|3 feb 2021||[Lecture](https://drive.google.com/file/d/1VRqTOfBJd1BKpeqY35tF1TuMrJinH5UB/view)| 24 | |9|4 feb 2021||[Lecture](https://drive.google.com/file/d/1AU1lDaYtbhL2WS2hBwuILTsk9kfHER2G/view)| 25 | |10|10 feb 2021||[Lecture](https://drive.google.com/file/d/1pPgdJKC8VMTMyNljvMSF3Yhozkn984VO/view)| 26 | |11|11 feb 2021||[Lecture](https://drive.google.com/file/d/1FUxBBwI2U2UdVjk9OjopgRixV3kWeptO/view)| 27 | |12|17 feb 2021||[Lecture](https://drive.google.com/file/d/128IXbGWJtGzNyH-oebQ6e9SWgrk8EFTm/view)| 28 | |13|18 feb 2021||[Lecture](https://drive.google.com/file/d/1JmWhHjSfex-pVIEneebFcTeuGCLUXZwP/view)| 29 | 30 | -------------------------------------------------------------------------------- /Markdown/ES.md: -------------------------------------------------------------------------------- 1 | # Embedded Systems 2 | ## Faculty - Dr. Munesh Singh 3 | 4 | |Session|Topic |PPT |Recordings| 5 | |-------|------|----|----------| 6 | | Lec 1 4/1|Overview of embedded systems| [Slides](https://drive.google.com/file/d/1TsUeMqq55ap_fH5V4VkK4SH2TwCiE8k2/view)| [Lecture](https://drive.google.com/file/d/1I1Rkt8t9y2_Q57o_R-1J3l3SUprsxcbx/view?ts=5ff3fb8d) | 7 | | Lec 2 7/1| | | [Lecture](https://drive.google.com/file/d/1E2DriCmlmZzCfjm1DCBwRLWbeT9xxUAa/view) | 8 | | Lec 3 8/1| | | [Lecture](https://drive.google.com/file/d/1fOxOWaPPeUMLlAKZNlgBps6nrmdfDOnc/view) | 9 | | Lec 4 11/1| Design Considerations of Embedded Systems| [Slides](https://drive.google.com/file/d/1Xv_VrlwohTzC1YPeOAZYJI5ROwG5dPSm/view)| [Lecture](https://drive.google.com/file/d/1XIQH0cB_vsElqbhFjxCN0N2Rwg3-vlcY/view)| 10 | | Lec 5 15/1| Arch of ARM | [Slides](https://drive.google.com/file/d/14RQbJ1YS_pgAO7_jO_PoPYJJeQdoNt1x/view)| [Lecture](https://drive.google.com/file/d/1gPsrJ5IwDUlctTbwqE5qdpz0QtsMCBVz/view)| 11 | | Lec 6 19/1|ARM ISA | [Slides](https://drive.google.com/file/d/1OQhIYPdEC8O71Gye_Es0znwDLKTOCXpf/view)| [Lecture](https://drive.google.com/file/d/1TwOkEwKjRRQNlnADlr2CXfsiI5Zg3_qz/view)| 12 | | Lec 7 21/1|ARM ISA | | [Lecture](https://drive.google.com/file/d/1x9C9SvvHZfasuASq1Z2j8adR_VTaifiJ/view)| 13 | | Lec 8 22/1|ARM ISA, Intro to ARM Cortex-M4F and its peripherals | [Slides ](https://drive.google.com/file/d/1OxJg_Pqy-CqpjxvdNu4aHx7yLSgHB7JV/view)| [Lecture](https://drive.google.com/file/d/1chqzOkqjNrSBtu4splQ_hvg3Y7v_hxV5/view)| 14 | | Lec 9 25/1| | | [Lecture](https://drive.google.com/file/d/1NgCNwp0E8LWHIxOd-YDH2IKZ1g2jOW_8/view?usp=sharing_eil&ts=600e65bf) | 15 | | Lec 10 28/1 |Input Output Devices | | [Lecture](https://drive.google.com/file/d/19qqN1-ZdN78Mjx9XRLqB6_o8_JEbqJMW/view?usp=sharing_eil&ts=601299b1) | 16 | | Lec 11 29/1| | | [Lecture](https://drive.google.com/file/d/1wDdZxyhKSx53a4zxhECTYaxUh09QyPw7/view?usp=sharing_eil&ts=6013e896) | 17 | | Lec 12 1/2|Digital to Analog World| [Slides](https://drive.google.com/file/d/1eBnB07eo1eeRJlMOZfi7kKHXxmtDdx3d/view)| [Lecture](https://drive.google.com/file/d/1YzRy1md1yICCRgIBfySFapglSEojaNPD/view?usp=sharing_eil&ts=60178a4b) | 18 | | Lec 13 4/2|Analog to Digital | [Slides](https://drive.google.com/file/d/1Eu8cRtJauOKpJoZ46bNxHkFEQtQr0KnA/view)| [Lecture](https://drive.google.com/file/d/1gFEa-MDX-6ZSpPrOsOyQWmkj57FJWcWz/view?usp=sharing_eip&ts=601bd1be) | 19 | | Lec 14 5/2| | | [Lecture](https://drive.google.com/file/d/15vfzOGh5WcATncWClu0uBUfRnCW94s6U/view?usp=sharing_eip&ts=601d286f) | 20 | | Lec 15 8/2|Discussion session | |[Lecture]() | 21 | |Lec 16 11/2| | |[Lecture](https://drive.google.com/file/d/1IPFSE3jZ6zCszYgoGIKVdh83LvfLbmgK/view?usp=sharing_eip&ts=602506b4)| 22 | |Lec 17 12/2|PWM |[Slides](https://drive.google.com/file/d/11o3QQGKmCNhjE9PsRyQWYlIgzzY5lPBK/view) |[Lecture](https://drive.google.com/file/d/1xo7l1ymHVJJU7JNDTgZnOpnHXJb3KNUA/view?usp=sharing_eip&ts=60265fc6)| 23 | |Lec 18 15/2|||[Lecture](https://drive.google.com/file/d/1M7unHqXdHBQ-hVMza05EOj_vI4M5WV_4/view?usp=sharing_eip&ts=602a05ac) | 24 | |Lec 19 18/2|GPTM|[Slides](https://drive.google.com/file/d/1FLi5-jf7BkMAIwNOBVD9VBm_jgrI5snZ/view)|[Lecture](https://drive.google.com/file/d/17aQAT08hpcdXcjre-nlMhhUXo7uTlaae/view?usp=sharing_eip&ts=602e4352) | 25 | |Lec 20 22/2| | |[Lecture](https://drive.google.com/file/d/16QjixYC0WAAULNigcAEEnh6f4DOPxFO6/view?usp=sharing_eip&ts=60333df0) | 26 | 29 | 30 | ## Practice 31 | |Session|Topic |PPT |Recordings| 32 | |-------|------|----|----------| 33 | | Intro session | | | [Lecture](https://drive.google.com/file/d/1u8LRmYmYz5vivgG82LGmGSOAzuK0otQP/view?ts=5ff44710) | 34 | | Practice 1 |Blinking LEDs |[Slides](https://drive.google.com/file/d/1HvssjG9WMSYZHpNvQX3bcQCHvi8YJaoD/view)| [Lecture](https://drive.google.com/file/d/12NjeQQB77sbEh6SFEiqd11P-r078bk-W/view)| 35 | | Practice 2 |Blinking LEDs using switch |[Slides](https://drive.google.com/file/d/1wNOj8b-BxgEFQQkFcBUGxrUhE2A_DEG9/view)| [Lecture](https://drive.google.com/file/d/1LarxL41_-lX4P8M__EDJWEyTMp-bsJBS/view)| 36 | | Practice 3 |Blinking LEDs using 2 switches |[Slides](https://drive.google.com/file/d/1lS0BhAKLvzvUcd1KBw0K0Q2g8goKnruc/view)| | 37 | |Practice 4 |DAC using R-2R ladder |[Slides](https://drive.google.com/file/d/1ON1GlNBqmNebeYPEhTLiYN2FtL2Dwtwi/view)|[Lecture](https://drive.google.com/file/d/1s6ChbHl_dFd3x6akjIicrC53DN56ljGW/view)| 38 | |Practice 5 |ADC to digital conversion |[Slides](https://drive.google.com/file/d/14FSps5EkrJ0KmxW-mgfY4GsLxkHF5no7/view)|[Lecture](https://drive.google.com/file/d/1FFil4v-sJqfD6B0MhUG4ZrOo3-l_v4pb/view)| 39 | -------------------------------------------------------------------------------- /Markdown/HCI.md: -------------------------------------------------------------------------------- 1 | # Human Computer Interaction 2 | ## Faculty - Dr.B Sivaselvan 3 | 4 | ### Schedule 5 | - Monday 8.30 - 10.00 pm 6 | - Friday 8.30 - 10.00 pm 7 | 8 | Lecture |Topic |PDF|Video| 9 | |---|---|---|---| 10 | |Lec 1 | Intro |[Slides](https://drive.google.com/file/d/1gWm3AJVLiIazB4O3pmkLA1IpguC7cxTs/view)|[Lecture 1](https://drive.google.com/file/d/1bYmk_qJGATIp5AD3l4sKym9pXtkgwhjR/view)| 11 | |Lec 2 | Usability |[Slides](https://drive.google.com/file/d/19N1Ypkbq9lfSzpXGyWj3iEfOWunrXxra/view)|[Lecture 2](https://drive.google.com/file/d/1bYmk_qJGATIp5AD3l4sKym9pXtkgwhjR/view)| 12 | |Lec 3 |More on usability |[Slides](https://drive.google.com/file/d/1utFzIHVCIgHdVfx1L6WbQK0d4ph1lA3M/view)|[Lecture 3](https://drive.google.com/file/d/1ZAZbhLqJUOeTXfB40R_cOJ1QSpjJyJlQ/view)| 13 | |Lec 4 |Mental Model |[Slides](https://drive.google.com/file/d/1ay0mNCvtsGs-7dYHz-zQ6X7ughYPA4X7/view)|[Lecture 3](https://drive.google.com/file/d/1psh3R1aeyUvERs3kfcebD7x0BIY9v-Hb/view)| 14 | |Lec 5 |More on mental model |[Slides](https://drive.google.com/file/d/1Hv8J4hvPTRE3qdxy2yheMDnyHB45nIhb/view)|[Lecture 3](https://drive.google.com/file/d/1xywZYoUg0B2a9AO3hhy-leu1wkGY9twP/view)| 15 | |Lec 6 | Interface design |[Slides](https://drive.google.com/file/d/1R_JBpaOzveGsM-3Cje6JITnOcakvufj5/view)|[Lecture 3](https://drive.google.com/file/d/15zse2lHxAJJX9tkIeEUIzkpygs95rdgG/view)| 16 | |Lec 7||[Slides](https://drive.google.com/file/d/13ekuOUP6yJDU_QUiv84wD2AGjdoWteSs/view?usp=drive_web&authuser=1)|[Lecture](https://drive.google.com/file/d/1xpx8h4WKpLt8zWUGRpI536BRO13s1Ld8/view?usp=drive_web&authuser=1)| 17 | |Lec 8||[Slides](https://drive.google.com/file/d/1Hw0tK3i79D43o6Zq7q6hJhMH4PiNl_KB/view?usp=drive_web&authuser=1)|[Lecture](https://drive.google.com/file/d/1ZPTxKRPn0yNSPAScxigkbVHbDuZl1OeA/view?usp=drive_web&authuser=1)| 18 | |Lec 9||[Slides](https://drive.google.com/file/d/1nv4GcMJ-0fUVR8K2PVHTf1KD0oj8rxPg/view?usp=drive_web&authuser=1)|[Lecture](https://drive.google.com/file/d/1o37Kr0CIjIt1jEGRJKYWTDo2qgUO8mAR/view?usp=drive_web&authuser=1)| 19 | |Lec 10||[Slides](https://drive.google.com/file/d/1bQsi2lxsmYTJcTG8cydL63uWy2_sBLc9/view?usp=drive_web&authuser=1)|[Lecture](https://drive.google.com/file/d/142GOrufssre8RWHwdJrGb2pH2Hc4xq5B/view?usp=drive_web&authuser=1)| 20 | |Lec 11||[Slides](https://drive.google.com/file/d/1zSEan6le4oP-Ay56D-OOfG9xFW8oqvgr/view?usp=drive_web&authuser=1)|[Lecture](https://drive.google.com/file/d/1KuH_T80hMgUBr9PejWjLtUSrnRUXMnsW/view?usp=drive_web&authuser=1)| 21 | |Lec 12||[Slides]()|[Lecture]()| 22 | 23 | -------------------------------------------------------------------------------- /Markdown/OS.md: -------------------------------------------------------------------------------- 1 | # Operating Systems COM301T 2 | ## Faculty - Dr. Sivaselvan B 3 | ### Schedule 4 | - Monday 2.00 - 2.50 pm 5 | - Tuesday 12.00 - 12.50 pm 6 | - Thursday 11.00 - 11.50 am 7 | ### TAs 8 | - Santosh Kumar - coe18d005 9 | - Mercy Faustina - coe19d006 10 | 11 | 12 | |Lecture |Topic |PDF|Video| 13 | |---|---|---|---| 14 | | Session-1 (03/08/2020) | Intro session |[Slides](https://drive.google.com/file/d/1XdddrKAFlPqaBD5rmCpQ90mruWHBhDtY/preview) |[Lecture 1](https://drive.google.com/file/d/1njmGfrf4NZcUyCG1IyG2Uc_WyvNnpZxu/preview) | 15 | | Session-2 (04/08/2020)| Operating system overview-1 |[Slides](https://drive.google.com/file/d/1cq_zFfFxgq3aee7VC3KSrvgI7klhPRuO/preview) |[Lecture 2](https://drive.google.com/file/d/1eyoCSHJh1e76u71Ej1UmW3hTHIeM-ADV/preview) | 16 | | Session-3 (06/08/2020) | Operating system overview-2 |[Slides](https://drive.google.com/file/d/19SzeKIcYZD0MQvIk076-ykMdD7aYh205/preview) |[Lecture 3](https://drive.google.com/file/d/1hmMPNqIzfP9t6GBLbu9ryPt6-sFTsQ5A/preview)| 17 | | Session-4 (10/08/2020) | Operating system overview-3 |[Slides](https://drive.google.com/file/d/1H19D-bUvr-hrrS_MoYsoQfpakHeC06ea/preview) |[Lecture 4](https://drive.google.com/file/d/1DAXE6e4HpPaxsmEbHzUxKuyYzXnAGdaK/preview)| 18 | | Session-5 (11/08/2020)| OS features , Process concept 1 |[Slides](https://drive.google.com/file/d/1jyAraU24dDVmkU2Plx_KPoSS_Gl5d1RN/view)|[Lecture 5](https://drive.google.com/file/d/1lLtSWNqbasGqFFfHOuv6G95YW_agHyFB/view)| 19 | | Session-6 (13/08/2020) |Process concept 2 |[Slides](https://drive.google.com/file/d/1c2u9FJxTghIFL_z6fSP7ItyR_LlR9kVE/view)|[Lecture 6](https://drive.google.com/file/d/1craD2y8rT6g0j0T-u2gw4k974XZuhpkk/view)| 20 | | Session-7 (17/08/2020) |Process concept 3 |[Slides](https://drive.google.com/file/d/1Q4cpqwcHRJXsNZOmSj-fnCdTre_8hqQ3/view)|[Lecture 7](https://drive.google.com/file/d/1f5u9raEsDvc5hh1CIR4WntNYA16XXm3C/view)| 21 | | Session-8 (18/08/2020) | Linux system calls , Fork intro |[Slides](https://drive.google.com/file/d/1S6Q57MGlmzQEI8r4ve0A-FQOUifMKmLm/view)|[Lecture 8](https://drive.google.com/file/d/1OCT-PlMbYxjN3PrFaNToQlBginC24uHp/view)| 22 | | Session-9 (20/08/2020) | Process state transition |[Slides](https://drive.google.com/file/d/13FoSTUpVI0UbPV2jCY1ZO6ecSWFHkaV0/view)|[Lecture 9](https://drive.google.com/file/d/1gG4rE5N1_qR9qu3pkeSX_WE8ONHt9U4g/view)| 23 | | Session-10 (24/08/2020) |Process state transition contd , Fork 1 |[Slides](https://drive.google.com/file/d/18kouwQuSxQkra7ESiL3PFU1OA-V9KZY_/view)|[Lecture 10](https://drive.google.com/file/d/1lrjtinvunednlEHtcmXgFsp7ecHLKPvX/view)| 24 | | Session-11 (25/08/2020) | Fork 2 |[Slides](https://drive.google.com/file/d/1M336rC9woHTe09Mov47Fk62XOtrCmGA3/view)|[Lecture 11](https://drive.google.com/file/d/1eEbCF9SmzU53nsrpM0ZfWdW17Rdfm5QY/view)| 25 | | Session-12 (27/08/2020) | Fork 3 |[Slides](https://drive.google.com/file/d/19VpOUyMTmeHqsxpTWLuwfkL12vy2Mj9e/view)|[Lecture 12](https://drive.google.com/file/d/1EYPZssmxvU8BnJA1TvQ0M6cyuEDFr1QR/view)| 26 | | Session-13 (31/08/2020) | Fork 4 , Exec 1 , Wait |[Slides](https://drive.google.com/file/d/1FQJe_wwfsJCX-YlrIBx3AyI0FFcWwRWT/view)|[Lecture 13](https://drive.google.com/file/d/1wjPu0iJ0h7zIL2YyAcFdoQot4ellzb4P/view)| 27 | | Session-14 (01/09/2020) | Wait |[Slides](https://drive.google.com/file/d/1NmsA47Zpix5GuYyZj5lQZwDtMx66IlKG/view)|[Lecture 14](https://drive.google.com/file/d/1rg88yvW6A4_wO-xEjOvHmbHdcUMd47_N/view)| 28 | | Session-15 (03/09/2020) | Exec variants |[Slides](https://drive.google.com/file/d/1H-8UUbZCOC6reh02tksNe8GbWmW7HLbF/view)|[Lecture 15](https://drive.google.com/file/d/14Vd45ckvlo3CD2KJE6axFdy67YBrwrZN/view)| 29 | | Session-16 (07/09/2020) | Exec variants , Fork output questions |[Slides](https://drive.google.com/file/d/18rRIVdcZTEECYB2x3gTZF7G2iPnqNhyB/view)|[Lecture 16](https://drive.google.com/file/d/1o6_JkJUEUX7Ei6UjMTqitQJWemp5wSzP/view)| 30 | | Session-17 (08/09/2020)| CPU scheduling algo |[Slides](https://drive.google.com/file/d/1HPrbKNJ9B66lf-rzPgxJwKS4VeRt3MDx/view)|[Lecture 17](https://drive.google.com/file/d/1Ffe0a4d7BCcD3xENzzf9RU1E5jxWFf4f/view)| 31 | | Session-18 (10/09/2020)| CPU scheduling algo , FCFS trace |[Slides](https://drive.google.com/file/d/1oKAnX7zNyAEKxtfJW8wDOEa34DQXs2Tl/view)|[Lecture 18](https://drive.google.com/file/d/15pFpzdo92kDrBfrtZPcsMcwWnYvIUjd6/view)| 32 | | Session-19 (14/09/2020)| FCFS , SJF |[Slides](https://drive.google.com/file/d/1s0O7nr1gmCiPvycExY8rNP4V8U_wFiRg/view)|[Lecture 19](https://drive.google.com/file/d/1mF8HjUku9zPAXZFzxXs0FPT-K7gn0HQa/view)| 33 | | Session-20 (15/09/2020) | SRT (SJF PE) , Priority NPE |[Slides](https://drive.google.com/file/d/1B_XQ9k7o9Rnq7vbbeoDjO6kKlLHERqs4/view)|[Lecture 20](https://drive.google.com/file/d/12GHLNaEyorl7vSl85yVnuqbNlyRRYP55/view)| 34 | | Session-21 (17/09/2020) | Priority PE , Round Robin |[Slides](https://drive.google.com/file/d/1s7Rw2ZRjseBWnr4Ha1xaJQp2meGDmic8/view)|[Lecture 21](https://drive.google.com/file/d/1h7VXhhhAL3kxLCHS7ysE07DPfgRPieB_/view)| 35 | | Session-22 (21/09/2020) | HRRN , Numericals on RR , IO |[Slides](https://drive.google.com/file/d/1RHj1MtOBLhOeWMKeVzr3WgCIxFrW2D5d/view)|[Lecture 22](https://drive.google.com/file/d/1DU0cwBsddolHqVvJ7pvHIF2ixqMpoBBo/view)| 36 | | Session-23 (22/09/2020) | IO , Multiprocessor example , IPC 1 |[Slides](https://drive.google.com/file/d/1e-reLJJ-Ti1sNoLfo4t_EFQocvAQe4Wm/view)|[Lecture 23](https://drive.google.com/file/d/1JK0RqqbwY4jqUSWSgeNztDwNTUPanyPr/view)| 37 | | Session-24 (24/09/2020) | IPC 2 |[Slides](https://drive.google.com/file/d/1aQlZu5Kt4W_0hG7B38sy2S3PSFx2ugxC/view)|[Lecture 24](https://drive.google.com/file/d/18YR6dYNBk4H5OSlnD7dy_CGpybGqY-se/view)| 38 | | Session-25 (28/09/2020) | IPC 3 ,Pipes 1 |[Slides](https://drive.google.com/file/d/18lFBG5QTAibtaMDZ-XgYcrS-Y9SyA5Fq/view)|[Lecture 25](https://drive.google.com/file/d/1kHkvxW2_Ry8TtYjmmJqcaVDbBNw_JUFb/view)| 39 | | Session-26 (29/09/2020) | Pipes 2 , Pipes exercises |[Slides](https://drive.google.com/file/d/1vIovVS86OOdzMZai7U5RHuEljgizZ12q/view)|[Lecture 26](https://drive.google.com/file/d/1iy4KE6MD0iHVmTkH2R99HTVtGfMGNKci/view)| 40 | | Session-27 (01/10/2020) |dup and Pipes example LS |[Slides](https://drive.google.com/file/d/1Jp8fVtwUventti4SZUtRHvi6OlnfMPGP/view)|[Lecture 27](https://drive.google.com/file/d/1l8XNoTKKmFe76gJWyn_xo1mTDvhcKENV/view)| 41 | | Session-28 (12/10/2020) |Multithreading intro |[Slides](https://drive.google.com/file/d/1GWUlwq0qT2VVhfdOzzz0HBB6YvxkhqKG/view)|[Lecture 28](https://drive.google.com/file/d/1dyuEjxA-zVQLs7kzIDzMDZ1aWN290Ymk/view)| 42 | | Session-29 (13/10/2020) |Multithreading benefits challenges models |[Slides](https://drive.google.com/file/d/1_N30aN2uJoNzJhjgekXVi6ODHKqxX0fV/view)|[Lecture 29](https://drive.google.com/file/d/1TpAFEZuP3HuQNLPCKyuKjTgKvRmtBrzp/view)| 43 | | Session-30 (14/10/2020) | Pthreads example |[Slides](https://drive.google.com/file/d/1KjakFjldOIhxJDxm6OqxaoJRGHPEiWLU/view)|[Lecture 30](https://drive.google.com/file/d/1SUsKnlefsjxgIt1titX1XOZ3oY-QDigo/view)| 44 | | Session- 31(19/10/2020) |Matrix mult|[Slides](https://drive.google.com/file/d/1R8dHfCilZjwToCa-SIqjDj9NMyA9vdCJ/view)|[Lecture 31](https://drive.google.com/file/d/1AHSsBoI11aBBs7CQcjuYaxuv5Q2N7uQx/view)| 45 | | Session- 32(20/10/2020) |Matrix mult and Amdahl's law |[Slides](https://drive.google.com/file/d/1OZjzUHZ2Z-ou5CYPtsRwpjganr-p4B0C/view)|[Lecture 32 ](https://drive.google.com/file/d/1rMZa88mLyYjIthLk_TuA1IgWmOBbTCzQ/view)| 46 | | Session-33 (22/10/2020) |Amdahl's law, Thread pool|[Slides](https://drive.google.com/file/d/1TGnnN_gP5zPgqaATOrCpD-b-n7_uS0Ou/view)|[Lecture 33](https://drive.google.com/file/d/1yCFqPnLlXLewag4NbBiBM6_fCUahEFfR/view)| 47 | | Session-34 (26/10/2020) |Thread level scheduling,Signal handling |[Slides](https://drive.google.com/file/d/1Jq0ubvVBCTEnL21crTwGjZB_wsKfGbVO/view)|[Lecture 34](https://drive.google.com/file/d/14zZA1yI4Qui1iSwrZ4GEQquyESGgwbvH/view)| 48 | | Session-35 (27/10/2020) |Signal handling|[Slides](https://drive.google.com/file/d/1Z9w1Iq__fNC4VtBoN2vMLiAMh41_5CcR/view)|[Lecture 35](https://drive.google.com/file/d/1RnOfnSQDEyjM4q8c50HD6sU2GugWYf4X/view)| 49 | | Session-36 (29/10/2020) |Sending signals and addnl features |[Slides](https://drive.google.com/file/d/1PVupfGdpZ-U4ZLKepyjLnQN2ZBIoLAgc/view)|[Lecture 36](https://drive.google.com/file/d/1CdAt6O_HzlKjHBBxMJ_LtDqoBFfhv4ba/view)| 50 | | Session-37(02/11/2020) |Synchronization|[Slides](https://drive.google.com/file/d/1e0xH7jvg52V9AFF-xJLEXZ9a5KJZzwFC/view)|[Lecture 37 ](https://drive.google.com/file/d/1Kf1NFXMsPEKCGdm66GqP9S0LS6S_DdFb/view)| 51 | | Session-38(03/11/2020) |Critical Section problem, Peterson's solution|[Slides](https://drive.google.com/file/d/1rLGi2PHYJgBAg1BmJGWHMhrIACqWi7yZ/view)|[Lecture 38](https://drive.google.com/file/d/1iOufgpiBE7QP8jS8uPUGjj6RuJiTyfJo/view)| 52 | | Session-39(05/11/2020) | Lock instruction, Bounded-waiting mutual exclusion|[Slides](https://drive.google.com/file/d/186mIDj7cyYwY-kK937BTzkR4Ai5NiOnn/view)|[Lecture 39](https://drive.google.com/file/d/1n04HChy17bF4VVoHIP9fNtG2spncrXgj/view)| 53 | | Session-40 (09/11/2020) |Mutex locks for CSP,Semaphore limitations,Deadlock & Starvation problems|[Slides](https://drive.google.com/file/d/13uRA7GkoNPD8OcS1ki8u9HETJ7CxzbIC/view)|[Lecture 40](https://drive.google.com/file/d/1fWTLk_HGxUyIQo4Es7X2EdlBuKJmz4kq/view)| 54 | | Session-41 (10/11/2020) |Dining philosopher problem|[Slides](https://drive.google.com/file/d/1Lofub7Lg9FzrFqhUrASR_oAGeCT9urHQ/view)|[Lecture 41](https://drive.google.com/file/d/14d-8ynwbeDDg_vjSrcnurriaj_ECA1ph/view)| 55 | | Session-42 (12/11/2020) |Dining philosopher,Reader Writer problem|[Slides](https://drive.google.com/file/d/1Ubc-lQ9tfug-OPHUEYb4RB5wKHJW6HoK/view)|[Lecture 42](https://drive.google.com/file/d/1gNe3YbEyF4zYxIicWTMqaQaWKzi-xIjU/view)| 56 | | Session-43 (16/11/2020) |Reader writer,prod cons,Deadlocks|[Slides](https://drive.google.com/file/d/1ygfVVvqX55ybQc5Om-bmmBQ7gYtJUrJP/view)|[Lecture 43](https://drive.google.com/file/d/1Zt40tUc8vPMSC5cS1batQqyLusuY0GEe/view)| 57 | | Session-44 (17/11/2020) |handling deadlocks,prevention,avoidance-Bankers algo |[Slides](https://drive.google.com/file/d/1MgZ3OiOn06PaXC9uK_mn885sC1zF4zXW/view)|[Lecture 44](https://drive.google.com/file/d/17pileVnMWz6LObCMI3jf9gep8gyGW8tQ/view)| 58 | | Session-45 (18/11/2020) |Deadlock detection,Recovery from deadlock|[Slides](https://drive.google.com/file/d/1K1r_DXj5DWzsOFs1eqWNpnhmp9G0evQK/view)|[Lecture 45](https://drive.google.com/file/d/1hkhQmBUOQ96a9E4SDidLWWoqNvKZukXK/view)| 59 | 60 | ### Resources 61 | - Add links to materials you found useful while preparing 62 | - [Refer](https://classroom.google.com/c/MTQyMDQ0ODE5NzMw/m/MjMxNzU0MjkxMzE4/details) for full notes 63 | - [Nice intro to Semaphores](https://en.wikibooks.org/wiki/Operating_System_Design/Processes/Semaphores) 64 | - [For semaphore based problems](http://greenteapress.com/semaphores/LittleBookOfSemaphores.pdf) Ch-4 and 5 65 | - For banker's algorithm - [vid_1](https://www.youtube.com/watch?v=bYFVbzLLxfY) [vid_2](https://youtu.be/Or40J_f2RHo) 66 | -------------------------------------------------------------------------------- /Markdown/PR.md: -------------------------------------------------------------------------------- 1 | # Pattern Recognition 2 | ## Faculty - Dr. Umarani Jayaraman 3 | 4 | ### Schedule 5 | - Monday 12.00 - 12.50 pm 6 | - Tuesday 11.00 - 11.50 am 7 | - Thursday 9.00 - 9.50 am 8 | 9 | [Text Book](https://github.com/dazzz/patrec2015/blob/master/Pattern%20Classification%20by%20Richard%20O.%20Duda%2C%20David%20G.%20Stork%2C%20Peter%20E.Hart%20.pdf) 10 | 11 | [Syllabus](http://iiitdm.ac.in/img/electives/36_Pattern_Recognition.pdf) 12 | |Lecture |Topic |PDF|Video| 13 | |---|---|---|---| 14 | | Lec 1 |PR introduction | [Slides](https://drive.google.com/file/d/1eogNjeKf9dDeGwaC25gLUFPj_0qWO98H/view?usp=sharing) | [Lecture](https://drive.google.com/file/d/1oFzVt7S8_b6NgP47eITUXKEergeVjioB/view) | 15 | | Lec 2 |Paradigms of PR| [Slides](https://drive.google.com/file/d/1essCx8SF_adcOsm4c6NegxeDhSsLhIL8/view?usp=sharing) | [Lecture](https://drive.google.com/file/d/14yVeTGLbNHSARSTfDBNNRvSJM_4qUKv_/view) | 16 | | Lec 3 |Pattern Recognition system | [Slides](https://drive.google.com/file/d/1H9l5lnmylEw-jfckPJqMm_dp4cFSy8GB/view?usp=sharing) | [Lecture](https://drive.google.com/file/d/14NFuhu7EKobH0OhRzDu6B7doUsublc16/view) | 17 | | Lec 4 | | | [Lecture](https://drive.google.com/file/d/1bpWLvxxFz1wSjIGXXcJLYY8IFJ1u6pbi/view) | 18 | | Lec 5 | | | [Lecture](https://drive.google.com/file/d/1xip-WkWejKuxnfZSSd-V1U40n_zhwot_/view) | 19 | | Lec 6 |Proximity measures | [Slides](https://docs.google.com/presentation/d/1FgolLDLkirl7OwkscfR4yWPO83cAVgEJ/edit#slide=id.p1) | [Lecture](https://drive.google.com/file/d/1wSGXIiDGvjlaftQ2CcUX2p8HK02biBH9/view) | 20 | | Lec 7 |Metric measures | | [Lecture](https://drive.google.com/file/d/1mdFNcktPl_ZSHHSkAvp-uC84WBJPmy7n/view) | 21 | | Lec 8 |Mahalanobis distance | | [Lecture](https://drive.google.com/file/d/1ewjRMkqCEgHZrAgqxUR-QLBn9hZZt1YD/view) | 22 | | Lec 9 |Non metric measures |[Slides](https://drive.google.com/file/d/1bnfvJ12O3i0aJA055tvVwpp2SJzySy_7/view?usp=sharing) | [Lecture](https://drive.google.com/file/d/1u312Ukh703nL22v0ky714Nro8YHjzLjy/view) | 23 | | Lec 10 (2/2/21)|Bayesian Decision Theory|[Slides](https://docs.google.com/presentation/d/1apRWAX7ta8JWZnJ_DYV_Mg5ndkFN3T4Q/edit#slide=id.p1) | [Lecture](https://drive.google.com/file/d/1AFeUByA_-TZYiqpFzZiwhGRAMw3JknKd/view) | 24 | | Lec 11 (4/2/21)|Bayesian Decision Theory Example|[Slides](https://drive.google.com/file/d/1TT8_Ox74Ps3ZBcSJ0PpV80NU5ErTvXdq/view)| [Lecture](https://drive.google.com/file/d/1JvfitzsFl972RgYBbB6vUfVyM-0YqYu1/view) | 25 | | Lec 12 (8/2/21)|Bayes Risk|[Slides](https://drive.google.com/file/d/1TT8_Ox74Ps3ZBcSJ0PpV80NU5ErTvXdq/view)| [Lecture](https://drive.google.com/file/d/1ghFLtwQJ9gezvTIxSp9l6jPOtP2rZJmV/view) | 26 | | Lec 13 (9/2/21)||| [Lecture](https://drive.google.com/file/d/1iAM8049YuWM667Z68Lw0fXPv27ioxgCQ/view)| 27 | | Lec 14 (11/2/21)||[Full chapter slides](https://drive.google.com/file/d/1asBDoClHNlwWLTKZDTfpcb__CjSjFLse/view)| [Lecture](https://drive.google.com/file/d/1PFp4mU-g4y-440sTMdhLJDCpilDJIGJU/view)| 28 | | Lec 15 (15/2/21)||| [Lecture](https://drive.google.com/file/d/1ljDAcPnubjPp48qfuC2elozuvPTVTN1U/view)| 29 | | Lec 16 (16/2/21)||[Jamboard](https://drive.google.com/file/d/1FM9cILZb_FE78U9QVwmQ2s6ZZN8q5XV-/view?usp=sharing)| [Lecture](https://drive.google.com/file/d/1JHcFus9PeARnb37nWDSglwm66CGc0G2Z/view)| 30 | |Lec 17 (18/2/21) | |[Jamboard](https://drive.google.com/file/d/1cv6T97VCYuhRgWsFFC1HATqtN6sM8_6_/view?usp=sharing) |[Lecture](https://drive.google.com/file/d/18Ituo7uXs9rect6b3MnL5BMP5rcjfVlZ/view)| 31 | |Lec 18 (19/2/21) | |[Jamboard](https://drive.google.com/file/d/1OpY1sLVQEYJdRHEPdrE1V3tqaun8T2aw/view?usp=sharing) |[Lecture](https://drive.google.com/file/d/1kyAfEFn_llkpG0N65yOwI97YDGwqhsJ4/view)| 32 | |Lec 19 (22/2/21) | |[Slides](https://drive.google.com/file/d/1zI5uWI8ri86LzpSSWnsyA6uBhV_ujCn3/view) |[Lecture](https://drive.google.com/file/d/10M6nBcL0THrm-MciQ4gQhKHegpyzR4Kx/view)| 33 | 34 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Sem 5 resources 2 | 3 | 1. [Operating Systems](https://rit-ctrl.github.io/Resources/docs/OS.html) 4 | 2. [Computer Networks](https://rit-ctrl.github.io/Resources/docs/CN.html) 5 | 6 | ## Sem 6 resources 7 | 8 | 1. [Computer Architecture](https://rit-ctrl.github.io/Resources/docs/CA.html) 9 | 2. [Embedded Systems](https://rit-ctrl.github.io/Resources/docs/ES.html) 10 | 3. [Pattern Recognition](https://rit-ctrl.github.io/Resources/docs/PR.html) 11 | 4. [Analytics and Systems of Big Data](https://rit-ctrl.github.io/Resources/docs/ASBD.html) 12 | 5. [Digital Image Processing](https://rit-ctrl.github.io/Resources/docs/DIP.html) 13 | 14 | ## Sem 7 Resources 15 | 16 | 1. [Human Computer Interaction](https://rit-ctrl.github.io/Resources/docs/HCI.html) 17 | -------------------------------------------------------------------------------- /docs/ASBD.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rit-ctrl/Resources/5553bacbb9879fa5eafda40d203e3f5d8a57fc8a/docs/ASBD.pdf -------------------------------------------------------------------------------- /docs/CA.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CA 6 | 1103 | 1104 | 1105 | 1108 |
1109 |

COMPUTER ARCHITECTURE

1110 |

Faculty - Dr. Noor Mahammad SK

1111 |

Schedule

1112 | 1117 |

Textbook

1118 | 1119 | 1120 | 1121 | 1122 | 1123 | 1124 | 1125 | 1126 | 1127 | 1128 | 1129 | 1130 | 1131 | 1132 | 1133 | 1134 | 1135 | 1136 | 1137 | 1138 | 1139 | 1140 | 1141 | 1142 | 1143 | 1144 | 1145 | 1146 | 1147 | 1148 | 1149 | 1150 | 1151 | 1152 | 1153 | 1154 | 1155 | 1156 | 1157 | 1158 | 1159 | 1160 | 1161 | 1162 | 1163 | 1164 | 1165 | 1166 | 1167 | 1168 | 1169 | 1170 | 1171 | 1172 | 1173 | 1174 | 1175 | 1176 | 1177 | 1178 | 1179 | 1180 | 1181 | 1182 | 1183 | 1184 | 1185 | 1186 | 1187 | 1188 | 1189 | 1190 | 1191 | 1192 | 1193 | 1194 | 1195 | 1196 | 1197 | 1198 | 1199 | 1200 | 1201 | 1202 | 1203 | 1204 | 1205 | 1206 | 1207 | 1208 | 1209 | 1210 | 1211 | 1212 | 1213 | 1214 | 1215 | 1216 | 1217 | 1218 | 1219 | 1220 | 1221 | 1222 | 1223 | 1224 | 1225 | 1226 | 1227 | 1228 | 1229 | 1230 | 1231 | 1232 | 1233 | 1234 | 1235 | 1236 | 1237 |
LectureTopicPDFVideo
Lec 1Intro and fundamentals of computer designSlidesLecture
Lec 2Fundamentals of computer designLecture
Lec 3Lecture
Lec 4Lecture
Lec 5Lecture
Lec 6Review of ISA and pipelinesSlidesLecture
Lec 7Lecture
Lec 8Lecture
Lec 9Lecture
Lec 10Advanced ILPSlidesLecture
Lec 11 (1/2/21)Lecture
Lec 12 (2/2/21)Lecture
Lec 13 (4/2/21)Lecture
Lec 14 (8/2/21)Lecture
Lec 15 (9/2/21)Lecture
Lec 16 (11/2/21)Lecture
Lec 17 (15/2/21)Lecture
Lec 18 (16/2/21)Logic unit design(Exp-9)Lecture
1238 | 1241 |
1242 | 1243 | 1244 | -------------------------------------------------------------------------------- /docs/CA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rit-ctrl/Resources/5553bacbb9879fa5eafda40d203e3f5d8a57fc8a/docs/CA.pdf -------------------------------------------------------------------------------- /docs/CN.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CN 6 | 1103 | 1104 | 1105 | 1108 |
1109 |

Computer Networks

1110 |

Faculty - Dr. Munesh Singh

1111 | 1112 | 1113 | 1114 | 1115 | 1116 | 1117 | 1118 | 1119 | 1120 | 1121 | 1122 | 1123 | 1124 | 1125 | 1126 | 1127 | 1128 | 1129 | 1130 | 1131 | 1132 | 1133 | 1134 | 1135 | 1136 | 1137 | 1138 | 1139 | 1140 | 1141 | 1142 | 1143 | 1144 | 1145 | 1146 | 1147 | 1148 | 1149 | 1150 | 1151 | 1152 | 1153 | 1154 | 1155 | 1156 | 1157 | 1158 | 1159 | 1160 | 1161 | 1162 | 1163 | 1164 | 1165 | 1166 | 1167 | 1168 | 1169 | 1170 | 1171 | 1172 | 1173 | 1174 | 1175 | 1176 | 1177 | 1178 | 1179 | 1180 | 1181 | 1182 | 1183 | 1184 | 1185 | 1186 | 1187 | 1188 | 1189 | 1190 | 1191 | 1192 | 1193 | 1194 | 1195 | 1196 | 1197 | 1198 | 1199 | 1200 | 1201 | 1202 | 1203 | 1204 | 1205 | 1206 | 1207 | 1208 | 1209 | 1210 | 1211 | 1212 | 1213 | 1214 | 1215 | 1216 | 1217 | 1218 | 1219 | 1220 | 1221 | 1222 | 1223 | 1224 | 1225 | 1226 | 1227 | 1228 | 1229 | 1230 | 1231 | 1232 | 1233 | 1234 | 1235 | 1236 | 1237 | 1238 | 1239 | 1240 | 1241 | 1242 | 1243 | 1244 | 1245 | 1246 | 1247 | 1248 | 1249 | 1250 | 1251 | 1252 | 1253 | 1254 | 1255 | 1256 | 1257 | 1258 | 1259 | 1260 | 1261 | 1262 | 1263 | 1264 | 1265 | 1266 | 1267 | 1268 | 1269 | 1270 | 1271 | 1272 | 1273 | 1274 | 1275 | 1276 | 1277 | 1278 | 1279 | 1280 | 1281 | 1282 | 1283 | 1284 | 1285 | 1286 | 1287 | 1288 | 1289 | 1290 | 1291 | 1292 | 1293 | 1294 | 1295 | 1296 | 1297 | 1298 | 1299 | 1300 | 1301 | 1302 | 1303 | 1304 | 1305 | 1306 | 1307 | 1308 | 1309 | 1310 | 1311 | 1312 | 1313 | 1314 | 1315 | 1316 | 1317 | 1318 | 1319 | 1320 | 1321 | 1322 | 1323 | 1324 | 1325 | 1326 |
LectureTopicPDFVideo
Lec 1IntroSlidesLecture 1
Lec 2Computer Network Devices and MediaSlidesLecture 2
Lec 3Computer Network DevicesSlidesLecture 3
Lec 3- II""""Lecture 3-II
Lec 4Open system Interconnection (OSI)SlidesLecture 4
Lec 5OSI physical layerSlidesLecture 5
Lec 6OSI physical layerSlidesLecture 6
Lec 7Physical Layer Transmission Impairment & Performance MetricsSlidesLecture 7
Lec 7-II""""Lecture 7-II
Lec 8Digital to Digital Conversion or Line CodingSlidesLecture 8
Lec 9Transmission ModesSlidesLecture 9
Lec 10Bandwidth Utilization: Multiplexing and SpreadingSlidesLecture 10
Lec 11DataLink Layer , Flow Control , Stop and waitSlidesLecture 11
Lec 12Flow control , Stop and Wait ARQSlidesLecture 12
Lec 13Problems on Stop and WaitSlidesLecture 13
Lec 14Sliding Window and problemsSlidesLecture 14
Lec 15Go Back N and problemsSlidesLecture 15
Lec 16Selective Repeat and problems , Review of all protocolsSlidesLecture 16
Lec 17DataLink Layer Error Control (Parity,CRC)SlidesLecture 17
Lec 18Checksum and Access ControlSlidesLecture 18
Lec 19Polling & CSMA/CDSlidesLecture 19
Lec 20CSMA/CD , Binary Exponential BackOff AlgorithmSlidesLecture 20
Lec 21Problems on CSMA / CD and Backoff algoSlidesLecture 21
Lec 22Token Passing, DTR and ETRSlidesLecture 22
Lec 23Aloha-slotted;pure,EthernetSlidesLecture 22
Lec 24SwitchingSlidesLecture 24
Lec 25Routing algorithmsSlidesLecture 25
Lec 26IP address, CastingSlidesLecture 26
Lec 27CIDR,SubnettingSlidesLecture 27
Lec 28SubnettingSlidesLecture 28
Lec 29IPv4,Fragmentation,IPv6SlidesLecture 29
Lec 30Transport layer protocol-TCPSlidesLecture 30
Lec 31TCPSlidesLecture 31
MasterAll slides in one fileSlides-
1327 | 1328 |
1329 | 1330 | 1331 | -------------------------------------------------------------------------------- /docs/CN.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rit-ctrl/Resources/5553bacbb9879fa5eafda40d203e3f5d8a57fc8a/docs/CN.pdf -------------------------------------------------------------------------------- /docs/DIP.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | DIP 6 | 1103 | 1104 | 1105 | 1108 |
1109 |

Digital Image Processing

1110 |

Faculty - Dr. Masilamani

1111 |

Schedule

1112 | 1116 |

Text Book

1117 |

Syllabus

1118 |

Class Notes

1119 | 1120 | 1121 | 1122 | 1123 | 1124 | 1125 | 1126 | 1127 | 1128 | 1129 | 1130 | 1131 | 1132 | 1133 | 1134 | 1135 | 1136 | 1137 | 1138 | 1139 | 1140 | 1141 | 1142 | 1143 | 1144 | 1145 | 1146 | 1147 | 1148 | 1149 | 1150 | 1151 | 1152 | 1153 | 1154 | 1155 | 1156 | 1157 | 1158 | 1159 | 1160 | 1161 | 1162 | 1163 | 1164 | 1165 | 1166 | 1167 | 1168 | 1169 | 1170 | 1171 | 1172 | 1173 | 1174 | 1175 | 1176 | 1177 | 1178 | 1179 | 1180 | 1181 | 1182 | 1183 | 1184 | 1185 | 1186 | 1187 | 1188 | 1189 | 1190 | 1191 | 1192 | 1193 | 1194 | 1195 | 1196 | 1197 | 1198 | 1199 | 1200 | 1201 | 1202 | 1203 | 1204 | 1205 | 1206 | 1207 | 1208 |
LectureDateTopicVideo
16 jan 2021IntroductionLecture
27 jan 2021Image acquisitionLecture
313 jan 2021Image display, Image operationsLecture
420 jan 2021Image operationsLecture
521 jan 2021Interpolation, Image file formatLecture
627 jan 2021Geometric transformationsLecture
730 jan 2021Lecture
83 feb 2021Lecture
94 feb 2021Lecture
1010 feb 2021Lecture
1111 feb 2021Lecture
1217 feb 2021Lecture
1318 feb 2021Lecture
1209 | 1210 |
1211 | 1212 | 1213 | -------------------------------------------------------------------------------- /docs/DIP.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rit-ctrl/Resources/5553bacbb9879fa5eafda40d203e3f5d8a57fc8a/docs/DIP.pdf -------------------------------------------------------------------------------- /docs/ES.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ES 6 | 1103 | 1104 | 1105 | 1108 |
1109 |

Embedded Systems

1110 |

Faculty - Dr. Munesh Singh

1111 | 1112 | 1113 | 1114 | 1115 | 1116 | 1117 | 1118 | 1119 | 1120 | 1121 | 1122 | 1123 | 1124 | 1125 | 1126 | 1127 | 1128 | 1129 | 1130 | 1131 | 1132 | 1133 | 1134 | 1135 | 1136 | 1137 | 1138 | 1139 | 1140 | 1141 | 1142 | 1143 | 1144 | 1145 | 1146 | 1147 | 1148 | 1149 | 1150 | 1151 | 1152 | 1153 | 1154 | 1155 | 1156 | 1157 | 1158 | 1159 | 1160 | 1161 | 1162 | 1163 | 1164 | 1165 | 1166 | 1167 | 1168 | 1169 | 1170 | 1171 | 1172 | 1173 | 1174 | 1175 | 1176 | 1177 | 1178 | 1179 | 1180 | 1181 | 1182 | 1183 | 1184 | 1185 | 1186 | 1187 | 1188 | 1189 | 1190 | 1191 | 1192 | 1193 | 1194 | 1195 | 1196 | 1197 | 1198 | 1199 | 1200 | 1201 | 1202 | 1203 | 1204 | 1205 | 1206 | 1207 | 1208 | 1209 | 1210 | 1211 | 1212 | 1213 | 1214 | 1215 | 1216 | 1217 | 1218 | 1219 | 1220 | 1221 | 1222 | 1223 | 1224 | 1225 | 1226 | 1227 | 1228 | 1229 | 1230 | 1231 | 1232 | 1233 | 1234 | 1235 | 1236 | 1237 | 1238 | 1239 | 1240 | 1241 | 1242 |
SessionTopicPPTRecordings
Lec 1 4/1Overview of embedded systemsSlidesLecture
Lec 2 7/1Lecture
Lec 3 8/1Lecture
Lec 4 11/1Design Considerations of Embedded SystemsSlidesLecture
Lec 5 15/1Arch of ARMSlidesLecture
Lec 6 19/1ARM ISASlidesLecture
Lec 7 21/1ARM ISALecture
Lec 8 22/1ARM ISA, Intro to ARM Cortex-M4F and its peripheralsSlides Lecture
Lec 9 25/1Lecture
Lec 10 28/1Input Output DevicesLecture
Lec 11 29/1Lecture
Lec 12 1/2Digital to Analog WorldSlidesLecture
Lec 13 4/2Analog to DigitalSlidesLecture
Lec 14 5/2Lecture
Lec 15 8/2Discussion sessionLecture
Lec 16 11/2Lecture
Lec 17 12/2PWMSlidesLecture
Lec 18 15/2Lecture
Lec 19 18/2GPTMSlidesLecture
Lec 20 22/2Lecture
1243 | 1246 |

Practice

1247 | 1248 | 1249 | 1250 | 1251 | 1252 | 1253 | 1254 | 1255 | 1256 | 1257 | 1258 | 1259 | 1260 | 1261 | 1262 | 1263 | 1264 | 1265 | 1266 | 1267 | 1268 | 1269 | 1270 | 1271 | 1272 | 1273 | 1274 | 1275 | 1276 | 1277 | 1278 | 1279 | 1280 | 1281 | 1282 | 1283 | 1284 | 1285 | 1286 | 1287 | 1288 | 1289 | 1290 | 1291 | 1292 | 1293 | 1294 |
SessionTopicPPTRecordings
Intro sessionLecture
Practice 1Blinking LEDsSlidesLecture
Practice 2Blinking LEDs using switchSlidesLecture
Practice 3Blinking LEDs using 2 switchesSlides
Practice 4DAC using R-2R ladderSlidesLecture
Practice 5ADC to digital conversionSlidesLecture
1295 | 1296 |
1297 | 1298 | 1299 | -------------------------------------------------------------------------------- /docs/ES.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rit-ctrl/Resources/5553bacbb9879fa5eafda40d203e3f5d8a57fc8a/docs/ES.pdf -------------------------------------------------------------------------------- /docs/HCI.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | HCI 6 | 1103 | 1104 | 1105 | 1108 |
1109 |

Human Computer Interaction

1110 |

Faculty - Dr.B Sivaselvan

1111 |

Schedule

1112 | 1116 | 1117 | 1118 | 1119 | 1120 | 1121 | 1122 | 1123 | 1124 | 1125 | 1126 | 1127 | 1128 | 1129 | 1130 | 1131 | 1132 | 1133 | 1134 | 1135 | 1136 | 1137 | 1138 | 1139 | 1140 | 1141 | 1142 | 1143 | 1144 | 1145 | 1146 | 1147 | 1148 | 1149 | 1150 | 1151 | 1152 | 1153 | 1154 | 1155 | 1156 | 1157 | 1158 | 1159 | 1160 | 1161 | 1162 | 1163 | 1164 | 1165 | 1166 | 1167 | 1168 | 1169 | 1170 | 1171 | 1172 | 1173 | 1174 | 1175 | 1176 | 1177 | 1178 | 1179 | 1180 | 1181 | 1182 | 1183 | 1184 | 1185 | 1186 | 1187 | 1188 | 1189 | 1190 | 1191 | 1192 | 1193 | 1194 | 1195 | 1196 | 1197 | 1198 | 1199 |
LectureTopicPDFVideo
Lec 1IntroSlidesLecture 1
Lec 2UsabilitySlidesLecture 2
Lec 3More on usabilitySlidesLecture 3
Lec 4Mental ModelSlidesLecture 3
Lec 5More on mental modelSlidesLecture 3
Lec 6Interface designSlidesLecture 3
Lec 7SlidesLecture
Lec 8SlidesLecture
Lec 9SlidesLecture
Lec 10SlidesLecture
Lec 11SlidesLecture
Lec 12SlidesLecture
1200 | 1201 |
1202 | 1203 | 1204 | -------------------------------------------------------------------------------- /docs/HCI.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rit-ctrl/Resources/5553bacbb9879fa5eafda40d203e3f5d8a57fc8a/docs/HCI.pdf -------------------------------------------------------------------------------- /docs/OS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rit-ctrl/Resources/5553bacbb9879fa5eafda40d203e3f5d8a57fc8a/docs/OS.pdf -------------------------------------------------------------------------------- /docs/PR.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PR 6 | 1103 | 1104 | 1105 | 1108 |
1109 |

Pattern Recognition

1110 |

Faculty - Dr. Umarani Jayaraman

1111 |

Schedule

1112 | 1117 |

Text Book

1118 |

Syllabus

1119 | 1120 | 1121 | 1122 | 1123 | 1124 | 1125 | 1126 | 1127 | 1128 | 1129 | 1130 | 1131 | 1132 | 1133 | 1134 | 1135 | 1136 | 1137 | 1138 | 1139 | 1140 | 1141 | 1142 | 1143 | 1144 | 1145 | 1146 | 1147 | 1148 | 1149 | 1150 | 1151 | 1152 | 1153 | 1154 | 1155 | 1156 | 1157 | 1158 | 1159 | 1160 | 1161 | 1162 | 1163 | 1164 | 1165 | 1166 | 1167 | 1168 | 1169 | 1170 | 1171 | 1172 | 1173 | 1174 | 1175 | 1176 | 1177 | 1178 | 1179 | 1180 | 1181 | 1182 | 1183 | 1184 | 1185 | 1186 | 1187 | 1188 | 1189 | 1190 | 1191 | 1192 | 1193 | 1194 | 1195 | 1196 | 1197 | 1198 | 1199 | 1200 | 1201 | 1202 | 1203 | 1204 | 1205 | 1206 | 1207 | 1208 | 1209 | 1210 | 1211 | 1212 | 1213 | 1214 | 1215 | 1216 | 1217 | 1218 | 1219 | 1220 | 1221 | 1222 | 1223 | 1224 | 1225 | 1226 | 1227 | 1228 | 1229 | 1230 | 1231 | 1232 | 1233 | 1234 | 1235 | 1236 | 1237 | 1238 | 1239 | 1240 | 1241 | 1242 | 1243 | 1244 |
LectureTopicPDFVideo
Lec 1PR introductionSlidesLecture
Lec 2Paradigms of PRSlidesLecture
Lec 3Pattern Recognition systemSlidesLecture
Lec 4Lecture
Lec 5Lecture
Lec 6Proximity measuresSlidesLecture
Lec 7Metric measuresLecture
Lec 8Mahalanobis distanceLecture
Lec 9Non metric measuresSlidesLecture
Lec 10 (2/2/21)Bayesian Decision TheorySlidesLecture
Lec 11 (4/2/21)Bayesian Decision Theory ExampleSlidesLecture
Lec 12 (8/2/21)Bayes RiskSlidesLecture
Lec 13 (9/2/21)Lecture
Lec 14 (11/2/21)Full chapter slidesLecture
Lec 15 (15/2/21)Lecture
Lec 16 (16/2/21)JamboardLecture
Lec 17 (18/2/21)JamboardLecture
Lec 18 (19/2/21)JamboardLecture
Lec 19 (22/2/21)SlidesLecture
1245 | 1248 |
1249 | 1250 | 1251 | -------------------------------------------------------------------------------- /docs/PR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rit-ctrl/Resources/5553bacbb9879fa5eafda40d203e3f5d8a57fc8a/docs/PR.pdf -------------------------------------------------------------------------------- /url_changer.py: -------------------------------------------------------------------------------- 1 | from os import remove,listdir 2 | 3 | def convert(content): 4 | if('open?id=' not in content): 5 | return content 6 | [text, url] = content.split('(') 7 | url = url.split(')')[0] 8 | [x, y] = url[0:-11].split('open?id=') 9 | ret = text+'('+x+'file/d/'+y+'/view)' 10 | return ret 11 | 12 | def change_url(filename): 13 | 14 | f = open(filename, "r") 15 | lines = f.readlines() 16 | f.close() 17 | remove(filename) 18 | new = [] 19 | 20 | for line in lines: 21 | a = line.split('|') 22 | if(len(a) == 1): 23 | new.append(line) 24 | continue 25 | a[3] = convert(a[3]) 26 | a[4] = convert(a[4]) 27 | new.append('|'.join(a)) 28 | 29 | f = open(filename, "w") 30 | f.writelines(new) 31 | f.close() 32 | 33 | if __name__ == "__main__": 34 | for file_ in listdir("Markdown/"): 35 | if file_.endswith(".md"): 36 | change_url("Markdown/"+file_) 37 | --------------------------------------------------------------------------------