diff --git a/README.md b/README.md index 11c39d7..20abee8 100644 --- a/README.md +++ b/README.md @@ -40,6 +40,23 @@ during the meetup as well. ## Summary of past events This is the index of summaries of past events. +
+ 2021 + + * [January](./content/2021/January/README.md) + + + + + + + + + + + +
+
2020 @@ -53,8 +70,8 @@ This is the index of summaries of past events. * [August](./content/2020/August/README.md) * [September](./content/2020/September/README.md) * [October](./content/2020/October/README.md) - - + * [November](./content/2020/November/README.md) + * [December](./content/2020/December/README.md)
diff --git a/content/2020/December/README.md b/content/2020/December/README.md new file mode 100644 index 0000000..cba79a9 --- /dev/null +++ b/content/2020/December/README.md @@ -0,0 +1,32 @@ +--- +title: "December PythonPune meetup 2020" +date: 2021-01-31T22:44:16+05:30 +event_date: 2020-12-19T11:00:00+05:30 +url: event/december-pythonpune-meetup-2020 +author: Bhavin Gandhi +featured_image: +categories: +- Event +tags: +- Python Internals +--- + + * [Event page on meetup.com](https://www.meetup.com/PythonPune/events/274919127/) + * [Community Newsletter](./community_news.md) + * [Recording](https://youtu.be/hmrA6uz030M) + +## Memory Management in Python + * **Speaker**: Jatin Goel + ([Twitter](https://twitter.com/_JatinGoel)) + * **Description**: In this talk Jatin does a deep dive into Python's + memory management. He covers things like how variables, objects + are actually stored in memory, how references work, interning, + garbage collection. The talk is concludes with ways to optimize + memory utilization and interesting questions from the audience. + * **References**: + * [Slides](https://drive.google.com/file/d/1RMFPtWGk-0mlTJr5hlntkau_ek-2Ygic/view) + * [Video recording](https://youtu.be/f5u4B74G6aU) + * [Proposal](https://github.com/pythonpune/meetup-talks/issues/135) + +> ***NOTE**: You can reach out to the speaker on the proposal page if +> you want to discuss anything about this talk.* diff --git a/content/2020/March/README.md b/content/2020/March/README.md index 9befb20..bfdaac1 100644 --- a/content/2020/March/README.md +++ b/content/2020/March/README.md @@ -30,7 +30,7 @@ stream. *Read more about our live streaming setup around how one should design things by following these patterns etc. * **References**: - * [Slides](# "Link to the slides will be added soon.") + * [Slides](https://drive.google.com/file/d/1A7JoIbPWxWKWn_3lx05R9M5zFNuLAUyU/view) * [Video recording](https://youtu.be/Py_3SRITFEA) * [Proposal](https://github.com/pythonpune/meetup-talks/issues/82) diff --git a/content/2020/November/README.md b/content/2020/November/README.md new file mode 100644 index 0000000..0cfba95 --- /dev/null +++ b/content/2020/November/README.md @@ -0,0 +1,36 @@ +--- +title: "November PythonPune meetup 2020" +date: 2021-01-31T22:03:16+05:30 +event_date: 2020-11-28T11:00:00+05:30 +url: event/november-pythonpune-meetup-2020 +author: Bhavin Gandhi +featured_image: +categories: +- Event +tags: +- Design patterns +--- + + * [Event page on meetup.com](https://www.meetup.com/PythonPune/events/274505116/) + * [Community Newsletter](./community_news.md) + * [Recording](https://youtu.be/Sd_zW4lNa_w) + +## Design Patterns and Python: Structural Design Patterns + * **Speaker**: A.P. Rajshekhar + ([blog](https://aprajshekhar.wordpress.com/), + [Twitter](https://twitter.com/aprajshekhar)) + * **Description**: This is the second talk related to design + patterns by A.P. This talk covered structural design patterns with + more focus on Facade and Proxy patterns. It basically talks about + how to compose different components when it comes to developing + applications. + * **References**: + * [Part I: Design Patterns and Python: Creational + Patterns](https://pythonpune.in/event/march-pythonpune-meetup-2020/#design-patterns-and-python-creational-patterns) + * [Slides](https://drive.google.com/file/d/11IzsTSiMQiyb-1XL7HSlMFz-qwKz0N2T/view) + * [Martin Fowler's blog](https://martinfowler.com/) + * [Video recording](https://youtu.be/sugBwS2Aflo) + * [Proposal](https://github.com/pythonpune/meetup-talks/issues/122) + +> ***NOTE**: You can reach out to the speaker on the proposal page if +> you want to discuss anything about this talk.* diff --git a/content/2021/January/README.md b/content/2021/January/README.md new file mode 100644 index 0000000..4c84df6 --- /dev/null +++ b/content/2021/January/README.md @@ -0,0 +1,33 @@ +--- +title: "January PythonPune meetup 2021" +date: 2021-01-31T23:16:07+05:30 +event_date: 2021-01-23T11:00:00+05:30 +url: event/january-pythonpune-meetup-2021 +author: Bhavin Gandhi +featured_image: +categories: +- Event +tags: +- Python Internals +--- + + * [Event page on meetup.com](https://www.meetup.com/PythonPune/events/275599702/) + * [Community Newsletter](./community_news.md) + * [Recording](https://youtu.be/cEYwfeAXGwQ) + +## Context Managers: Manage your resources smartly + * **Speaker**: Pradhvan Bisht ([blog](https://pradhvanbisht.in), + [Twitter](https://twitter.com/BishtPradhvan)) + * **Description**: In this talk Pradhvan sheds light on the context + managers in Python. He covers things like the `with` statement, + creating your own context manager and the ` @contextmanager` + decorator. He also shows some real-life examples of context + managers. + * **References**: + * [Slides](http://bit.ly/ContextManagersSlides) + * [Blog post](https://pradhvan.scrollstack.com/post/2771/Context-Managers-in-Python) + * [Video recording](https://youtu.be/6x1AoF8yq8o) + * [Proposal](https://github.com/pythonpune/meetup-talks/issues/139) + +> ***NOTE**: You can reach out to the speaker on the proposal page if +> you want to discuss anything about this talk.*