Skip to content
View kkarakk's full-sized avatar
💭
Back on the grind
💭
Back on the grind
  • India

Block or report kkarakk

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. Python Regex to extract torrent trac... Python Regex to extract torrent tracker names
    1
    '''http://bitsnoop.com/trackers/ has a list of active trackers so made a quick dirty regex to extract only the tracker names in order to quickly paste said tracker names to utorrent/deluge
    2
    regex is "(http|udp):\/\/[\d|\D]+?\s+([^a-z\/^\d]?)?" for easy copy/paste '''
    3
    
                  
    4
    import re
    5
    regex = re.compile("(http|udp):\/\/[\d|\D]+?\s+([^a-z\/^\d]?)?")
  2. Customize Powershell Customize Powershell
    1
    
                  
    2
    # Creates profile if doesn't exist then opens editor,wait a beat
    3
    if (!(Test-Path -Path $PROFILE)){ New-Item -Path $PROFILE -ItemType File } ; ise $PROFILE
    4
    
                  
    5
    ************************************************************************************************