Skip to content
View Bmohsen's full-sized avatar
🌏
Working from home
🌏
Working from home
  • World
  • Shiraz, Iran
  • 23:10 (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.

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

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

Typing SVG

πŸ› οΈ Tech Stack

Blockchain Development

Solana Rust Web3.js Solidity

Frontend Development

React Next.js Tailwind CSS

Backend Development

Node.js NestJS PHP Laravel Symfony Composer Livewire WordPress Go Python

Databases

MongoDB PostgreSQL MySQL Redis

πŸ“Š GitHub Stats

GitHub Stats GitHub Streak

πŸ“« Connect With Me

Email Discord Twitter LinkedIn

🌱 Currently Learning

fn main() {
    println!("πŸš€ Deep diving into:");
    println!("   - Solana Program Development");
    println!("   - Advanced Rust Concepts");
    println!("   - Web3 Security Patterns");
}

Pinned Loading

  1. 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

  2. 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

  3. 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
      }