Skip to content
View bikram990's full-sized avatar
Block or Report

Block or report bikram990

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
bikram990/README.md

Hi there 👋

Pinned Loading

  1. PyScep PyScep Public

    A Python SCEP client and server

    Python 8 6

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

    Dynu DNS Authenticator plugin for Certbot

    Python 11 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']