Skip to content
View orios010's full-sized avatar
:octocat:
:octocat:

Block or report orios010

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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
orios010/README.md

Hi, I'm Oliva Rios!

Software Enginner at Florida International University
Undergrad Researcher Student at Florida International University

Visitor Count

Linkedin Badge GitHub orios010

A little more about me...

public class About {
  // Instance Variables
  String name;
  String city;
  String state;

  // Constructor Declaration of Class
  public About(String name, String city, String state) {
    this.name = name;
    this.city = city;
    this.state = state;
  }

  // method 1
  public String getName() {
    return name;
  }

  // method 2
  public String getCity() {
    return city;
  }

  // method 3
  public String getState() {
    return state;
  }

  @Override
  public String toString() {
    return ("My name is " + this.getName() + " and I'm a software developer. \nI'm from Cuba, living in " +
      this.getCity() + "," + this.getState()) + " and currenty at FIU.";
  }

  public static void main(String[] args) {
    About me = new About("Olivia Rios", "miami", "Florida");
    System.out.println(me.toString());
  }
}

Technologies

Python JAVA JavaScript TypeScript Swift

Spring React

Git GitHub GitLab

IntelliJ IDEA PyCharm Visual Studio Code

Firebase PosrgreSQL

Top Langs

GitHub stats

GitHub streak stats

Popular repositories Loading

  1. TicTacToe TicTacToe Public

    Java

  2. iOSPrework iOSPrework Public

    Codepath prework for iOS Development

  3. TipCalculator TipCalculator Public

    Forked from dcond007/TipCalculator

    Swift

  4. Flix-iOS Flix-iOS Public

    Swift 1

  5. MartinHeinz MartinHeinz Public

    Forked from MartinHeinz/MartinHeinz

    My GitHub Profile README. Don't just fork, star it, so others can find it too! ๐Ÿ‘€

  6. metrics metrics Public

    Forked from lowlighter/metrics

    ๐Ÿ“Š An infographics generator with 30+ plugins and 200+ options to display stats about your GitHub account and render them as SVG, Markdown, PDF or JSON!

    JavaScript