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.

Content in all repositories owned by your account will be closed.
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. progetto_reti_informaticheprogetto_reti_informatichePublic

    Progetto di reti informatiche dal titolo "Trivia Quiz Multiplayer"

    C

  2. laureandosilaureandosiPublic

    Progetto per Ingegneria del software

    PHP

  3. NexusScholarNexusScholarPublic

    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

  4. Setup alpine on wsl 2Setup 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
  5. 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