Skip to content
View AndreySkryl's full-sized avatar

Block or report AndreySkryl

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

Pinned Loading

  1. Codewars Codewars Public

    Python 1

  2. flask-test flask-test Public

    HTML 1

  3. stepik-auto-tests-course stepik-auto-tests-course Public

    Python 1

  4. Основы работы с Git Основы работы с Git
    1
    # Основы работы с Git
    2
    *По материалам сайта Calculate Linux: https://www.calculate-linux.org/main/ru/git*
    3
    
                  
    4
    - [Введение](#Введение)
    5
    - [Основы работы с удаленным репозиторием](#Основы-работы-с-удаленным-репозиторием)
  5. example_getData.js example_getData.js
    1
    // запрос данных
    2
    
                  
    3
    const getData = async (serverURI) => {
    4
        const data = await fetch(serverURI);
    5
    
                  
  6. disable_scroll.js disable_scroll.js
    1
    // блокировка скролла
    2
    const disableScroll = () => {
    3
        if (document.disableScroll) { return; }
    4
        
    5
        const widthScroll = window.innerWidth - document.body.offsetWidth;