Ev
@LincolnMiddle
What's wrong with this discord bot? Can I see a working discord bot that can at least be online?
Python
LincolnMiddle @CoolJames1610 Do You See What's Wrong? Halp. #Looking at your tutorial
image1 year ago
RyanBlake3 Make sure to replace where it says DISCORD_TOKEN with a token from discord's site. Besides that, I can't see any reason it wouldn't be working
1 year ago
Can somebody make a very simple, but working chat room for me? (Python or HTML 5/Nodejs works) I just wanna see how its made and how its live.
xfinnbar You can use WebSockets to do real-time communication with a server. They allow you to both receive and send messages to a server.2 years ago
SixBeeps I made one about a year ago for someone asking the same question. It's written in Node.js along with Socket.io
https://replit.com/@SixBeeps/HomebrewChat#index.js2 years ago
I got this little idea from @CoolCoderSJ #reflux
Credit for the rainbow (I was too lazy): https://codepen.io/nohoid/pen/kIfto
view-source:https://rep
HTML, CSS, JS
TheRealSnowSJ this looks really cool! While I Know you can't add gradients with the marketplace, could you share a variant of this theme at https://sjurl.tk/reflux ? Themes apply site-wide, not just on the IDE!2 years ago
Soooooo how do you work tampermonkey? I know it's javascript, but how does it work and what are the codes? @CoolCoderSJ Your reflux thing is good stuf
Coder100 Tampermonkey is literally just eval('... your code here ...')
There are some configurations to import libraries, but you can check out the chrome extension: https://www.tampermonkey.net/2 years ago
How do you code webGL? I wanna to learn it :)
How do you make a chatroom so that people can chat with each other in the same room instead of chatting in a blank room? Something like a real leaderb
Does anybody know how to code webGL (HTML5)? If you do, I would like a tutorial. :)
Thx.
MadMath123 I found that looking up code and documentation, then trying to understand how it works, is a good idea.2 years ago
cuber1515 w3schools is a really good place to learn HTML5, CSS, JavaScript, Python, ect. codecademy is also great.2 years ago
I can't understand a thing in the code except for some colors. Anybody else know what each thing actually does?
Credit: https://codepen.io/toshiya-ma
HTML, CSS, JS
SixBeeps I had a feeling the tangent function would be used for something like this.
Here's the graph of tan(x):
image
If applied in the right circumstances, it can cause a sort of slow-motion effect. It makes something go really fast, slow down for a bit, then speed back up. That's what's happening here. The size and position for these rectangles is dependent on this function, which causes the zooming effect you see.
You don't really learn how to make these kinds of things, most of it is just tinker2 years ago
Based on the code in the repl, is this a good way to do things? (I don't think so but you can make everything.) When I looked at what things looked li
HTML, CSS, JS
What fonts does repl have? (HTML CSS JS)
StephenCMorales Font designs are so important that they can change the whole design of a website. For this, you can check the content and designs MasterBundles here on this website. This gonna help you a lot.10 months ago
nbbcsf What do you mean fonts? What languages are you talking about? If it's HTML, CSS, and JS, that would be all the existing HTML fonts :)2 years ago
Coder100 No, you mean what fonts your computer has.
Your computer renders the website, and uses fonts your computer has.
Here are some common fonts:
body {
font-family: sans-serif;
}
list:
sans-serif
serif
monospace
cursive
pretty cool
more fonts https://fonts.google.com2 years ago
I want to make an image in CSS, but I want to code it by each pixel. Just say I want to make a pixel in a certain position on the computer screen a co
This is just a simple program to make your decision. I got this idea bc I sometimes drink milk during the night and one night I asked myself whether I
Python
I need help on creating a Login/Sign-up thingy with HTML. Again, Can someone help me create a Login/Sign-up template using HTML?
Can someone code a template that has to do with logging in?
Ahem, I forked WAY too many repls, and at some point, I can't scroll down anymore... What should I do?
NotMrMan I have the same issue, I made a post 5 days ago on it:
https://repl.it/bugs/p/cant-scroll-down-in-my-projects-under-my-repls2 years ago
RYANTADIPARTHI Bug
that's just a bug. It's happening to me too. Report it.
https://repl.it/bugs2 years ago
I got this code from here: https://www.geeksforgeeks.org/php-form-processing/
I copied and pasted it. It works, but It needs to be more cleaned up. W
PHP Web Server
Coder100 https://repl.it/@Coder100/ThankfulKhakiComputationallinguistics-aoeu#me.php
here's something2 years ago
RYANTADIPARTHI one thing would be the styles. It seems kind of static right now. Also, try making the forms better. Make then have more functionality too. if you can.2 years ago
I ran my repl and I clicked on the link I coded which brought me to this site, but there is an ad-block. Is this in repl.it's program or what.
suzi002 Add blocking are a savior to me.
https://techyvoice.com/9-best-youtube-to-mp3-converters1 year ago
KristPom I have never encountered such a problem yet., maybe something is wrong with your browser? Have you tried to launch the same link from another browser or device? There are no built-in adblockers on this platform, so it can't be a problem of this site. Perhaps you have a terrible ad blocker installed, which simply interferes with the average performance of your browser. Try disabling your Adblock to understand what the problem is exactly. Free Adblock extensions often work incorrectly, poorly, cau1 year ago
Coder100 then disable adblock.
Basically:
if you have not logged in, you should not be expecting the program to save (probably)2 years ago
I was just wondering how to make a real-time repl. I mean that the repl is publicly saved, like live chat repls or real-time leaderboards.
TheRealSnowSJ You would need to run a server (On Node.js, Python, etc.) Then use databases to update info.2 years ago
There is no repl attached to this post, but I am wondering how to have a custom cursor in HTML, CSS, JS. Can I have an actual example from an actual r
lightningrock Easy! Use the cursor property in css like this:
.custom-cursor {
cursor: url(cursor.png);
}
/* Or */
.custom-cursor {
cursor: help; /* Change help to anything else */
}
`2 years ago
Coder100 Easy! Go to https://cursor.cc and customize away!
Anyways, can you guess what this does?
body {
cursor: pointer;
}
read more2 years ago
I was wondering how domains are made. It would be helpful if you would put the answer to that in the chat. I created my domain, but don't actually buy
HTML, CSS, JS