Skip to content
View transientvariable's full-sized avatar

Highlights

  • Pro

Block or report transientvariable

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 Loading

  1. ecs-mapping ecs-mapping Public

    Grab bag of resources for mapping data to the Elastic Common Schema (ECS)

    Python 2 1

  2. go-collection go-collection Public

    Towards more ergonomic collections in Go

    Go

  3. Rust: Error Boxing Example Rust: Error Boxing Example
    1
    use std::error;
    2
    use std::fmt;
    3
    use std::io;
    4
    
                  
    5
    type Result<T> = std::result::Result<T, Box<dyn error::Error>>;