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

Block or report adotg

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. helson helson Public

    JSON Schema for API request / response validation

    JavaScript 5

  2. client client Public

    Forked from keybase/client

    Keybase Go Library, Client, Service, OS X, iOS, Android, Electron

    Go

  3. chartshq/datamodel chartshq/datamodel Public archive

    Relational algebra compliant in memory tabular data store.

    61 7

  4. chartshq/muze chartshq/muze Public archive

    Composable data visualisation library for web with a data-first approach now powered by WebAssembly

    1.2k 43

  5. knn-what-how-why knn-what-how-why Public

    What is knn? How is knn done? Why is knn needed?

    Jupyter Notebook 11 8

  6. Docker commands as part of auto docker Docker commands as part of auto docker
    1
    # Delete all docker images
    2
    docker images | awk {'print $3'} | xargs docker rmi
    3
    
                  
    4
    # Delete docker images which is tagged <none>
    5
    docker images | awk {'print $1 "\t" $3'} | grep none | awk {'print $2'} | xargs docker rmi