Skip to content
View anvanvan's full-sized avatar
Block or Report

Block or report anvanvan

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. This PowerShell script recursively s... This PowerShell script recursively sorts image and video files in a specified folder by their creation date or media date, placing them into new directories named after the year and month of their creation or media date.
    1
    param(
    2
        [Parameter(Mandatory=$true)]
    3
        [string]$FolderPath
    4
    )
    5
    
                  
  2. Bash script to detect suspicious new... Bash script to detect suspicious new and changed files last 3 hours. Skips cache directories.
    1
    #!/bin/sh
    2
    
                  
    3
    # newfiles
    4
    # Detects new and changed php and html files last xxx minutes
    5
    
                  
  3. .vimrc for working on remote server .vimrc for working on remote server
    1
    " 1. performance settings
    2
    set synmaxcol=300
    3
    set noshowmatch
    4
    set lazyredraw
    5
    set ttyfast