Skip to content
Sign UpLog In
Profile icon

Aiden G

@chocolatejade42
https://replit.com/talk/share/A-keepalive-repl-as-an-alternative-to-uptime-robot/144069
GitHub
  • binary puzzle solver

    Cover page
    Made with Python
    Recent comments (0)
  • fetch public repls graphql

    Cover page
    Made with Python

    This is a project I made to fetch my public repls and determine which have web servers attached. Of those with webservers, it will run a keep-alive pinger to ensure they never go offline. The targeted scripts will be denoted by the keyword "keep-alive" in the repl description.

    Note: It only works for named public repls See at: https://replit.com/@chocolatejade42/keepalive

    Recent comments (0)
  • keepalive

    Cover page
    Made with Python

    An alternative to uptime robot that keeps my repl servers alive by pinging them every three minutes. It uses Replit's GraphQL API to fetch all my repls, then filters by those with the keyword "keepalive" in their description. It then pings each of those repls periodically to keep them awake.

    This allows me to easily enable "always on" by adding a simple keyword to a new repl's description, rather than spend time configuring uptime robot each time I make a new repl. It also allows for the repls to be pinged more frequently than uptime robot's five minute limit.

    The logs on the website can be filtered using the "search" query in the URL to filter certain repls, levels, or dates.

    Note: Uptime robot will still need to be configured to keep this repl alive, but it's better than having to make a new monitor for every repl! Setting up uptime robot: https://replit.com/talk/ask/Yes-you-can-using-uptimerobot-like-Va/18608/50032

    ~ @chocolatejade42

    Recent comments (1)
    Firepup650
    Firepup650
    1 year ago

    Can\How can I reuse this for my own repls?

  • minecraft lan exposer

    Cover page
    Made with Node.js

    keep!!!!alive

    Recent comments (0)
Repls
Community
chocolatejade42
chocolatejade42
shared a Post
2 years ago
A keepalive repl as an alternative to uptime robot.
#uptimerobot
#python
#keepalive
💻 keepalive > A repl I made to keep my web servers online without having to configure an uptime monitor every time I want to make a new repl. It's a
keepalive
Python
Highwayman
Highwayman
That's pretty handy actually XD2 years ago
chocolatejade42
chocolatejade42
published a Repl
2 years ago
2
keepalive
keepaliveAn alternative to uptime robot that keeps my repl servers alive by pinging them every three minutes. It uses Replit's GraphQL API to fetch all my repls, then filters by those with the keyword "keepalive" in their description. It then pings each of those repls periodically to keep them awake. This allows me to easily enable "always on" by adding a simple keyword to a new repl's description, rather than spend time configuring uptime robot each time I make a new repl. It also allows for the repls to be pinged more frequently than uptime robot's five minute limit. The logs on the website can be filtered using the "search" query in the URL to filter certain repls, levels, or dates. Note: Uptime robot will still need to be configured to keep this repl alive, but it's better than having to make a new monitor for every repl! Setting up uptime robot: https://replit.com/talk/ask/Yes-you-can-using-uptimerobot-like-Va/18608/50032 ~ @chocolatejade42
Firepup650
Firepup650
Can\How can I reuse this for my own repls?1 year ago
chocolatejade42
chocolatejade42
shared a Post
3 years ago
If I have a TCP server running on port 7777 and a http server running on 8080, how can I force the repl's website to point to the http server instead
OliverMakesCode
OliverMakesCode
Try changing the order that the ports are opened2 years ago
TheForArkLD
TheForArkLD
what do you want do?3 years ago
chocolatejade42
chocolatejade42
shared a Post
4 years ago
📂 How to create an SQLite3 database in Python 3 📂 PLEASE NOTE: This article assumes that you are familiar with importing modules in Python and SQL s
Fireye
Fireye
damn tysm for this. Imma yoink it for my discord bot. RIP discord.py1 year ago
gatorade322
gatorade322
I bet this is incredible, but I don't know anything about sqlite so I have no knolege of that, so um, yeah.2 years ago
Hillo232
Hillo232
Dude. This doesn't make sense.2 years ago
chocolatejade42
chocolatejade42
shared a Post
5 years ago
Hi everyone! I'm having a problem using Flask in Python3. I'm Trying to create a webpage but for some reason, my HTML files are refusing to accept the
chocolatejade42
chocolatejade42
Hi @timmyichen and @kaldisberzins, thanks for replying, The error would be because I was working on it but it should be fine now5 years ago
timmy_i_chen
timmy_i_chen
@chocolatejade42 can you try clearing your cache for me and see if that resolves it?5 years ago
kaldisberzins
kaldisberzins
I tried to run your code and got this: Traceback (most recent call last): File "/home/runner/.site-packages/discord/http.py", line 258, in static_login data = yield from self.request(Route('GET', '/users/@me')) File "/home/runner/.site-packages/discord/http.py", line 200, in request raise HTTPException(r, data) discord.errors.HTTPException: UNAUTHORIZED (status code: 401): 401: Unauthorized The above exception was the direct cause of the following exception: Traceback (most recent 5 years ago
chocolatejade42
chocolatejade42
shared a Post
5 years ago
Hi all, I need some help with a project I was working on (Link below). I was making a simple encoder where the program would take the users input and
timmy_i_chen
timmy_i_chen
You could have a dictionary of dictionaries... so enc0, enc1, would instead be: enc = { 0: enc0, 1: enc1, etc... } That way you can call lk[0] when appending characters Let me know if that makes sense!5 years ago