Skip to content
View unherz's full-sized avatar
💭
The big lesson in life is never be scared of anyone or anything ~ Frank Sinatra
💭
The big lesson in life is never be scared of anyone or anything ~ Frank Sinatra
  • Bremen, Germany

Highlights

  • Pro
Block or Report

Block or report unherz

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. bash_autoexec_ssh_with_keyauth.md bash_autoexec_ssh_with_keyauth.md
    1
    First you have to install expect (`sudo apt install expect -y`);
    2
    Next you create a script (lets call it autoexecssh here).
    3
    
    
    4
    The contents of the script may look similar to this
    5
    
    
  2. PHP fopen url behind proxy PHP fopen url behind proxy
    1
    To open an url with fopen behind a proxy you basically got  
    2
    
    
    3
    ```php
    4
    $url = 'http:https://example.org/filename.csv'
    5
    fopen( $url, 'r', null, null );