Skip to content
View batetolast1's full-sized avatar
🏠
Learning from home
🏠
Learning from home

Block or report batetolast1

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.

Content in all repositories owned by your account will be closed.
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
batetolast1/README.md

👋 Hi there! I'm Bartosz and I'm glad you're here! 🥰


🖊 Let's start with short introduction!

package io.github.batetolast1.batetolast1.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(
                "🔭 I’m currently working on", "developing first apps in Spring 🍃",
                "🌱 I’m currently learning", "Java, of course! 🤓",
                "💬 Ask me about", "something other than Java? Well, guitars 🎸, fantasy 📖, PC 💻 and mobile 📲",
                "📫 How to reach me:", "e-mails should go to 📩 batetolast1@gmail.com; you can also say 👋"
        );
        this.profile = "https://github.com/batetolast1";
    }

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

    @Override
    public String getBio() {
        return bio.keySet()
                .stream()
                .map(key -> "- " + key + " **" + bio.get(key) + "**")
                .collect(Collectors.joining(System.lineSeparator()));
    }

    public String getProfile() {
        return profile;
    }
}

🚀 Technologies I'm currently mastering

Java Spring IntelliJ IDEA MySQL JavaScript Bootstrap


🐱 My Github Data

🏆 78 Contributions in the Year 2021

📦 17.3 kB Used in Github's Storage

💼 Opted to Hire

📜 21 Public Repositories

🔑 16 Private Repositories

I'm an Early 🐤

🌞 Morning    76 commits     ████░░░░░░░░░░░░░░░░░░░░░   18.05% 
🌆 Daytime    218 commits    █████████████░░░░░░░░░░░░   51.78% 
🌃 Evening    127 commits    ███████░░░░░░░░░░░░░░░░░░   30.17% 
🌙 Night      0 commits      ░░░░░░░░░░░░░░░░░░░░░░░░░   0.0%

📅 I'm Most Productive on Saturday

Monday       40 commits     ██░░░░░░░░░░░░░░░░░░░░░░░   9.5% 
Tuesday      58 commits     ███░░░░░░░░░░░░░░░░░░░░░░   13.78% 
Wednesday    71 commits     ████░░░░░░░░░░░░░░░░░░░░░   16.86% 
Thursday     37 commits     ██░░░░░░░░░░░░░░░░░░░░░░░   8.79% 
Friday       42 commits     ██░░░░░░░░░░░░░░░░░░░░░░░   9.98% 
Saturday     87 commits     █████░░░░░░░░░░░░░░░░░░░░   20.67% 
Sunday       86 commits     █████░░░░░░░░░░░░░░░░░░░░   20.43%

📊 This Week I Spent My Time On

💬 Programming Languages: 
No Activity Tracked This Week

I Mostly Code in Java

Java                     28 repos            ██████████████████████░░░   87.5% 
CSS                      2 repos             █░░░░░░░░░░░░░░░░░░░░░░░░   6.25% 
HTML                     1 repo              ░░░░░░░░░░░░░░░░░░░░░░░░░   3.12% 
JavaScript               1 repo              ░░░░░░░░░░░░░░░░░░░░░░░░░   3.12%

Last Updated on 04/09/2021


👨‍💻 Readme was created with some help from the community! ❤️

@batetolast1's activity is private