Skip to content
View licht8's full-sized avatar
🏠
Working from home
🏠
Working from home

Highlights

  • Pro

Block or report licht8

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
licht8/README.md
#!/bin/bash

#Define the Attributes class
class Attributes {
    # The contact method
    contact() {
        discord="櫻井孝宏#8124"
        telegram="@yehor_14"
        gmail="yehor.redhat@gmail.com"
        
        echo "$discord $telegram $gmail"
    }
    
    # The life method
    life() {
        langs=('English' 'Polish' 'Russian' 'Ukrainian')
        nationality=('Ukrainian')
        age=18
        
        echo "${langs[*]} ${nationalities[*]} $age"
    }
    
    # The coding method
    coding() {
        declare -A langs=(
            ['intermediate']='bash'
            ['learning']='c++ java python'
        )
        specialities=('computer network administrator' 'systems security')
        
        echo "${langs[*]} ${specialities[*]}"
    }
}

#Create an instance of the Attributes class and call its methods
attr=new Attributes
attr.contact
attr.life
attr.coding

My skills:

My Skills

I'm also learning:

My Skills


🔥 My Stats:

GitHub Streak

Top Langs

Popular repositories Loading

  1. licht8 licht8 Public

    1

  2. RandomQuotes RandomQuotes Public

    JavaScript

  3. face-detection-cpp face-detection-cpp Public

    Simple application written in C++ that utilizes the OpenCV library for image processing

    C++

  4. system-specifications system-specifications Public

    An application written in C++ that provides data about the processor, video card, RAM and hard drive

    C++

  5. IPv4-calculator IPv4-calculator Public

    This C++ program is designed to work with IP addresses and calculate subnet parameters based on a given subnet mask

    C++

  6. compress-file compress-file Public

    A file compression and decompression program written in pure C uses the Huffman algorithm to efficiently encode data.

    C