Skip to content
View Bmohsen's full-sized avatar
🌏
Working from home
🌏
Working from home
  • World
  • Shiraz, Iran
  • 16:06 (UTC +03:30)

Block or report Bmohsen

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
Bmohsen/README.md

πŸ’» Mohsen | Full-Stack Dev & Blockchain Explorer

Typing SVG


Hacker Banner

🧰 Tech Arsenal

βš™οΈ Blockchain & Web3

Rust Solana Web3.js Solidity

🎯 Frontend

React Next.js Tailwind CSS

πŸ”§ Backend

Node.js NestJS Laravel Symfony Livewire Go Python C++

πŸ—„οΈ Databases

MongoDB PostgreSQL MySQL Redis


πŸ“Š GitHub Matrix


---

🧠 Currently Hacking With

struct Developer {
    name: String,
    role: String,
    passion: Vec<String>,
}

fn main() {
    let mohsen = Developer {
        name: "Mohsen".to_string(),
        role: "Full-Stack & Blockchain Engineer".to_string(),
        passion: vec![
            "πŸ” Smart Contracts".to_string(),
            "πŸš€ High-Performance Systems".to_string(),
            "πŸ¦€ Rust & C++ Internals".to_string()
        ],
    };
    
    println!("Ready to deploy: {:?}", mohsen);
}

Blackhole Banner

Email Discord Twitter LinkedIn

Pinned Loading

  1. frida frida Public

    πŸ”’ Advanced system monitoring and data collection framework written in Rust. Leverages memory safety and performance for keystroke logging, device tracking, storage analysis, process monitoring, and…

    Rust 9 1

  2. reddit-telegram-scrapp-reddit reddit-telegram-scrapp-reddit Public

    scrap hot memes from /r/memes sub in reddit and send it to telegram channel

    Python 5

  3. github2gitea github2gitea Public

    useful scripts for easily migrating, deleting and etc ... of your organization's repositories from github to your own hosted Gitea! tested on latest stable build of Gitea and api version v1.

    Python

  4. 2d array JavaScript function 2d array JavaScript function
    1
    function make2DArray(cols, rows){
    2
      let arr = new Array(cols) 
    3
      for(let i = 0; i < arr.length; i++){
    4
        arr[i] = new Array(rows)
    5
      }