Skip to content
View the-mova's full-sized avatar
🖱️
Setting up my Github
🖱️
Setting up my Github
Block or Report

Block or report the-mova

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

नमस्ते <Namaste> 🙏🏽 It's Good To See You! 💙

I'm Mohit Vaghadiya, but you can simply call me mova. I'm a dedicated computer programmer who finds joy in coding regardless of programming language. Open to collaborating on projects and exploring innovative ideas. I believe that while anyone can code, crafting high-quality code sets one apart.

#!/usr/bin/python
# -*- coding: utf-8 -*-

class Programmer:

    def __init__(me):
        me.name:str = "Mohit Vaghadiya"
        me.other_name:str = "mova"
        me.current_role:str = "Data Engineer"
        me.language_spoken:list = ['en_IN', 'hi_IN', 'gn_IN']
        me.active_since:int = 2011
        me.active_on_github_since:int = 2023

    def say_thank_you(me):
        print('Thanks for dropping by', f'have a great rest of the day! ~ {me.other_name}', sep =', ', end='\n\n')

mova = Programmer()
mova.say_thank_you()

Pinned Loading

  1. Windows ~ Useful commands Windows ~ Useful commands
    1
     ### Generate SSH key with ed25519 cryptography algorithm
    2
     -----------------------------------------------------------------------
    3
    ```
    4
     ssh-keygen -t ed25519 -C "personal github account ~ the-mova"
    5
    ```
  2. Github ~ SSH Config Github ~ SSH Config
    1
    SSH config file to setup and use one or more github account(s)
    2
    
    
    3
    ```
    4
    # Personal github account ~ uses public key
    5
    Host gh_personal