Skip to content
View wungad's full-sized avatar
💭
single
💭
single

Block or report wungad

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Explaining async/await to my mom. Explaining async/await to my mom.
    1
    #!/usr/bin/env python3
    2
    '''
    3
    Things to remember:
    4
    - coroutines are at the heart of asynchronous IO
    5
    - event loop manages coroutines
  2. Explaining frames to my dad Explaining frames to my dad
    1
    import inspect
    2
    
                  
    3
    def target():
    4
        # currentframe() is needed only for getouterframes() to
    5
        # have a reference where in the stack to start.