Skip to content
View bskokdev's full-sized avatar
:octocat:
:octocat:
  • Czechia

Highlights

  • Pro

Block or report bskokdev

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

Howdy traverel!

package dev.bskokdev;

import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.Setter;

@AllArgsConstructor
@Getter
@Setter
public class Developer {
  private String name;
  private String role;
  private String location;
  private String[] interests;

  public Developer() {
    this.name = "Boris";
    this.role = "Part-Time Software Engineer and Computer Science Student";
    this.location = "Czechia";
    this.interests =
        new String[] {
          "Problem Solving",
          "Algorithms & Data Structures",
          "Data Manipulation",
          "Architecture Design",
        };
  }
}

public class Main {
  public static void main(String[] args) {
    Developer boris = new Developer();
    for (String interest : boris.getInterests()) {
      System.out.println(interest);
    }
  }
}

Connect with me

text

Pinned Loading

  1. sorting-visualizer sorting-visualizer Public

    React sorting visualizer

    TypeScript 2

  2. GraphQL-Auth-API GraphQL-Auth-API Public

    GraphQL JWT Auth service written in Java

    Java

  3. react-pomodoro react-pomodoro Public

    React implementation of Pomodoro study technique

    TypeScript

  4. path_finding_visualizer path_finding_visualizer Public

    Path finding visualizer implementing A* algorithm

    Python

  5. Bus-Tracker Bus-Tracker Public

    Real-time bus telemetry tracker

    Go

  6. leetcode-stuff leetcode-stuff Public

    Python