Skip to content
View vskhoroshev's full-sized avatar
👨‍💻
Coding
👨‍💻
Coding

Organizations

@fmecgroup
Block or Report

Block or report vskhoroshev

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

Hi, I'm Vadim 👋

Pinned

  1. warehouse-management warehouse-management Public

    Конфигурация для управления складом.

    1C Enterprise

  2. gb-java-hw gb-java-hw Public

    GeekBrains. Факультет Java-разработки. Домашняя работа.

    Java

  3. mobile-warehouse mobile-warehouse Public

    Конфигурация для управления складом на мобильном устройстве.

    1C Enterprise

  4. lamp-chat lamp-chat Public

    Простой чат.

    Java

  5. Работа с PowerShell Работа с PowerShell
    1
    # Устанавливаем цвет в PowerShell
    2
    # Get-PSReadLineOption
    3
    Set-PSReadLineOption -colors @{ "Parameter" = "$([char]0x1b)[92m" }
    4
    Set-PSReadLineOption -colors @{ "Operator" = "$([char]0x1b)[37m" }
  6. The base entity for inheritance in S... The base entity for inheritance in Spring Data JPA
    1
    import jakarta.persistence.*;
    2
    import lombok.*;
    3
    import org.hibernate.Hibernate;
    4
    
                  
    5
    import java.util.Objects;