Code Monkey home page Code Monkey logo

šŸ‘‹ Hi there! I'm Filip and I'm glad you're here!


šŸ–Š Let's start with a short introduction!

package io.github.cyboranf.cyboranf.domain.entities;

import java.util.Map;
import java.util.stream.Collectors;

public class GitHubBio extends Bio {  
    private final String profile;
    private final Map<String, String> bio;

    public GitHubBio() {
        this.bio = Map.of(
            "Current Work", "Iā€™m currently working on my Portfolio",
            "Skill", "Iā€™m improving my java skill",
            "Knowledge", "Ask me about my knowledge",
            "Contact", "How to reach me: [email protected]"
        );
        this.profile = "https://github.com/cyboranf";
    }

    public GitHubBio(String profile, Map<String, String> bio) {
        this.profile = profile;
        this.bio = bio;
    }

    @Override 
    public String getBio() {
        return bio.entrySet()
                .stream()
                .map(entry -> "- " + entry.getKey() + ": **" + entry.getValue() + "**")
                .collect(Collectors.joining(System.lineSeparator()));
    }

    public String getProfile() {
        return profile;
    }
}                                                                                                                                                            


Filip Cyboran's Projects

car-sharing-restapi icon car-sharing-restapi

When I started work on this project I didn't want to do a basic Car-Sharing app, I had an idea to do Car-Sharing but for all. (You can share your car with other users for example to earn on your car or you can rent a car from another user or companies with cars for hire.)

charity-webapp icon charity-webapp

Solid backend Charity webapp, views use JSP & JavaScript & CSS. Project done with Scrum methodology during Java bootcamp.

driving-school-management icon driving-school-management

Driving-School-Management is a REST API for a university Database course project, where the aim was to create and implement various database procedures in an Oracle database.

file-hasher icon file-hasher

A web service that allows users to upload files and calculates the hash value of the uploaded files.

meetex-desktop-app icon meetex-desktop-app

Social media app (inspired by Facebook). Made in combination -> Java Fx & Spring Boot

meetex-socialmedia-restapi icon meetex-socialmedia-restapi

I wanted to showcase my growth as a developer, so I decided to take on a familiar topic from my past but elevate it to a higher coding standard. https://github.com/cyboranf/meetex-desktop-app

numerical-methods icon numerical-methods

Numerical-Methods is a repository for exercises and implementations of numerical methods on my study subject.

poker-game-restapi icon poker-game-restapi

A web-based poker game application. (RESTful API & WebSocket) Not finished yet.

the-algorithm icon the-algorithm

Source code for Twitter's Recommendation Algorithm. One of the best lecture i ever seen :)

tic-tac-toeai icon tic-tac-toeai

It's a game similar to original Tic-tac-toe (more details at ReadME). Project for AI subject on study where I must create a game where User can play vs MiniMax algorithm with alfa-beta upgrade

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.