Jackson Schultz
@icelite
Hey, I'm Jackson! | Founder, CEO, and Developer at JVentures | Head Developer at Smartify
Hey, all! I am sure you are all familiar with @aMoniker’s Gush. Well, I am re-making it! I have made original skins, and am working on editing it 100%
HTML, CSS, JS
I am making a new version of @Willard21 MineKhan called Ravencraft. I need to make multiplayer, let me know if you would like to see the code and help
My domain was linked to repl, then I unlinked it. Now, I am re-linking it to the same repl and it will not work.
Screen Shot 2021-09-28 at 3.36.14 PM
sn236 You have already linked your domain to that repl, so it will not take that domain name again, use a different domain name1 year ago
How would I make this Scratch feature on its own in a repl;
Screen Shot 2021-04-24 at 7.13.23 PM
Could anyone help??
Coder100 Such editing features aren't exactly hard, they are automatically implemented when you implement polygons.2 years ago
How would I be able to make a webpage that can tell people their IP?
RoBlockHead You cannot, Replit specifically makes it so that repls can't get the IP of the client.2 years ago
How would I make an coding IDE like repl? I would like to make the program in HTML CSS and JS
Coder100 Wanna see my whaleboat clone? I experimented with IDE making and it probably still works provided nobody broke it
https://replit.com/@Coder100/WHALEBOAT-Replit-Clone-very-pog#.replit
EDIT IT WORKS STILL2 years ago
I had a idea for a spotify-like music app. I have never coded something that big, could anyone help me?
Hello! I am making a OS in python, and when I run it I get this in the console:
Repl.it: Updating package configuration
--> python3 -m poetry lock
U
Python
How do I turn a website into a chrome extension? I would like to make one of my games into an extension.
ch1ck3n https://developer.chrome.com/docs/extensions/mv2/getstarted/
once you get everything started (manifest.json and background.js)
put this in your background.js
background.js
chrome.browserAction.onClicked.addListener(function(activeTab){
var newURL = "http://replit.com/";
chrome.tabs.create({ url: newURL });
});
manifest.json:
{
"name": "My game",
"version": "1.0",
"description": "My game!",
"background": {
"scripts": ["background.js"],
"persistent": false
},
"manifes2 years ago
InvisibleOne I suggest you read this: https://thoughtbot.com/blog/how-to-make-a-chrome-extension
Or chromes Extension docs here: https://developer.chrome.com/docs/extensions/mv3/overview/2 years ago
UnluckyFroggy What do you mean by that? Like a chrome app? or a redirect extension that takes people to your website?2 years ago
So, I am a pretty new programmer, and I could use some help. Could anyone volunteer to help? So the game is a 2D game called Sandbox, (that is like Mi
Can anyone help me make this multiplayer and/or have a leaderboard with points?
HTML, CSS, JS
19wintersp For a start, you'll need a server written in something like NodeJS or Python to handle this. You could use WebSocket connections to sync up the clients, and update coordinates and positions. For a leaderboard, you can use a database to store people's scores, though again, you need a server.2 years ago
How can I make a virtual phone on a website?
If i am not being clear, (i know im not really) please comment any questions and answers.
Thank you!
SixBeeps As with any programming project, there are a zillion different ways of doing it, but one way would be to set up a two-way websocket between the two users and transfer audio data between the two.
Unless you want it to work with actual phones, in which case that's a completely different story.2 years ago
How can I make a texting app? I need some ideas.
EpicGamer007 https://socket.io/get-started/chat/ check out this first. then work on getting a database set up to save the messages.2 years ago
Whats Up, Replers! I looked, and my achievement section is gone. I looked further and the bug icon in the corner is also gone. Why?
Bookie0 Yea, the bug icon is the explorer's icon. To put it back on, go to account >> roles >> and check the box next to "explorer".
Screen Shot 2020-12-07 at 10.21.49 AM
for the achievement section, yea it happened to me as well where it's gone. Dunno why. Only thing you can do is to report to bugs here ;)
Also you could try to wait, which is what I did and then i got the achievements tab back yeepee! :)2 years ago
Can anyone help? How do I make a login/logout and signup/delete account?
RYANTADIPARTHI if this is in django, try these links:
https://pythonprogramming.net/user-login-logout-django-tutorial/
https://learndjango.com/tutorials/django-login-and-logout-tutorial2 years ago
How do I make a webclip profile for iOS? I am trying to make a website where you can download a webclip profile, but i don't know how. Could anyone he
RYANTADIPARTHI you probably have to install it Ravens0606, Please mark my answer if this helps. Thanks!2 years ago
Hey, Replers! I have been forking repls since the day I started, and I want to know if it is not OK. Also, I wanted to say I´m sorry to each repler th
Coder100 Forking is fine! Feel free to learn from other peoples' code :)
The only part of forking that is not allowed is claiming that code as your own, please attribute the author!
Conclusion
Feel free to fork code, you can learn from others, and maybe others can learn from you! However, please don't fork code with the intention of stealing others' work, that is plagiarism, and like in real life, you will get punished!2 years ago
Kookiez it's not against the policy, you can totally fork a repl. But if you post the repl on share or something, I think you have to ask the person who made the repl first, and credit them when you make a post. Like if you forked a repl, added some cool stuff to it, and posted it to share, you should credit that this person made it, and you added something to it... etc.
Hope this helps! :D2 years ago
Baconman321 No, it is not against their policy since this is more of a learning site than a sharing site. Either way, do not claim any repl that you modify from another person to be 100% yours, and always ask permission from the owner if you want to make a project out of it.2 years ago
This is a WORKING recreate of the 2004 Scratch Website! When you click on things it will bring you to the correct pages thanks to Internet Archive's W
HTML, CSS, JS
DREWNOLT cool! hey, do you have a scratch account at https://scratch.mit.edu/users/ravens0606 ? Mine is at https://scratch.mit.edu/users/DREWNOLT2 years ago
So! I finally finished my Pokemon: Blue Remake! Created on scratch by me 3 years ago, I found Forkphorus and I could embed it into a fully coded site!
HTML, CSS, JS
I need help with making a countdown timer and notification system when it goes off, could anyone help? comment pls if you can!
NISHoriginal In Python, you can also use the time library:
import time
sec = int(input("How many seconds do you want to countdown? : "))
for i in range(1,sec+1):
print(i)
time.sleep(1)
print("Time Up!!")
I hope it helped.2 years ago
Whacko var timer = 60 /* Change it to whatever you want */
var countdown = setInterval(function() {
if (timer == 0) {
clearInterval(); /* End */
} else {
timer -= 1 /* Countdown */
};
}, 1000 /* Miloseconds */);
Using the setInterval() JavaScript code, you can make a countdown.2 years ago