Tag: sysadmin


  • auth0 jupyterhub authenticator

    ,

    i’m sysadmin of some linux gpu servers in the phd working group and having to manually setup new users is a massive PITA. a few options for replacements Auth0 Authentication https://github.com/jupyterhub/oauthenticator/blob/master/oauthenticator/auth0.py account required will it be able to communicate with servers behind firewalled school of computing network? KeyCloak OIDC / OAuth2 Authentication https://www.keycloak.org/ functional+tested implementation…

    Read This Post: auth0 jupyterhub authenticator
  • linux find

    Write this up as a response to someone on hackernews but didn’t submit it. Dumping here for reference… search for exact pattern in all basenames find . -name “<pattern>” search for pattern at the start of basenames find . -name “<pattern>*” search for pattern at the end of basenames find . -name “*<pattern>” search for…

    Read This Post: linux find