Skip to content
View AndreaCovelli's full-sized avatar
πŸ—ΊοΈ
Around the world
πŸ—ΊοΈ
Around the world

Highlights

  • Pro

Block or report AndreaCovelli

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 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

Pinned Loading

  1. ProgettoBasiDiDati ProgettoBasiDiDati Public

    Progetto basi di dati A.A. 2022/2023

  2. progetto_reti_informatiche progetto_reti_informatiche Public

    Progetto di reti informatiche dal titolo "Trivia Quiz Multiplayer"

    C

  3. laureandosi laureandosi Public

    Progetto per Ingegneria del software

    PHP

  4. NexusScholar NexusScholar Public

    Project for the master course of Large Scale and Multi-Structured Databases at University of Pisa. Team members: Daniele Congiusti, Andrea Covelli, Luca Giannini.

    Java 2

  5. Setup alpine on wsl 2 Setup alpine on wsl 2
    1
    Add alpine distro to wsl2
    2
    -------------------------
    3
    https://alpinelinux.org/downloads/ (Mini root filesystem)
    4
    wsl --import alpine c:\Users\<username>\alpine "file-name" (current directory downloads)
    5
    wsl -d alpine
  6. wget command to download all content... wget command to download all content of a folder with login credentials
    1
    wget --user=<username> --password=<password> -r -l1 -nd -A"*" <Parent Directory>
    2
    
                  
    3
    # The wget command uses the recursive (-r) download option with a maximum depth of 1 (-l1),
    4
    # disables creating directories (-nd), and downloads all files (-A"*") from the "Parent Directory" page.
    5