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

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

πŸ’» Writing code ...

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

Pinned Loading

  1. bacon-ls bacon-ls Public

    A Language Server for Rust using Bacon diagnostics

    Rust 37 2

  2. qrsync qrsync Public

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

    Rust 17 3

  3. mouse-follows-focus mouse-follows-focus Public

    Forked from swsnr/gnome-shell-extension-typescript-template

    Enable mouse follows focus on Gnome Shell 46+ with multi monitors support

    TypeScript

  4. awslabs/flowgger awslabs/flowgger Public

    A fast data collector in Rust

    Rust 839 56

  5. alexcrichton/ssh2-rs alexcrichton/ssh2-rs Public

    Rust bindings for libssh2

    Rust 494 151

  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