Skip to content
View albscui's full-sized avatar
Block or Report

Block or report albscui

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

  1. 6.824 6.824 Public

    Distributed Systems

    Go

  2. dotfiles dotfiles Public

    Shell

  3. proglog proglog Public

    From Distributed Services with Go

    Go

  4. Concurrency with coroutines in Python Concurrency with coroutines in Python
    1
    """
    2
    Credit: https://youtu.be/MCs5OvhV9S4
    3
    4
    Example concurrent server impelmented with coroutines not threads.
    5
  5. Postgres trigger and listener mechan... Postgres trigger and listener mechanism (Go)
    1
    # How to listen to events in Postgres (with a bit of Go)
    2
    
                  
    3
    Postgres has built-in mechanism for notifying clients (listeners) of events such as `INSERT`, `UPDATE`, and `DELETE` on tables.
    4
    
                  
    5
    > Note that for this to work, a listener must have a dedicated direct connection to Postgres. Connection poolers like pgbouncer would not work.