Skip to content
View James-Firth's full-sized avatar
🐙
🐙
Block or Report

Block or report James-Firth

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

  1. git-slackin git-slackin Public

    Stop checking pull requests manually all day and git slackin instead!

    JavaScript 3

  2. oauthcallback oauthcallback Public

    A quick landing page to grab oauth codes

    JavaScript 1

  3. useful-commandline-snippets useful-commandline-snippets Public

    A list of commandline snippets I find useful or always need to look up. Also some useful shell scripts apparently.

    Shell 1

  4. dot_files dot_files Public

    A collection of config files and/or useful config options. Also includes a script to setup Ubuntu with these configs

    Shell

  5. [Servers] tmux on ssh [Servers] tmux on ssh
    1
    On the server, put this snippet in ~/.bashrc to automatically open tmux on ssh
    2
      ```
    3
      # Open Tmux Session immediately on SSH and exit SSH Session when exiting tmux
    4
      if [[ -n "$PS1" ]] && [[ -z "$TMUX" ]] && [[ -n "$SSH_CONNECTION" ]]; then
    5
          tmux attach-session -t ssh_tmux || tmux new-session -s ssh_tmux;
  6. FoundryVTT Updater - A quick script ... FoundryVTT Updater - A quick script to pull the latest foundry image for docker
    1
    #!/bin/bash
    2
    
                  
    3
    # Docker Foundry Updater
    4
    # This script is used to download the Foundry ZIP file so it can be picked up by the Foundry container
    5
    # By felddy (felddy/foundryvtt:release)