Skip to content
View sabazed's full-sized avatar
🏠
Working from home
🏠
Working from home
Block or Report

Block or report sabazed

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

Hi, I'm Saba

Software engineer with a great passion for programming

class SoftwareEngineer extends ComputerScientist {

    private String name, position;
    private String[] experience;

    public SoftwareEngineer(String name, String position, String[] experience) {
        this.name = name;
        this.position = position;
        this.experience = experience;
    }

    public void helloWorld() {
        System.out.println("Programming is my passion, which encourages me to" +
                           "keep a golden ratio of being both a computer scientist" +
                           "and a developer - best of both worlds, isn't it?");
    }

    public static void main(String[] args) {
        ComputerScientist me = new SoftwareEngineer();
        me.helloWorld();
    }
    
}

Portfolio

https://sabazed.github.io/portfolio/

Programming Languages

Frameworks and Tools

Databases

Other

Stats

Contact

Pinned

  1. myauto myauto Public

    CSS 1

  2. portfolio portfolio Public

    My Portfolio Website

    CSS 2

  3. ChatRoom ChatRoom Public

    Chat program for a server and its clients, who enter <address>:[port] and connects to the server with their chosen nickname. If the server is full they get queued in the waiting queue.

    Java

  4. Calculator_GUI Calculator_GUI Public

    Calculator GUI created by swing

    Java

  5. Saki-Bot Saki-Bot Public

    My first discord bot for private server.

    Python