Skip to content
View Squiddl's full-sized avatar
  • Hochschule Mannheim
  • Germany
  • 09:29 (UTC +01:00)

Highlights

  • Pro

Block or report Squiddl

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

💻 Tech Stack

LINUX Python Java

./whoami

public class Profile {
    private static final String NAME = "Thore";
    private static final LocalDate BIRTH_DATE = LocalDate.of(1998,12, 5);
    private int age;

    public Profile() {
        this.age = Period.between(BIRTH_DATE, LocalDate.now()).getYears();
        whoAmI();
    }

    private void whoAmI() {
        System.out.printf("""
                        Hey! My name is %s, I'm %d years old and crazy about technology.
                        The diversity of computer science drives me to keep going.
                        'If there is only one solution, get a second opinion' - Timothy High
                        In addition to wise sentences, I love dull humor.
                        'What is the biggest lie in the entire universe?'
                        'I have read and agree to the Terms & Conditions.'
                        \s""",
                Profile.NAME, this.age);
    }

    public void age() {
        this.age += 1; // A computer freak doesn't age, he levels up
    }

Popular repositories Loading

  1. Squiddl Squiddl Public

    1

  2. sma-group2-mini-rag sma-group2-mini-rag Public

    Python