logo FEDIDEVS

PyCon US 2024

Day 4: Talks (278)

What happens when you mandate masks at a conference now that most people no longer wear them but medically vulnerable people are still at risk because ? In the case of , the conference sells out.

Why a masking policy? “Many of us and our fellow community members can’t attend without health and safety guidelines in place. We want PyCon US to be an event that everyone feels safe attending,” organizers explained.

Well done @pycon fosstodon.org/@pycon/112445571

896 676 19

I love @simon’s proposed new term for LLMs: instead of “artificial intelligence”, “imitation intelligence”

95 67 8

what were your favorite Moments from today?! Share in words or pictures!

4 3 4

Okay , I scheduled it. Tomorrow morning at 10am (after the keynote) at the roof terrace, let’s do some improv warmups. Nothing hard or important, just fun.

6 1 4

If you’re at , and you’re neurodivergent, I’ve scheduled an open space at 10:00 (well, just after the main session finishes, so probably more like 10:10 or however it takes to walk across the huge convention center) in 321 (the room furthest from the action, as best suited for neurodivergent folk!).

There’s no agenda, we’ll just get to meet with each other, exchange some contact info if desired, and talk (or type or whatever!).

I hope to see neurodivergent folk tomorrow (Saturday)!

26 19 4

Another accessibility thing that is *HUGE* but never seen as an accessibility thing:

SIGNAGE.

Having signs outside talks saying what talk was next, having signs directing you towards lunch or checkin, etc, is a big deal.

For anxious people, or people who have rejection sensitivity, or people who have social-related trauma, knowing the door you are about to open is the right door is a big deal.

PyConUS did pretty good here!

102 39 3

The conference WiFi at is sadly not robust enough to allow me to clone the cpython repository :(

1 0 3

I'll be talking about using Python to do real-time monitoring of landslide risk at 5:00, in Hall C.

If you're interested in weather, climate issues, citizen science, or anything related, please stop by. :)

8 4 3

Example of using Python to save PDF pages as images.

```
import urllib.request
import pymupdf # pip install PyMuPDF

url = 'pycon-assets.s3.amazonaws.com/'
with urllib.request.urlopen(url) as response:
pdfStream = response.read()

for (n, page) in enumerate(pymupdf.Document(stream=pdfStream).pages(), 1):
imageFilename = f'page-{n}.png'
page.get_pixmap(dpi=300).save(imageFilename)
```

This is the like version, to fit within Mastodon message length limits.

2 1 3

Friends, don't let friends package alone. Come learn about how we are helping scientists make their software better by demystifying the packaging ecosystem . Whether you are a new or seasoned packager this talk is for u. My first pycon main track talk is today at 1030 am in hall c. I'm nervous ! I need friends to get me through 😅 @pyOpenSci

23 11 3