Skip to content
View backslash7's full-sized avatar

Block or report backslash7

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. nagios-plugins nagios-plugins Public

    Various extra plugins for Nagios

    Python

  2. winbox-linux-installer winbox-linux-installer Public

    Simple script to install Winbox for Linux

    Shell 1

  3. mikrotik-scripts mikrotik-scripts Public

    Various MikroTik scripts

    1 1

  4. Generate MPEG-TS stream with TDT info Generate MPEG-TS stream with TDT info
    1
    from binascii import hexlify
    2
    from struct import pack
    3
    from time import sleep
    4
    from datetime import datetime
    5
    import socket
  5. How to strip destination number from... How to strip destination number from SIP To: header and use it as DID
    1
    ; Assign this context to your incoming SIP trunk settings
    2
    [custom-get-did-from-sip]
    3
    exten => _X.,1,Noop(Fixing DID using information from SIP TO header)
    4
    exten => _X.,n,NOOP(Header is: ${SIP_HEADER(TO)})
    5
    exten => _X.,n,Set(pseudodid=${SIP_HEADER(TO)})
  6. Script for parsing Nagios object.cac... Script for parsing Nagios object.cache file and returning it as JSON.
    1
    <?php
    2
    header( 'Content-type: application/json;' );
    3
    
                  
    4
    // Change it according to your nagios.cfg
    5
    $data = file_get_contents( '/var/ramdrive/objects.cache' );