Revive Crosis
@Crosis
wsg
0
EternityWebsiteV2This is something made for my discord bot, Eternity. Pretty cool website made by me and @EnderKingJ
307
0
0
Hello, today while making my discord bot, I wanted to make my own screenshot API. So, I searched up ways to do so, and found puppeteer. But, it is not
Bash
TheBest156 Here, Try this https://stackoverflow.com/questions/20479218/nodejs-http-request-not-working2 years ago
Hello fellow replers, many of you may have forgot about me by now, or not, but I have been developing something other than Gepl Chat. I have been maki
piemadd I believe there is an update coming soon but I am unsure. What in Discord.js v13 do you need for you bot? Did you develop it on Replit?2 years ago
Hello everyone, @RyanGardiner1 recently bought a domain www.geplchat.xyz , and we tried to use the custom domain, and whenever I go to the website, it
Hello everyone, I was just here because I was wondering how I could make it so users could paste an image into the text box, like you can on repl. For
HTML, CSS, JS
SixBeeps Override the Ctrl+V event when editing the textbox, you'd do this with the keydown event in JS.
When pressed, it should send the image data to a server. When the server gets the image, store it in a new file. After it's done uploading, return a URL
When the client gets the URL, put it into the textbox depending on where the user's cursor is.2 years ago
I recently have made a discord bot with @Lankdev for Gepl Chat, and was going to use the new Always On feature to have it constantly running, when I n
Coder100 html code won't be run unless someone is actually on the repl. You should know that lol
Always on is for: HTTP servers like that made with node.2 years ago
tussiez HTML repls are static, and are not "always on". HTML,CSS,JS repls are served by Repl.it automatically. Nothing happens before the page is served.2 years ago
First
I just wanna say thank you to everyone who has shown me so much support on here. I never would have thought I would be here, but here I am, and
HTML, CSS, JS
I was wondering about how often I should make update posts, as many people may think I am cycle farming. @RyanGardiner1 and I have just made an update
HTML, CSS, JS
xxpertHacker If you end up doing a complete rewrite, and it adds a whole new set of features, some of which replace the old ones, then maybe it'll be acceptable to repost.2 years ago
IntellectualGuy As @ObiVibKenobi says, I think you should too, cause it's a really it's
a really big update.
2 years ago
I was wondering if there was a way to create new websocket servers using the same repl as I was trying to create private rooms and thought that a sepa
HTML, CSS, JS
19wintersp This is quite simple: you need to create the illusion. One way of doing this would be to convert from requesting wss://example.com/ to wss://example.com/?room=abcdef. On the backend, I assume you're handling this by using a list (or object) of connections:
const connections = [];
wsServer.on("connection", (sock, req) => {
connections.push(sock);
/* ... */
});
You will need to convert that (appropriately, don't copy-paste) to this:
const url = require("url");
const connections = {};
wsSe2 years ago
Baconman321 Please don't ping multiple people. Yeah, tussiez and I had the same problem when we are going to make multiple rooms for multiplayer sortacraft. This would require dynamic rooms and would work best using nodejs or another server-side language. In my mind i have the idea of creating a "fake" url and handling that using the serve functions in golang/nodejs. It will dynamically store session data for multiplayer and be able to handle the information differently based of of what URL of the data bein2 years ago
I was wondering if there was a way to create new websocket servers using the same repl as I was trying to create private rooms and thought that a sepa
HTML, CSS, JS
Complete credit goes to @19wintersp, as they did 99.999% of it. here is the original. Say hello to the first vc on replit (for Chromebooks), with your
Node.js
19wintersp Thanks for taking interest in this! Can I just ask that you link to the original? (Also, it looks like you tried to block Windows 10 users. First, why? Second, it doesn't work)2 years ago
RohilPatel Now this is one heck of a project. I don't like some things..
Add css...ugh some elements here aren't that great
Use a different font, as it can grab a users attention
-- THINGS THAT COULD BE ADDED IN THE NEAR FUTURE --
User accounts; that alert is very annoying
Saved messages
Moderation permissions and etc2 years ago
@19wintersp so basically, in https://chat.ryangardiner1.repl.co/testing/crosis there is commands that you can do if you have a certain "tag" and I wou
badst fix your code, any1 can type
socket.emit('chat_message', "alert(document.cookie)");
also client is weird.2 years ago
I am creating a program in python and I am wondering how I would implement a stopwatch that would print the amount of time it took to complete the tas
JonDoeBeep you could do something along the lines of this:
sw = 1000
while (sw>0):
sw=sw-1
print("done")
because it reads like a person, it reads up to down, left to right, and when a while/for loop happens it goes back to the beginning. Therefore, it does not read the code below until finished.2 years ago