Skip to content
View Bmohsen's full-sized avatar
๐ŸŒ
Working from home
๐ŸŒ
Working from home
  • World
  • Shiraz, Iran
  • 09:26 (UTC +03:30)
Block or Report

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
  • ๐Ÿ‘‹ Hi, Iโ€™m @Bmohsen
  • ๐Ÿ‘€ Iโ€™m interested in Books, Movies and Cutting Edge tech
  • ๐Ÿ’ช My Skills and toolset:
  • My Skills
  • ๐ŸŒฑ Iโ€™m currently learning GO ๐Ÿฆซ
  • Go
  • ๐Ÿ“ซ How to reach me:

Pinned

  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
      }