├── .gitattributes ├── static └── CC-by-NC-SA.png ├── humans.txt ├── .editorconfig ├── CHANGELOG.md ├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ └── talk-proposal.yaml └── workflows │ └── stale.yml ├── .gitignore ├── assets ├── js │ ├── youtube.js │ ├── main.js │ └── controller.js └── css │ └── main.css ├── README.md ├── old_videos.json ├── videos.json ├── index.html └── guidelines.md /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /static/CC-by-NC-SA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pydelhi/talks/HEAD/static/CC-by-NC-SA.png -------------------------------------------------------------------------------- /humans.txt: -------------------------------------------------------------------------------- 1 | Code Contributors 2 | ================= 3 | 4 | Saurabh Kumar (gh: theskumar / @_theskumar)* 5 | 6 | * Possesses commit rights 7 | 8 | Video Management 9 | ================= 10 | Vinay Dahiya (gh: vinaykrdahiya / @01_vkd) 11 | 12 | Special Thanks 13 | =============== 14 | 15 | The following haven't provided code directly, but have provided guidance and advice. 16 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # http://editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | charset = utf-8 7 | end_of_line = lf 8 | insert_final_newline = true 9 | trim_trailing_whitespace = true 10 | 11 | [*.{py,rst,ini}] 12 | indent_style = space 13 | indent_size = 4 14 | 15 | [*.yml] 16 | indent_style = space 17 | indent_size = 2 18 | 19 | [*.md] 20 | trim_trailing_whitespace = false 21 | 22 | [Makefile] 23 | indent_style = tab 24 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | All notable changes to this project will be documented in this file. 3 | This project adheres to [Semantic Versioning](http://semver.org/). 4 | 5 | ## [Unreleased][unreleased] 6 | ### Added 7 | - Add license to README. 8 | - `humans.txt` to recognize the human efforts behind this project. 9 | - Open issues count badge 10 | - This CHANGELOG file, based on the guidelines from http://keepachangelog.com/. 11 | - Th `.editorconfig` file to fix editor differences. 12 | - README with list of talks 13 | 14 | [unreleased]: https://github.com/pydelhi/talks/compare/v0.0.0...HEAD 15 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: true 2 | contact_links: 3 | - name: 💬 PyDelhi WhatsApp 4 | url: https://chat.whatsapp.com/IUA2o1Xu8w8LmaZ8bw0nbb 5 | about: Please use the WhatsApp community to connect with fellow Pythonistas in and around Delhi/NCR. 6 | - name: 💬 PyDelhi Telegram 7 | url: https://t.me/PyDelhi_official 8 | about: Please use the Telegram group to connect with fellow Pythonistas in and around Delhi/NCR. 9 | - name: Q/A Forum 10 | url: https://github.com/orgs/pydelhi/discussions 11 | about: Use the forum to ask questions about the meetup, help us with Sponsorship, or anything else. 12 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Created by https://www.gitignore.io 2 | 3 | ### OSX ### 4 | .DS_Store 5 | .AppleDouble 6 | .LSOverride 7 | 8 | # Icon must end with two \r 9 | Icon 10 | 11 | # Thumbnails 12 | ._* 13 | 14 | # Files that might appear in the root of a volume 15 | .DocumentRevisions-V100 16 | .fseventsd 17 | .Spotlight-V100 18 | .TemporaryItems 19 | .Trashes 20 | .VolumeIcon.icns 21 | 22 | # Directories potentially created on remote AFP share 23 | .AppleDB 24 | .AppleDesktop 25 | Network Trash Folder 26 | Temporary Items 27 | .apdisk 28 | 29 | 30 | ### Linux ### 31 | *~ 32 | 33 | # KDE directory preferences 34 | .directory 35 | 36 | # Linux trash folder which might appear on any partition or disk 37 | .Trash-* 38 | 39 | -------------------------------------------------------------------------------- /assets/js/youtube.js: -------------------------------------------------------------------------------- 1 | // Asynchronously load the YouTube API 2 | var tag = document.createElement('script'); 3 | tag.src = 'https://www.youtube.com/iframe_api'; 4 | var firstScriptTag = document.getElementsByTagName('script')[0]; 5 | firstScriptTag.parentNode.insertBefore(tag, firstScriptTag); 6 | 7 | // Creates an