Skip to content
View ralphmensah's full-sized avatar
🇬🇭
I'm !new
🇬🇭
I'm !new

Highlights

  • Pro

Block or report ralphmensah

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

Hi there👋, I am Ralph🇬🇭!


  • 🌱 I’m currently learning Javascript(TypeScript).
  • 🧠 I focus on Angular,TypeScript.
  • 👯 I’m looking to collaborate on any open source project 🤝
  • 💪 I code to make the world a better place.
  • 🧩 I'm also passionate about Art, Graphic Design, Motion Graphics.
  • 😄 Pronouns: He/Him

Twitter Follow

Pinned Loading

  1. OpenVc-Camera OpenVc-Camera Public

    Python 2 2

  2. weather weather Public

    Simple Web Application

    HTML 1

  3. A simple Guess program with python A simple Guess program with python
    1
    import random
    2
    
                  
    3
    
                  
    4
    def mainGameEngine():
    5
        for guessesTaken in range(1, 7):
  4. A py Game using Dictionaries A py Game using Dictionaries
    1
    jungle = {
    2
        "grr":"lion",
    3
        "rawr":"tiger",
    4
        "sss":"snakes",
    5
        "chirp":"birds",
  5. Implementing Switch Case with Python Implementing Switch Case with Python
    1
    # Implementing Switch case with Python
    2
    
                  
    3
    # func with params
    4
    def my_func1(var1, var2):
    5
        return f"Total = {var1 + var2}"