Skip to content
View ksprptr's full-sized avatar
💭
debugging life
💭
debugging life

Highlights

  • Pro

Block or report ksprptr

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.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, 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
ksprptr/README.md

Fullstack web developer

import { Profile } from 'github';

interface CustomProfile extends Profile {
  knowledge: {
    languages: string[];
    libraries: string[];
    frameworks: string[];
    technologies: string[];
  };
  software: {
    ide: string[];
    devOps: string[];
    tools: string[];
  };
  contact: {
    platform: string;
    contact: string;
  }[];
}

const ksprptr: CustomProfile = {
  name: 'Petr Kašpar',
  username: 'ksprptr',
  pronouns: 'he/him',
  bio: 'Fullstack web developer specializing in fast and modern web applications with Next.js and backend services powered by NestJS.',
  knowledge: {
    languages: ['HTML', 'CSS', 'JavaScript', 'TypeScript', 'Java', 'C#'],
    libraries: ['React'],
    frameworks: ['Next.js', 'NestJS', 'TailwindCSS', 'React Native', 'Expo', 'ASP.NET'],
    technologies: ['Node.js', 'Prisma ORM'],
  },
  software: {
    ide: ['Visual Studio Code', 'DataGrip', 'Rider', 'WebStorm', 'IntelliJ IDEA'],
    devOps: ['Docker', 'Git'],
    tools: ['Insomnia', 'dbdiagram.io'],
  },
  contact: [
    { platform: 'email', contact: 'contact@ksprptr.dev' },
    { platform: 'discord', contact: '@ksprptr' },
    { platform: 'linkedin', contact: '@ksprptr' },
    { platform: 'x', contact: '@ksprptr' },
  ],
};

export default ksprptr;

Popular repositories Loading

  1. securepass securepass Public

    A password generator that lets you customize character types—digits, upper/lowercase letters, and symbols—with an option to save generated passwords.

    TypeScript

  2. ksprptr ksprptr Public

    GitHub README file.

  3. postboard-pw1 postboard-pw1 Public

    A simple web application for a PW1 school project, designed to practice working with HTTP requests. It includes a page for viewing posts and another for creating them.

    TypeScript

  4. product-store-pw2 product-store-pw2 Public

    A simple demo store for a PW2 school project, featuring product filtering, search functionality, and detailed product page.

    TypeScript

  5. nextjs-middleware-pw2 nextjs-middleware-pw2 Public

    A compact web application for a PW2 school project that validates the token from cookies and configures the locale header based on the URL path within middleware.

    TypeScript

  6. nestjs-car-rental-pw2 nestjs-car-rental-pw2 Public

    A Car Rental API built for a PW2 school project. This API manages users, vehicles, brands, colors, countries, and related entities.

    TypeScript