-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #145 from bhavin192/summaries
Add summaries for November, December 2020 and January 2021 meetup
- Loading branch information
Showing
5 changed files
with
121 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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.* |