Skip to content
View BennoAlif's full-sized avatar

Highlights

  • Pro

Block or report BennoAlif

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

Hi 👋, I'm Benno

Pinned Loading

  1. rust-cats-social rust-cats-social Public

    Rust

  2. ps-cats-social ps-cats-social Public

    Go

  3. Simple Multi-threaded TCP Server in ... Simple Multi-threaded TCP Server in Rust
    1
    use std::io::{Read, Write};
    2
    use std::net::{TcpListener, TcpStream};
    3
    
                  
    4
    fn handle_client(mut stream: TcpStream) {
    5
        let mut buffer = [0; 1024];
  4. currencyFormat.js currencyFormat.js
    1
    new Intl.NumberFormat("en-US", {style: "currency", currency: "USD"}).format(20);
    2
    //"$20.00"
    3
    
                  
    4
    new Intl.NumberFormat("ja-JP", {style: "currency", currency: "jpy"}).format(2000);
    5
    //"¥2,000"