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

Block or report crisidev

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 172 13

  2. qrsync qrsync Public

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

    Rust 18 3

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

    Forked from c-jacquin/gnome-shell-extension-typescript-template

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

    TypeScript 1 1

  4. awslabs/flowgger awslabs/flowgger Public

    A fast data collector in Rust

    Rust 873 60

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

    Rust bindings for libssh2

    Rust 543 156

  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