UofTCoders / Events

University of Toronto Coders Events
https://uoftcoders.github.io/studyGroup/#events
30 stars 14 forks source link

Lightning Demos: Python - November 5 #288

Closed aays closed 3 years ago

aays commented 4 years ago

What's something cool you've done in Python recently? Any useful package or trick you've found or learned about? Come by and either present something or sit back and watch others' demos!

There are no rules with Lightning Demos besides demos being no more than 5-10 minutes in length and focusing primarily on the code itself. Anyone is welcome to present!

Where: Zoom (Meeting ID: 861 0071 5008, password: coders - link here) When: Thursday, November 5, from 19:00 - 20:00 Instructor: n/a Skill level: n/a

Installation Instructions: n/a

Note: Our sessions will all be held online until further notice, instead of at the MADLab.

jessexknight commented 4 years ago

Hey @aays! I might not be able to attend, but wanted to share some fitting python "gists", in case you'd like to share somehow on Thurs:

jessexknight commented 4 years ago

Example output from the gif-maker, since it's not in the gist:

radar

aays commented 3 years ago

@jessexknight Awesome stuff! Will definitely try to share these if you're not able to make it!

aays commented 3 years ago

Some things that were covered past the above list:

Thanks all for a great session!

QuLogic commented 3 years ago

Also mentioned:

jessexknight commented 3 years ago

Thanks @QuLogic!

You reminded me, the reason I made the web server script vs your solution is: to force the server to assume the default file extension is .html, since the links on my site omit the extension so that the URLs are pretty. Most production servers (e.g. GitHub Pages) will happily load index.html given the URL index, but python3 -m http.server will not, complaining that index does not exist.