@RealBenjizo "Dad" if you're using Python 3.7 or higher, and either "Mom" or "Dad" if you're using an earlier version. Python dictionaries didn't always maintain insertion order. 😁
https://t.co/XsGEZtq3Pq
If you're an educator or interested in being one for Python or anything related to it, come meet up at the open space session 251F this morning to chat, trade tips, share experiences or just hang out! #PyConUS#PyConUS2023
Just had a great time taking a break from talks to play around with #circuitpython thanks to the fine folks at @adafruit. If you're new to #PyConUS don't neglect the Open Spaces, they can lead to some great experiences! #PyConUS2023
Met a lot of great folks yesterday for day one of my first in-person PyCon in 3 years. Looking forward to great talks and conversations this weekend! #PyCon2023#pycon
@techleadhd I won't address your comments about women - the women in the thread have that covered.
But men too can have good careers W/O working 24/7. Lets leave the 1950s in the past and say fathers can be PRESENT and ENGAGED with family too. Breadwinner != Father. Absence == Cowardice
I am a professional software engineer that has been writing JavaScript for 25 years. I am incapable of setting up a modern JavaScript stack from scratch. If I cannot find a start repo with the set of tools I want to build already configured, I'm just stuck.
@fimion Breathing itself is fine I guess, but I'd really like to see a more efficient implementation, and try to abstract away that hard dependency on "oxygen" so I can test it in a vaccum or on Mars.
@kefimochi Practice with the tools and techniques is one part. Practice with having the feeling of not knowing, experimenting, stumbling, and eventually figuring it out is a much bigger part. Keep at it!
@_kaizensoze I've been trying to stress this to my students for years. Tech Trivia is what Google/StackOverflow is for. Coding complex algorithms on a whiteboard from memory is not what the role entails daily. If the interview goes that way, politely excuse yourself. We have to make change.
#gamedev#protip:
instead of optimizing a function, ask yourself if it really needs to be run every single frame?
what if it only ran 6x a second?
instead of tons of work optimizing, in no work you get 10x perf boost
example: ai pathfinding
Writing items on a to-do list on physical paper and realized I indent lines after the first one for single item like I do in Python. #python#programmer#codewritesme
@lucyamorris I feel like this has nothing to do with generations and just points out there's always been (and probably will be) crappy people trying to exploit passionate people for their own gains.
#python tip: __slots__ is underappreciated
* Declares attributes upfront for readability
* Saves significant space
* Speeds up attribute access
* Detects misspelled assignments
It has a somewhat high payoff for so little work invested