Tag: notes


  • remarkable

    ,

    Folks keep telling me I probably have some form of ADHD and the wealth of random pieces of paper that I scribbled on 14 months ago yet still occupy space in my living room may attest to that. So this might be a worthy £400 expenditure to solve the “paper” problem without buying a full…

    Read This Post: remarkable
  • 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
  • “hacker laws”

    ,

    https://github.com/dwmkerr/hacker-laws the robustness principle is pretty apt for adversarial example research…. https://github.com/dwmkerr/hacker-laws#the-robustness-principle-postels-law

    Read This Post: “hacker laws”
  • 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