Profile picture Nikolaos Papanastasis

Nikolaos Papanastasis

Undergraduate Student

Patras, Greece

Undergraduate student at the department of Electrical and Computer Engineering of the University of the Peloponnese. Passionate about software engineering, computer networks, and cybersecurity. Εnjoy working on projects that challenge my skills and allow me to learn new technologies.

$ echo "Let's connect" | nc imnickddme.com 1337
Initializing...
Connected!
Get in touch with me through the links below:
interface Developer {
    name: string;
    skills: string[];
    interests: string[];
};

interface TechStack {
    devOps: string[];
    backend: string[];
};

type ContactType = 'github' | 'linkedIn' | 'email';

const techStack: TechStack = {
    devOps: [
        'GitHub',
        'Cloudflare',
        'Docker'
    ],
    backend: [
        'Node.js',
        'Bun',
        'PostgreSQL',
        'MySQL',
        'Django'
        'Resend'
    ]
};

// Developer profile
const me: Developer = {
    name: 'Dejan Vi.',
    skills: [
        ...techStack.devOps,
        ...techStack.backend,
        ...techStack.frontend
    ],
    interests: [
        'Open Source',
        'Security',
        'Privacy',
        'Performance',
        'Networking'
    ]
};

// Contact function
const contact = (type: ContactType): string => {
    switch (type) {
        case 'github':
            return 'https://github.com/ImNickDDMe';
        case 'linkedIn':
            return 'https://www.linkedin.com/in/npapanast';
        case 'email':
            return '[email protected]';
        default:
            return 'Morse code xD';
    }
};

Real Estate Project

Under the guidance of Data & Media Lab, I am currently involved in the initial research and design of a real estate information system. I am focusing on how to gather and structure data effectively.

Data & Media Lab
Built with Astro by devi|dev|io