Skip to content

Commit 7e3445d

Browse files
committed
Update for February
1 parent bd74422 commit 7e3445d

3 files changed

Lines changed: 47 additions & 167 deletions

File tree

README.md

Lines changed: 23 additions & 53 deletions
Original file line numberDiff line numberDiff line change
@@ -42,37 +42,9 @@ Learn more about the MadPy Code of Conduct:
4242
https://github.com/madison-python/code-of-conduct
4343

4444

45-
46-
```python
47-
def expand(s: str) -> list[int]:
48-
"""
49-
Turn "1-5,7,9,10-13" into a list of numbers
50-
"""
51-
return [
52-
num
53-
for p in s.split(",")
54-
for a, _, b in [p.partition("-")]
55-
for num in range(int(a), int(b or a) + 1)
56-
]
57-
```
58-
59-
<img src="img/python-snip-expand-str.png" alt="A screenshot of a snippet of python code"/>
60-
61-
62-
```python
63-
expand("1-5, 7, 9, 10-13")
64-
```
65-
66-
67-
68-
69-
[1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 13]
70-
71-
72-
7345
# Sponsor
7446

75-
<center><img src="img/verve-logo.png" alt="Sponsor Logo: Verve Industrial" width="500px"/></center>
47+
<center><img src="img/workday-logo.png" alt="Sponsor Logo: Workday" width="500px"/></center>
7648

7749
# Want more MadPy?
7850

@@ -103,30 +75,28 @@ expand("1-5, 7, 9, 10-13")
10375

10476
### Talk to your employer about Sponsorship!
10577

106-
# MadPy Quick Survey
107-
108-
## Question 1: Social Media -- Where Should MadPy Be?
109-
110-
<img src="img/qr-code-2024-12-12-MadPy-Social-Media.png" alt="QR Code" width=300px />
111-
112-
https://www.bli.do/2024-12-12-MadPy-Social-Media
113-
114-
# MadPy Quick Survey
115-
116-
## Question 2: Office Hours -- Topics You Could Be A Mentor On
117-
118-
<img src="img/qr-code-2024-12-12-MadPy-Office-Hours.png" alt="QR Code" width=300px />
119-
120-
https://www.bli.do/2024-12-12-MadPy-Office-Hours
121-
122-
# MadPy Quick Survey
123-
124-
## Question 3: Favorite Event Types You Want To See More Of
125-
126-
<img src="img/qr-code-2024-12-12-MadPy-Favorite-Events.png" alt="QR Code" width=300px />
127-
128-
https://www.bli.do/2024-12-12-MadPy-Favorite-Events
78+
# MadPy Calendar
79+
80+
**2nd Thursdays of the Month**
81+
<table style="width: 100%; table-layout: fixed; border:none; border-collapse:collapse; cellspacing:0; cellpadding:0">
82+
<tr>
83+
<td style="width: 46%; text-align: center;">
84+
<img src="https://madpy.com/static/images/2025-03-13-Improving-Receipt-Understanding-Social-Card-1792x1024.png" alt="Improving Receipt Understanding @ Fetch" style="width: 100%; height: auto;">
85+
</td>
86+
<td style="width: 27%; text-align: center;">
87+
<img src="img/Unknown-Social-Card.png" alt="TBD" style="width: 100%; height: auto;">
88+
</td>
89+
<td style="width: 27%; text-align: center;">
90+
<img src="img/Unknown-Social-Card.png" alt="TBD" style="width: 100%; height: auto;">
91+
</td>
92+
</tr>
93+
<tr>
94+
<td style="text-align: center;">March 13th<br><strong>Requires online RSVP</strong></td>
95+
<td style="text-align: center;">April 10th</td>
96+
<td style="text-align: center;">May 8th</td>
97+
</tr>
98+
</table>
12999

130-
<img src="https://madpy.com/static/images/2024-12-12-Tests-in-the-Real-World-Social-Card-1792x1024.png" alt="Logo for the MadPy talk" />
100+
<img src="https://madpy.com/static/images/2025-02-13-What-Is-Git-Social-Card-1792x1024.png" alt="Logo for the MadPy talk" />
131101

132102
<!-- [[[end]]] -->

img/workday-logo.png

28.8 KB
Loading

welcome.ipynb

Lines changed: 24 additions & 114 deletions
Original file line numberDiff line numberDiff line change
@@ -79,69 +79,6 @@
7979
"https://github.com/madison-python/code-of-conduct\n"
8080
]
8181
},
82-
{
83-
"cell_type": "code",
84-
"execution_count": 1,
85-
"metadata": {
86-
"editable": true,
87-
"slideshow": {
88-
"slide_type": "skip"
89-
},
90-
"tags": []
91-
},
92-
"outputs": [],
93-
"source": [
94-
"def expand(s: str) -> list[int]:\n",
95-
" \"\"\"\n",
96-
" Turn \"1-5,7,9,10-13\" into a list of numbers\n",
97-
" \"\"\"\n",
98-
" return [\n",
99-
" num\n",
100-
" for p in s.split(\",\")\n",
101-
" for a, _, b in [p.partition(\"-\")]\n",
102-
" for num in range(int(a), int(b or a) + 1)\n",
103-
" ]"
104-
]
105-
},
106-
{
107-
"cell_type": "markdown",
108-
"metadata": {
109-
"editable": true,
110-
"slideshow": {
111-
"slide_type": "slide"
112-
},
113-
"tags": []
114-
},
115-
"source": [
116-
"<img src=\"img/python-snip-expand-str.png\" alt=\"A screenshot of a snippet of python code\"/>"
117-
]
118-
},
119-
{
120-
"cell_type": "code",
121-
"execution_count": 2,
122-
"metadata": {
123-
"editable": true,
124-
"slideshow": {
125-
"slide_type": "fragment"
126-
},
127-
"tags": []
128-
},
129-
"outputs": [
130-
{
131-
"data": {
132-
"text/plain": [
133-
"[1, 2, 3, 4, 5, 7, 9, 10, 11, 12, 13]"
134-
]
135-
},
136-
"execution_count": 2,
137-
"metadata": {},
138-
"output_type": "execute_result"
139-
}
140-
],
141-
"source": [
142-
"expand(\"1-5, 7, 9, 10-13\")"
143-
]
144-
},
14582
{
14683
"cell_type": "markdown",
14784
"metadata": {
@@ -154,7 +91,7 @@
15491
"source": [
15592
"# Sponsor\n",
15693
"\n",
157-
"<center><img src=\"img/verve-logo.png\" alt=\"Sponsor Logo: Verve Industrial\" width=\"500px\"/></center>"
94+
"<center><img src=\"img/workday-logo.png\" alt=\"Sponsor Logo: Workday\" width=\"500px\"/></center>"
15895
]
15996
},
16097
{
@@ -208,7 +145,6 @@
208145
]
209146
},
210147
{
211-
"attachments": {},
212148
"cell_type": "markdown",
213149
"metadata": {
214150
"editable": true,
@@ -218,53 +154,27 @@
218154
"tags": []
219155
},
220156
"source": [
221-
"# MadPy Quick Survey\n",
222-
"\n",
223-
"## Question 1: Social Media -- Where Should MadPy Be?\n",
224-
"\n",
225-
"<img src=\"img/qr-code-2024-12-12-MadPy-Social-Media.png\" alt=\"QR Code\" width=300px />\n",
226-
"\n",
227-
"https://www.bli.do/2024-12-12-MadPy-Social-Media"
228-
]
229-
},
230-
{
231-
"attachments": {},
232-
"cell_type": "markdown",
233-
"metadata": {
234-
"editable": true,
235-
"slideshow": {
236-
"slide_type": "slide"
237-
},
238-
"tags": []
239-
},
240-
"source": [
241-
"# MadPy Quick Survey\n",
242-
"\n",
243-
"## Question 2: Office Hours -- Topics You Could Be A Mentor On\n",
244-
"\n",
245-
"<img src=\"img/qr-code-2024-12-12-MadPy-Office-Hours.png\" alt=\"QR Code\" width=300px />\n",
246-
"\n",
247-
"https://www.bli.do/2024-12-12-MadPy-Office-Hours"
248-
]
249-
},
250-
{
251-
"attachments": {},
252-
"cell_type": "markdown",
253-
"metadata": {
254-
"editable": true,
255-
"slideshow": {
256-
"slide_type": "slide"
257-
},
258-
"tags": []
259-
},
260-
"source": [
261-
"# MadPy Quick Survey\n",
262-
"\n",
263-
"## Question 3: Favorite Event Types You Want To See More Of\n",
264-
"\n",
265-
"<img src=\"img/qr-code-2024-12-12-MadPy-Favorite-Events.png\" alt=\"QR Code\" width=300px />\n",
266-
"\n",
267-
"https://www.bli.do/2024-12-12-MadPy-Favorite-Events"
157+
"# MadPy Calendar\n",
158+
"\n",
159+
"**2nd Thursdays of the Month**\n",
160+
"<table style=\"width: 100%; table-layout: fixed; border:none; border-collapse:collapse; cellspacing:0; cellpadding:0\">\n",
161+
" <tr>\n",
162+
" <td style=\"width: 46%; text-align: center;\">\n",
163+
" <img src=\"https://madpy.com/static/images/2025-03-13-Improving-Receipt-Understanding-Social-Card-1792x1024.png\" alt=\"Improving Receipt Understanding @ Fetch\" style=\"width: 100%; height: auto;\">\n",
164+
" </td>\n",
165+
" <td style=\"width: 27%; text-align: center;\">\n",
166+
" <img src=\"img/Unknown-Social-Card.png\" alt=\"TBD\" style=\"width: 100%; height: auto;\">\n",
167+
" </td>\n",
168+
" <td style=\"width: 27%; text-align: center;\">\n",
169+
" <img src=\"img/Unknown-Social-Card.png\" alt=\"TBD\" style=\"width: 100%; height: auto;\">\n",
170+
" </td>\n",
171+
" </tr>\n",
172+
" <tr>\n",
173+
" <td style=\"text-align: center;\">March 13th<br><strong>Requires online RSVP</strong></td>\n",
174+
" <td style=\"text-align: center;\">April 10th</td>\n",
175+
" <td style=\"text-align: center;\">May 8th</td>\n",
176+
" </tr>\n",
177+
"</table>"
268178
]
269179
},
270180
{
@@ -277,7 +187,7 @@
277187
"tags": []
278188
},
279189
"source": [
280-
"<img src=\"https://madpy.com/static/images/2024-12-12-Tests-in-the-Real-World-Social-Card-1792x1024.png\" alt=\"Logo for the MadPy talk\" />"
190+
"<img src=\"https://madpy.com/static/images/2025-02-13-What-Is-Git-Social-Card-1792x1024.png\" alt=\"Logo for the MadPy talk\" />"
281191
]
282192
}
283193
],
@@ -297,7 +207,7 @@
297207
"name": "python",
298208
"nbconvert_exporter": "python",
299209
"pygments_lexer": "ipython3",
300-
"version": "3.12.3"
210+
"version": "3.13.1"
301211
}
302212
},
303213
"nbformat": 4,

0 commit comments

Comments
 (0)