Skip to content
View savvyserg's full-sized avatar

Block or report savvyserg

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. star-notary star-notary Public

    An NFT Marketplace for registering, naming, and trading Stars!

  2. marketplace marketplace Public

    An event driven Marketplace!

  3. truffle-react-dapp-template truffle-react-dapp-template Public template

    A simple react ethereum dApp boilerplate with truffle!

    TypeScript 1

  4. api-search-text api-search-text Public

    A simple API that uses indexed text search on MongoDB.

    Python

  5. Fast, concurrent, i64 snowflake ids ... Fast, concurrent, i64 snowflake ids (inspired by Twitter's implementation) for up to 4 services
    1
    use std::sync::{Arc, Mutex};
    2
    use std::thread::sleep;
    3
    use std::time::{Duration, SystemTime, UNIX_EPOCH};
    4
    
                  
    5
    /*
  6. Abstract rate limiter with channel c... Abstract rate limiter with channel communication, to be used in a separate thread, makes request throttling easy
    1
    use std::collections::VecDeque;
    2
    use std::future::Future;
    3
    use std::pin::Pin;
    4
    
                  
    5
    use eyre::*;