Skip to content
View erikkodnar's full-sized avatar

Block or report erikkodnar

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 Loading

  1. doggo_button doggo_button Public

    Python

  2. Uses ffmpeg to convert videos to gif... Uses ffmpeg to convert videos to gif files, accepts a directory containing video files or a path to a video. If a single video is supplied you can set the output name.
    1
    
                  
    2
    function Convert-To-Gif {
    3
      param (
    4
        [Parameter(Mandatory = $true, ValueFromPipeline = $true)]
    5
        [string]$Path,
  3. Recursively delete all node_modules ... Recursively delete all node_modules given a directory. Usage: "Delete-NodeModulesFolders ." (given "." is the current directory)
    1
    function Delete-NodeModulesFolders {
    2
        param (
    3
            [string]$RootFolder
    4
        )
    5