Coder Social home page Coder Social logo

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: [email protected]
  • ⚑ 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.

riisherd's Projects

address-book icon address-book

An Address book application to store contact information for our friends and acquaintances.

akan-names icon akan-names

This is an Akan Name Website That users input their dates of birth to calculate their Akan Name.

algorithms icon algorithms

A catalog of data structures and problems with approaches to solve them

bootstrap-5-grids icon bootstrap-5-grids

This is a website showing the different Row and Column used to show case the use of Grid system on Bootstrap 5

burger-palace icon burger-palace

We cook & deliver the tastiest burgers right away to your designated location.

burgerpalace icon burgerpalace

This is a burgerPalace food website that uses a cart functionality to allow User to Buy and Order food

camicroscope icon camicroscope

Digital pathology image viewer with support for human/machine generated annotations and markups.

caracal icon caracal

Conslidated Backend, Auth, and Security Services for caMicroscope

deepspeech-rest-api-kiswahili icon deepspeech-rest-api-kiswahili

This REST API is built on top of Mozilla's DeepSpeech. It is written based on examples provided by Mozilla. It accepts HTTP methods such as GET and POST as well as WebSocket. To perform transcription using HTTP methods is appropriate for relatively short audio files while the WebSocket can be used even for longer audio recordings.

distro icon distro

Docker distribution of camicroscope and all its components

ecommerce-react icon ecommerce-react

eCommerce web application using React, Redux, Redux-Saga, Firebase and SASS.

es6-cheatsheet icon es6-cheatsheet

ES2015 [ES6] cheatsheet containing tips, tricks, best practices and code snippets

goals-app icon goals-app

An Angular app that let's you create your goals and gives you quotes from the world of computing!

great-quote icon great-quote

an application where users can create quotes and have those quotes voted on whether they are terrible or are inspirational.

javascript icon javascript

A repository for All algorithms implemented in Javascript (for educational purposes only)

javascript-algorithms icon javascript-algorithms

πŸ“ Algorithms and data structures implemented in JavaScript with explanations and links to further readings

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.