Skip to content
View crisidev's full-sized avatar
πŸ¦€
πŸ¦€
Block or Report

Block or report crisidev

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

πŸ¦€ Hello there! πŸ¦€

I am Bigo, italian living in London πŸ‡¬πŸ‡§!

🚧 I enjoy building things with ...

Rust Python GoLang

πŸ”­ I’m currently working on ...

πŸ’» Writing code ...

I maintain a pretty complex and bloated Neovim IDE configuration that makes my editor as powerful as IntelliJ or Vscode!

Pinned

  1. smithy-lang/smithy-rs smithy-lang/smithy-rs Public

    Code generation for the AWS SDK for Rust, as well as server and generic smithy client generation.

    Rust 454 176

  2. awslabs/flowgger awslabs/flowgger Public

    A fast data collector in Rust

    Rust 809 53

  3. alexcrichton/ssh2-rs alexcrichton/ssh2-rs Public

    Rust bindings for libssh2

    Rust 459 141

  4. ansible/tacacs_plus ansible/tacacs_plus Public

    A Python-based TACACS+ client that supports authentication, authorization and accounting.

    Python 77 28

  5. qrsync qrsync Public

    Utility to copy files over WiFi to/from mobile devices inside a terminal.

    Rust 17 3

  6. Command to export all grafana 2 dash... Command to export all grafana 2 dashboard to JSON using curl
    1
    KEY=XXXXXXXXXXXX
    2
    HOST="https://metrics.crisidev.org"
    3
    
                  
    4
    mkdir -p dashboards && for dash in $(curl -k -H "Authorization: Bearer $KEY" $HOST/api/search\?query\=\& |tr ']' '\n' |cut -d "," -f 5 |grep slug |cut -d\" -f 4); do 
    5
      curl -k -H "Authorization: Bearer $KEY" $HOST/api/dashboards/db/$dash > dashboards/$dash.json