Skip to content
View vdbsh's full-sized avatar
๐Ÿข
justified!
๐Ÿข
justified!
Block or Report

Block or report vdbsh

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. backy backy Public

    tiny multiprocessing utility for file backups

    Go 9

  2. Old-school screensaver functionality... Old-school screensaver functionality for GNOME/Wayland desktops
    1
    #!/usr/bin/env bash
    2
    
                  
    3
    # afterdark.sh: Old-school screensaver functionality for GNOME/Wayland desktops
    4
    # This script will launch arbitrary command after specified time period if there is no inhibiting applications running
    5
    # Started process will be terminated after the first sight of user activity
  3. Checking host availability with Pyth... Checking host availability with Python's Low-level networking interface and AWS Lambda
    1
    from socket import socket, AF_INET, SOCK_STREAM
    2
    
                  
    3
    addresses = [
    4
        {'example.com': 80},
    5
        {'example.com': 443},
  4. HOSTS to RPZ rules converter for DNS... HOSTS to RPZ rules converter for DNS firewalls (like in BIND 9)
    1
    #!/usr/bin/env python3
    2
    
                  
    3
    from urllib import request
    4
        
    5
    rpz_file         = 'rpz-filter.db'
  5. This script will launch your executa... This script will launch your executable and terminate it after its window will be closed. Useful for hunting down zombie processes.
    1
    @ECHO off
    2
    ECHO ++++++++++++++++++++
    3
    ECHO + riprunner 1.0 +
    4
    ECHO ++++++++++++++++++++
    5
    rem This script will launch your executable and terminate it after its window will be closed.