Skip to content
View RichieOrito's full-sized avatar
πŸ˜„
πŸ˜„
Block or Report

Block or report RichieOrito

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

Hi there πŸ‘‹

  • πŸ”­ I’m currently working on a Humanitarian Poverty Web App.
  • 🌱 I’m currently learning Javascript and React.
  • πŸ‘― I’m looking to collaborate on Anything that is out there to improve on human lives.
  • πŸ€” I’m looking for help with Competitive Programming.
  • πŸ’¬ Ask me about anything related with technology.
  • πŸ“« How to reach me: oritorichie2@gmail.com
  • ⚑ Fun fact: Living healthy is an art you should try it.

My Profile.

// Developer Information Object
import java.util.HashMap;
import java.util.Map;

public class DeveloperInfo {
    public static void main(String[] args) {
        // Developer Information Object
        Map<String, Object> developer = new HashMap<>();
        developer.put("name", "Orito");
        developer.put("age", 20);

        Map<String, String> hobbies = new HashMap<>();
        hobbies.put("general", "Health & Fitness");
        hobbies.put("sports", "Football");
        hobbies.put("dreams", "Travelling the World");
        hobbies.put("usedTo", "Being up all Night chasing that ONE BUG...");
        developer.put("hobbies", hobbies);

        String[] goals = {
            "πŸš€ Become a FullStack Web Developer",
            "🌍 Create a Humanitarian Aid Web App",
            "πŸ’‘ Complete 100 JavaScript/TypeScript Projects",
            "πŸ‘¨πŸΌβ€πŸ’» Ask me for more of my goals!"
        };
        developer.put("goals", goals);

        // Output Developer Information
        System.out.println("Name: " + developer.get("name"));
        System.out.println("Age: " + developer.get("age"));
        System.out.println("Hobbies:");
        Map<String, String> hobbiesMap = (Map<String, String>) developer.get("hobbies");
        for (Map.Entry<String, String> entry : hobbiesMap.entrySet()) {
            System.out.println("  " + entry.getKey() + ": " + entry.getValue());
        }
        System.out.println("Goals:");
        String[] goalsArray = (String[]) developer.get("goals");
        for (int i = 0; i < goalsArray.length; i++) {
            System.out.println("  " + (i + 1) + ". " + goalsArray[i]);
        }
    }
}

alt text

RichieOrito/RichieOrito is a ✨ special ✨ repository because its README.md (this file) appears on your GitHub profile.

Popular repositories

  1. pitchIdea pitchIdea Public

    A Login Application that Allows users to pitch their ideas, the user can post,comment,downvote and aslo upvote on a comment. They can also come up with their own category and other users can pitch …

    Python 1 1

  2. project-guidelines project-guidelines Public

    Forked from elsewhencode/project-guidelines

    A set of best practices for JavaScript projects

    JavaScript 1

  3. week-1-project week-1-project Public

    This is My week-1 project about My favorite website which am passionately about Nature and Wildlife.

    HTML

  4. Markdown-table-image Markdown-table-image Public

    This is my markdown tables,table of content and image insertion work.

  5. streetfood streetfood Public

    This is a food website designed mainly for street food vendors, basically trying to connect to their clients at large and offer them a platform on which they can view and order there favorite meals.

    HTML

  6. infosafaris infosafaris Public

    InfoSafaris Group Project

    HTML