Skip to content
View DavideDunne's full-sized avatar
💾
💾

Highlights

  • Pro
Block or Report

Block or report DavideDunne

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

Pinned

  1. davidedunne.github.io davidedunne.github.io Public

    My website!

    HTML

  2. Emacs-BasicConfig-Windows Emacs-BasicConfig-Windows Public

    Emacs config from scratch. My first config

    Emacs Lisp

  3. Zip everything in current dir Zip everything in current dir
    1
    #This script will copy all the files in current directory into a zip
    2
    $Files = Get-ChildItem -Exclude *.ps1 -Name
    3
    Write-Host $Files
    4
    foreach($File in $Files){
    5
        Compress-Archive -Path $File -Update -DestinationPath files.zip