Command-and-control bot

Discussion in 'App Development' started by nooby_mcnoob, Jun 4, 2019.

  1. What my buddy said.

    I think I'll do what @IAS_LLC is doing.
     
    #11     Jun 5, 2019
  2. qlai

    qlai

    I have a very primitive program that uses cgi library running on the server. This way I can connect from any browser(including mobile) to monitor and/or send commands. It's far from optimal, but not something I'm willing to spend lots of energy on. I choose the port and since it's not standard web server, there is no security concerns.
     
    #12     Jun 5, 2019
  3. Seems sensible. Though I'd password protect it if I were yo .
     
    #13     Jun 5, 2019
    qlai likes this.
  4. zdave83

    zdave83

    I'd like to find middleware that can link a proprietary system to smart watches. Has anyone seen a product like that ?
     
    #14     Jun 5, 2019
  5. IAS_LLC

    IAS_LLC

    It's no different than connecting said system to a webbrowser. You can use JavaScript. You just will have a lot less screen to work with, so design accordingly
     
    #15     Jun 5, 2019
  6. zdave83

    zdave83

    IAS_LLC ... appreciate the response. I have an Excel spreadsheet with lots of formulas and data feeds. Works really well, but no clear path to getting from there to an alert on a smart watch. I know I could have someone link the spreadsheet to some kind of web presence, and maybe write some intermediary code to connect that with a watch. But ... I'm searching for something more turnkey vs DIY. How about a routine called "DisplayOnWatch(thingtodisplay)" ?
     
    #16     Jun 7, 2019
  7. userque

    userque

    Perhaps look into sending emails/text-messages via VBA code.
     
    #17     Jun 7, 2019
  8. zdave83

    zdave83

    good thought
     
    #18     Jun 7, 2019
  9. do you guys program a GUI for your algo trading systems?
     
    #19     Jul 26, 2019
  10. FWIW, I've only opened a single port for SSH (non-standard), I can connect through the phone and have it forward ports. So you may want to consider this. I do something similar if I need VNC as well:

    Code:
    ssh -X user@host -p <PORT> vncviewer localhost::5900
    
     
    #20     Jul 26, 2019
    sysdevel99 likes this.