Skip to content
View QuittyMR's full-sized avatar

Block or report QuittyMR

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

I solve technical issues.

On good days, i also prevent them from happening in the first place.

I do Python, Scala, Go, JS when i have to, Java when i really have to and C if you let me.
Currently slightly infatuated with Groovy, but it will blow over.

Pinned Loading

  1. akka-http-authenticator-sample akka-http-authenticator-sample Public

    Scalable authentication and user-management on an actor-system

    Scala

  2. etlas-collector etlas-collector Public

    Imperative, horizontally scalable ETL-framework

    Python

  3. json-digger json-digger Public

    Low footprint, smart JSON comparison tool

    JavaScript

  4. scraper scraper Public

    Straightforward web-scraping library for Go, inspired by Beautifulsoup

    HTML

  5. twitter-clone-sample twitter-clone-sample Public

    Massively concurrent pub/sub on Akka actors

    Scala

  6. Collect all entity sizes in a Postgr... Collect all entity sizes in a Postgres DB in high resolution
    1
    SELECT pg_statio_user_tables.schemaname,
    2
        pg_statio_user_tables.relname,
    3
        pg_size_pretty(pg_total_relation_size(pg_statio_user_tables.relid::regclass)) AS total_size,
    4
        pg_size_pretty(pg_relation_size(pg_statio_user_tables.relid::regclass, 'main'::text)) AS relation_size_main,
    5
        pg_size_pretty(pg_relation_size(pg_statio_user_tables.relid::regclass, 'fsm'::text)) AS relation_size_fsm,