Skip to content
View ConorShore's full-sized avatar

Block or report ConorShore

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. SurfingPi SurfingPi Public

    Helper scripts for using SurfShark with a Raspberry Pi

    Shell 5

  2. RPi_Pico_Autoloader RPi_Pico_Autoloader Public

    Automatically loads .uf2 files onto the Raspberry Pi Pico for you

    Shell 4 1

  3. Discoverer_Fin_Controller Discoverer_Fin_Controller Public

    Fin controller software for Discoverer Project WP2

    C

  4. PlayThenWork PlayThenWork Public

    A script to semi-automate the process of starting a VM in VMware Player, then transfering ownership to VMware Workstation

    Batchfile

  5. A script that boots a VM, waits till... A script that boots a VM, waits till it reports that it is on, then forces iSCSI rescans until a target devices is only. Very useful for iSCSI from internal VM
    1
    #Originally inspired by this script https://jc-lan.org/2020/02/05/script-to-automatically-rescan-and-mount-software-iscsi-datastores-on-startup-for-esxi/
    2
    
                  
    3
    #This original script didn't work for me, as it didn't wait until the vm was confirmed on, so would boot loop if the vm didn't boot first time
    4
    
                  
    5
    #Designed to go in the ESXI host's local.sh file. This will mean vm autostart will not occur till after this script has executed
  6. uPnP Minecraft Server Oneliner.sh uPnP Minecraft Server Oneliner.sh
    1
    find . -name "server.properties" | xargs cat | grep server-port | cut -f 2 -d "=" | xargs -n 1 -Ihere upnpc -r here here TCP
    2
    
                  
    3
    #Search current directory and subdirectories for minecraft servers and uses uPnP to automatically port forward them all
    4
    
                  
    5
    #Method