Skip to content
View bikram990's full-sized avatar

Block or report bikram990

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
bikram990/README.md

Hi there 👋

Pinned Loading

  1. PyScep PyScep Public

    A Python SCEP client and server

    Python 9 7

  2. certbot-dns-dynu certbot-dns-dynu Public

    Dynu DNS Authenticator plugin for Certbot

    Python 14 8

  3. scratch-pad scratch-pad Public

    My Scratch Pad https://bikram990.github.io/scratch-pad/

    HTML

  4. Create macOS flat Package from .app ... Create macOS flat Package from .app in /Applications
    1
    #!/bin/sh
    2
    
                  
    3
    TempDir="/tmp/pkg"
    4
    AppPath=$1
    5
    TargetPath=$2
  5. Create a daemon user in macOS Create a daemon user in macOS
    1
    #!/bin/bash
    2
    
                  
    3
    if (( $(id -u) )) ; then
    4
        echo "This script needs to run as root"
    5
        exit 1
  6. Python script to add Load Balancing ... Python script to add Load Balancing IP Tables based on https://scalingo.com/blog/iptables
    1
    #!/bin/python
    2
    
                  
    3
    import subprocess
    4
    
                  
    5
    destination_ips = ['192.168.1.2', '192.168.1.3', '192.168.1.4', '192.168.1.5']