Skip to content
View akarelin's full-sized avatar

Highlights

  • Pro

Block or report akarelin

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. FFMpeg - Concatenate CCTV videos FFMpeg - Concatenate CCTV videos
    1
    ffmpeg -safe 0 -f concat -i <(find . -type f -name '*.mp4' -printf "file '$PWD/%p'\n" | sort) -c copy nvr.mp4
  2. PowerShell script to create mail flo... PowerShell script to create mail flow rules that filter bulk email
    1
    New-TransportRule -Name "Bulk email filtering - RegEx" `
    2
    	-SubjectOrBodyMatchesPatterns `
    3
    		"If you are unable to view the content of this email\, please", `
    4
    		"\>(safe )?unsubscribe( here)?\</a\>", `
    5
    		"If you do not wish to receive further communications like this\, please", `
  3. Reset Windows Update Reset Windows Update
    1
    net stop bits
    2
    net stop wuauserv
    3
    reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v AccountDomainSid /f
    4
    reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v PingID /f
    5
    reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v SusClientId /f
  4. VirtualHere VirtualHere
    1
    #!/bin/bash
    2
    
    
    3
    sudo -s
    4
    cd ~
    5