Skip to content
View sergera's full-sized avatar
Block or Report

Block or report sergera

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
sergera/README.md

Stay a while, and listen!

I have a B.Sc. in Computer Engineering, endless curiosity, and a knack for digesting new tech. With development experience both in multi-national corporations and startups, I'm constantly looking for new horizons.

  • 🧠 I'm currently studying Python, authentication, and event driven architectures.
  • 🌎 Fluent English.
  • 🤝 Feel free to get in touch about collaborations, or just for networking!
  • ❓ I'm an ex-musician, and had a rock band, you can listen to our sound here (it's in Portuguese).

Contact

Let's Talk Business Linkedin Profile

Tech

HTML5 CSS3 Javascript Typescript React React Router Redux Python Numpy Pandas Flask Fast API Go Rust Docker Kafka PostgreSQL MongoDB JSON Postman Insomnia

sergera's GitHub stats Top Languages

Pinned

  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::*;