Skip to content
View sneakykiwi's full-sized avatar
🏠
Working from home
🏠
Working from home

Highlights

  • Pro

Organizations

@PyroPreme
Block or Report

Block or report sneakykiwi

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
sneakykiwi/README.md

Hi 👋, I'm Andreas

I am an experienced Backend & DevOps developer. Below you are able to find many of the technologies I am currently using in production environments

sneakykiwi

aescipher

Languages and Tools:

cplusplus docker elasticsearch erlang express flask git go grafana graphql javascript kafka kibana kubernetes nginx nodejs postgresql python rabbitMQ redis typescript elixir

Pinned Loading

  1. bmak-tools bmak-tools Public

    Contains many helper functions to help you generate Akamai cookies, also includes challenge solver

    Go 47 5

  2. supreme-monitor supreme-monitor Public

    Made by Kiwi#4114

    Go 16 1

  3. go-broadcast go-broadcast Public

    An easy way of creating a single source of information and having multiple goroutines subscribe to it.

    Go 7

  4. An async scheduler that takes in a m... An async scheduler that takes in a max queue size, workers and a function to run. You spawn a scheduler instance and then await functions, they run in the loop concurrently.
    1
    class Scheduler:
    2
        def __init__(self, max_workers: int, queue_maxsize: int = None):
    3
            self.max_workers = max_workers
    4
            self._queue_maxsize = queue_maxsize
    5
            self.queue = None