Skip to content
View Wydios's full-sized avatar
💤
Schlafen . o O ( Besseres gibts nicht )
💤
Schlafen . o O ( Besseres gibts nicht )

Block or report Wydios

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 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
Wydios/README.md
type SocialLinks = {
    youtube: string;
    twitch: string;
    tiktok: string;
    discord: string;
};

type AboutInfo = {
    name: string;
    user: string;
    age: number;
    socials: SocialLinks;
};

function About(): AboutInfo {
    const name = "Fabian";
    const user = "Wydios";
    let age = 17;
    const today = new Date();

    function isBirthday(month: number, day: number): boolean {
        return today.getMonth() === month && today.getDate() === day;
    }

    if (isBirthday(9, 3)) {
        age++;
    }

    const socials: SocialLinks = {
        youtube: "https://www.youtube.com/@Wydios",
        twitch: "https://www.twitch.tv/wydios",
        tiktok: "https://www.tiktok.com/@wydios",
        discord: "https://discord.gg/7ngxfFYxY4"
    };

    return { name, user, age, socials };
};

const { name, user, age, socials } = About();
console.log(`Hello, I am ${user}, a German guy. My real name is ${name},
I am ${age} years old. You can follow me on my socials ➜
• YouTube: ${socials.youtube}
• Twitch: ${socials.twitch}
• TikTok: ${socials.tiktok}
• Discord Server: ${socials.discord}`);

Pinned Loading

  1. NotedBotWebsite NotedBotWebsite Public archive

    Here is the code from the Notedbot website. Created by Wydios

    JavaScript 2 1

  2. paste paste Public

    My Paste website: https://p.wydios.de

    TypeScript 1