Skip to content
View Akuma-U1's full-sized avatar
:octocat:
When is my coffee break
:octocat:
When is my coffee break
  • Bob Group
  • Pretoria, South Africa

Block or report Akuma-U1

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. LRU Cache implementation in Typescript LRU Cache implementation in Typescript
    1
    class LRU_Cache<T> extends Map<string,T> {
    2
        private _limit: number;
    3
        constructor(limit: number, entries?: [string, T][]) {
    4
            super(entries);
    5
            this._limit = limit;
  2. Postgres DB Listener in Python with ... Postgres DB Listener in Python with exponential backoff - asyncpg and asyncio
    1
    import asyncio
    2
    import asyncpg
    3
    
                  
    4
    async def listen_for_notifications():
    5
        backoff_times = [1, 2, 4, 8, 16]  # Backoff times in seconds