Skip to content
View bashenk's full-sized avatar
:shipit:
:shipit:

Block or report bashenk

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. Creating a QR Code for Android Devic... Creating a QR Code for Android Device Enrollment
    1
    # Creating a QR Code for Android Device Enrollment
    2
    
                  
    3
    [Android Enterprise Documentation: Create a QR code](https://developers.google.com/android/work/play/emm-api/prov-devices#create_a_qr_code)
    4
    
                  
    5
    ### Always required
  2. POSIX compliant and portable fork. N... POSIX compliant and portable fork. Now has been updated with more optional parameters, more optimizations, and better error handling. If -t or -v are specified, an android device is not required.
    1
    #!/usr/bin/env sh
    2
    set -u
    3
    
                  
    4
    # https://stackoverflow.com/questions/2683279/how-to-detect-if-a-script-is-being-sourced#28776166
    5
    sourced=0
  3. Auto setup of X11 on WSL without dis... Auto setup of X11 on WSL without disabling access control
    1
    #!/usr/bin/env sh
    2
    
                  
    3
    say() { if ! ${quiet:-false}; then printf '%s\n' "$@"; fi; }
    4
    err() { echo "[$(date +'%Y-%m-%dT%H:%M:%S%z')]: $*" >&2; }
    5
    
                  
  4. WaniKaniOpenFrameworkTurboEvents WaniKaniOpenFrameworkTurboEvents Public

    JavaScript

  5. PowerShell function: Remove-Null - h... PowerShell function: Remove-Null - https://stackoverflow.com/questions/33038848/how-to-exclude-non-valued-object-properties-when-converting-to-json-in-powershel/63946256#63946256
    1
    <#
    2
    .SYNOPSIS
    3
    	Removes null property values from objects.
    4
    .DESCRIPTION
    5
    	Removes property values that are null (or empty, unless -LeaveEmptyStrings parameter is use) from an object or array of objects. Additional items may be removed if they are passed as input to the -AlsoRemove parameter.