Skip to content
View transientvariable's full-sized avatar
💭
This is the way...
💭
This is the way...

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

    Go file system interface implementation for SeaweedFS.

    Go 1

  2. hold hold Public

    Some useful Abstract Data Types (ADTs) with clean interfaces in Go for representing a collection of elements.

    Go

  3. fs-go fs-go Public

    Reusable file system components for Go.

    Go

  4. 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>>;