Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


Shells Virtual Desktop
BMail.ag - Secure Email Service
Server.net
CPLicense.net
VPS Server
Buy VPN
Vultr
VMs for AI
HostDare
HostDare
ReliableSite White-Label Dedicated Hosting for Resellers
25% Recurring Discount on NVMe VPS
InterServer VPS
BMail.ag - Secure Email Service
Best VPN
High-Performance Bare Metal Server Solutions
Karvl.com
Server Mania Cloud Hosting
DataWagon Hosting
AlphaVPS Hosting
Evoxt.com
Clouvider
VPS Hosting with NVMe
Residential IPs in the US & 4G Mobile Proxies in EU & US with Unlimited Bandwidth
ReliableSite White-Label Dedicated Hosting for Resellers
Rabisu - Hosting Solutions
Shells Virtual Desktop
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

Virginia or closer vps

budget:- $4/mo
crypto accept
please share discord bot ping from your server

Comments

  • zGatozGato Member

    do you love snitching?

    p.s. it would be a good idea if you can give us the IP for that discord api endpoint so we can easily check for u :)

    Thanked by 1concept
  • qpsqps Member, Host Rep

    What specs are you looking for? ZenSix has VMs in Ashburn.

  • ClouviderClouvider Member, Patron Provider
  • RackByteRackByte Member, Host Rep

    @Snitchboss123 What specs you're looking for? For $4/month we can do the below config at our Ashburn location

    1 vCore (Ryzen 5950X)
    2 GB RAM
    25 GB NVMe
    1 TB Bandwidth @ 10Gbps Shared Port
    1 IPv4 +/64 IPv6
    Ashburn, US

    Looking Glass: https://va.lg.rackbyte.net

    We can double the bandwidth for you once paid.

    If interested or have any questions DM me or create a ticket at our website https://my.rackbyte.net

  • ManishPantManishPant Member, Host Rep

    @Snitchboss123 said:
    budget:- $4/mo
    crypto accept
    please share discord bot ping from your server

    If you are okay with the below specs then DM me

    1 vCore
    2 GB RAM
    20 GB NVMe
    1 TB Bandwidth
    1 IPv4 + /64

    Crypto is accepted

    Looking Glass: https://va-us.lg.kuroit.com

    Thanked by 1Xrmaddness
  • @Snitchboss123 said:
    budget:- $4/mo

    Here's a VDS for this budget (yearly is cheaper):

    crypto accept

    Crypto accepted, but order with real details and VPN disabled.

    please share discord bot ping from your server

    No idea how to test discord ping, but the latency to NY is 6-9 ms.
    Should be about x2 to VA.

    Thanked by 1servarica_hani
  • SmartHostSmartHost Patron Provider, Veteran

    http://smarthost.net/vps-hosting.php

    VA1 Looking Glass:
    http://va1.smarthost.net/

    Regular and Ryzen VPS available within your budget...

    ~ SMARTHOST

  • hey Clouvider, may I get a 1 gbp recurring discount on the 4 gig plan ? thank you for your great offer. looking forward to buying

  • @DataRecovery said:

    @Snitchboss123 said:
    budget:- $4/mo

    Here's a VDS for this budget (yearly is cheaper):

    crypto accept

    Crypto accepted, but order with real details and VPN disabled.

    please share discord bot ping from your server

    No idea how to test discord ping, but the latency to NY is 6-9 ms.
    Should be about x2 to VA.

    hello, I don't believe that NYC can get 6-9ms on discord websocket, please keep in mind that icmp is not what determines ping in discord and telegram, it is websocket

  • @ManishPant said:

    @Snitchboss123 said:
    budget:- $4/mo
    crypto accept
    please share discord bot ping from your server

    If you are okay with the below specs then DM me

    1 vCore
    2 GB RAM
    20 GB NVMe
    1 TB Bandwidth
    1 IPv4 + /64

    Crypto is accepted

    Looking Glass: https://va-us.lg.kuroit.com

    thank you for your great offer but the bandwidth is too little and I need 4 gb ram

  • @zGato said:
    do you love snitching?

    p.s. it would be a good idea if you can give us the IP for that discord api endpoint so we can easily check for u :)

    yes I love snitching.

    I don't really know the IP and neither does icmp determine the websocket ping

    Thanked by 1zGato
  • FubukiboxFubukibox Member

    Discord is behind cloudflare..... so ur pinging cloudflare....

    Thanked by 1Saragoldfarb
  • DataRecoveryDataRecovery Member
    edited July 2

    @Snitchboss123 said:

    @zGato said:
    do you love snitching?

    p.s. it would be a good idea if you can give us the IP for that discord api endpoint so we can easily check for u :)

    yes I love snitching.

    I don't really know the IP and neither does icmp determine the websocket ping

    What exactly you're looking to see then and how it should be measured?

    The only thing I found quickly and which at least resembles what you describe is this: https://forum.rejectedsoftware.com/groups/rejectedsoftware.vibed/thread/279955/

    But it's related to a quite specific software I have never heard of before (standalone NNTP-forum+server).

    module app;
    
    import vibe.core.core;
    import vibe.core.log;
    import vibe.http.fileserver : serveStaticFiles;
    import vibe.http.router : URLRouter;
    import vibe.http.server;
    import vibe.http.websockets : WebSocket, handleWebSockets, connectWebSocket;
    import vibe.inet.url : URL;
    
    import core.time;
    import std.conv : to;
    
    
    int main(string[] args)
    {
     auto router = new URLRouter;
     router.get("/", staticRedirect("/index.html"));
     router.get("/ws", handleWebSockets(&handleWebSocketConnection));
     router.get("*", serveStaticFiles("public/"));
    
     auto settings = new HTTPServerSettings;
     settings.port = 8080;
     settings.bindAddresses = ["::1", "127.0.0.1"];
    
     auto listener = listenHTTP(settings, router);
    
     // connect to the web socket endpoint and reply to all messages received
     runTask({
         try connectWebSocket(URL("http://127.0.0.1:8080/ws"), (scope socket) {
             while (socket.waitForData) {
                 auto message = socket.receiveText();
                 logInfo("Received message from server: %s", message);
                 socket.send("PONG");
             }
         });
         catch (Exception e) logException(e, "Failed to connect web socket");
     });
    
     return runApplication(&args);
    }
    
    void handleWebSocketConnection(scope WebSocket socket)
    {
     int counter = 0;
     logInfo("Got new web socket connection.");
    
     // read replies as long as the connection is active
     runTask({
         try {
             while (socket.waitForData) {
                 auto message = socket.receiveText();
                 logInfo("Received message from client: %s", message);
             }
         } catch (Exception e) logException(e, "Failed to receive web socket message");
     });
    
     while (true) {
         sleep(1.seconds);
         if (!socket.connected) break;
         counter++;
         logInfo("Sending '%s'.", counter);
         socket.send(counter.to!string);
     }
     logInfo("Client disconnected.");
    }
    
  • @DataRecovery said:

    @Snitchboss123 said:

    @zGato said:
    do you love snitching?

    p.s. it would be a good idea if you can give us the IP for that discord api endpoint so we can easily check for u :)

    yes I love snitching.

    I don't really know the IP and neither does icmp determine the websocket ping

    What exactly you're looking to see then and how it should be measured?

    The only thing I found quickly and which at least resembles what you describe is this: https://forum.rejectedsoftware.com/groups/rejectedsoftware.vibed/thread/279955/

    But it's related to a quite specific software I have never heard of before (standalone NNTP-forum+server).

    module app;
    
    import vibe.core.core;
    import vibe.core.log;
    import vibe.http.fileserver : serveStaticFiles;
    import vibe.http.router : URLRouter;
    import vibe.http.server;
    import vibe.http.websockets : WebSocket, handleWebSockets, connectWebSocket;
    import vibe.inet.url : URL;
    
    import core.time;
    import std.conv : to;
    
    
    int main(string[] args)
    {
       auto router = new URLRouter;
       router.get("/", staticRedirect("/index.html"));
       router.get("/ws", handleWebSockets(&handleWebSocketConnection));
       router.get("*", serveStaticFiles("public/"));
    
       auto settings = new HTTPServerSettings;
       settings.port = 8080;
       settings.bindAddresses = ["::1", "127.0.0.1"];
    
       auto listener = listenHTTP(settings, router);
    
       // connect to the web socket endpoint and reply to all messages received
       runTask({
           try connectWebSocket(URL("http://127.0.0.1:8080/ws"), (scope socket) {
               while (socket.waitForData) {
                   auto message = socket.receiveText();
                   logInfo("Received message from server: %s", message);
                   socket.send("PONG");
               }
           });
           catch (Exception e) logException(e, "Failed to connect web socket");
       });
    
       return runApplication(&args);
    }
    
    void handleWebSocketConnection(scope WebSocket socket)
    {
       int counter = 0;
       logInfo("Got new web socket connection.");
    
       // read replies as long as the connection is active
       runTask({
           try {
               while (socket.waitForData) {
                   auto message = socket.receiveText();
                   logInfo("Received message from client: %s", message);
               }
           } catch (Exception e) logException(e, "Failed to receive web socket message");
       });
    
       while (true) {
           sleep(1.seconds);
           if (!socket.connected) break;
           counter++;
           logInfo("Sending '%s'.", counter);
           socket.send(counter.to!string);
       }
       logInfo("Client disconnected.");
    }
    

    tell chatgpt to make a simple discord bot with the ping command ig

  • DataRecoveryDataRecovery Member
    edited July 2

    @Snitchboss123 said:

    @DataRecovery said:

    @Snitchboss123 said:

    @zGato said:
    do you love snitching?

    p.s. it would be a good idea if you can give us the IP for that discord api endpoint so we can easily check for u :)

    yes I love snitching.

    I don't really know the IP and neither does icmp determine the websocket ping

    What exactly you're looking to see then and how it should be measured?

    The only thing I found quickly and which at least resembles what you describe is this: https://forum.rejectedsoftware.com/groups/rejectedsoftware.vibed/thread/279955/

    But it's related to a quite specific software I have never heard of before (standalone NNTP-forum+server).

    module app;
    
    import vibe.core.core;
    import vibe.core.log;
    import vibe.http.fileserver : serveStaticFiles;
    import vibe.http.router : URLRouter;
    import vibe.http.server;
    import vibe.http.websockets : WebSocket, handleWebSockets, connectWebSocket;
    import vibe.inet.url : URL;
    
    import core.time;
    import std.conv : to;
    
    
    int main(string[] args)
    {
     auto router = new URLRouter;
     router.get("/", staticRedirect("/index.html"));
     router.get("/ws", handleWebSockets(&handleWebSocketConnection));
     router.get("*", serveStaticFiles("public/"));
    
     auto settings = new HTTPServerSettings;
     settings.port = 8080;
     settings.bindAddresses = ["::1", "127.0.0.1"];
    
     auto listener = listenHTTP(settings, router);
    
     // connect to the web socket endpoint and reply to all messages received
     runTask({
         try connectWebSocket(URL("http://127.0.0.1:8080/ws"), (scope socket) {
             while (socket.waitForData) {
                 auto message = socket.receiveText();
                 logInfo("Received message from server: %s", message);
                 socket.send("PONG");
             }
         });
         catch (Exception e) logException(e, "Failed to connect web socket");
     });
    
     return runApplication(&args);
    }
    
    void handleWebSocketConnection(scope WebSocket socket)
    {
     int counter = 0;
     logInfo("Got new web socket connection.");
    
     // read replies as long as the connection is active
     runTask({
         try {
             while (socket.waitForData) {
                 auto message = socket.receiveText();
                 logInfo("Received message from client: %s", message);
             }
         } catch (Exception e) logException(e, "Failed to receive web socket message");
     });
    
     while (true) {
         sleep(1.seconds);
         if (!socket.connected) break;
         counter++;
         logInfo("Sending '%s'.", counter);
         socket.send(counter.to!string);
     }
     logInfo("Client disconnected.");
    }
    

    tell chatgpt to make a simple discord bot with the ping command ig

    I hear and obey, my mighty lord of the discords!

    Your every wish is my command, all your requests will be fulfilled immediately!

    Thanked by 1fly056
Sign In or Register to comment.