Skip to content
View aenkya's full-sized avatar

Block or report aenkya

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
aenkya/README.md

Hi πŸ‘‹, I'm Bruce

  • πŸ”­ I’m a backend-leaning, full stack Senior Software engineer
  • 🌱 I’m currently learning CS50 AI
  • πŸ“ I sometimes write articles on https://enkya.org/
  • πŸ’¬ Ask me about Systems architecture, event-driven systems, AI & Algorithms
  • πŸ“« How to reach me [email protected]
  • πŸ“„ Know about my experiences: Resume

Pinned Loading

  1. using multi to pick values in parallel using multi to pick values in parallel
    1
    from tornado.gen import multi
    2
    
                  
    3
    async def parallel_fetch(url1, url2):
    4
      resp1, resp2 = await multi([http_client.fetch(url1),
    5
                                 http_client.fetch(url2)])
  2. yield decorated coroutines yield decorated coroutines
    1
    # decorated coroutine
    2
    @gen.coroutine
    3
    def a():
    4
      b = yield c()
    5
      #return and yield can not be used in Python 2 so raise a special exception
  3. ordinal ordinal Public

    a pageRank implementation for CS50 AI

    Python