Skip to content
Open navbar menu
Sign UpLog In
Profile icon

Icelite

@icelite
Hey! | Proud Replit user since 2019
GitHub
  • Chrome Extension

    Cover page
    Made with Node.js

    Created by @icelite on Replit for the 2022 Template Jam. | Be sure to read README.md

    Recent comments (0)
icelite
icelite
shared a Post
2 years ago
Introducing: Astro!
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%
astro
HTML, CSS, JS
ch1ck3n
ch1ck3n
amogus i dont see any changes besides the characters what did you do2 years ago
icelite
icelite
shared a Post
2 years ago
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
icelite
icelite
shared a Post
2 years ago
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
sn236
You have already linked your domain to that repl, so it will not take that domain name again, use a different domain name2 years ago
icelite
icelite
shared a Post
2 years 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
Coder100
Such editing features aren't exactly hard, they are automatically implemented when you implement polygons.2 years ago
icelite
icelite
shared a Post
2 years ago
How would I be able to make a webpage that can tell people their IP?
Coder100
Coder100
not allowed because tos2 years ago
RoBlockHead
RoBlockHead
You cannot, Replit specifically makes it so that repls can't get the IP of the client.2 years ago
icelite
icelite
shared a Post
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
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
icelite
icelite
shared a Post
3 years ago
I had a idea for a spotify-like music app. I have never coded something that big, could anyone help me?
PYTHORE3605
PYTHORE3605
What language?3 years ago
icelite
icelite
shared a Post
3 years ago
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
Flame
Python
icelite
icelite
shared a Post
3 years ago
How do I turn a website into a chrome extension? I would like to make one of my games into an extension.
ch1ck3n
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 }, "manifes3 years ago
InvisibleOne
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/3 years ago
UnluckyFroggy
UnluckyFroggy
What do you mean by that? Like a chrome app? or a redirect extension that takes people to your website?3 years ago
icelite
icelite
shared a Post
3 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
RYANTADIPARTHI
RYANTADIPARTHI
so, what language did you decide to make it in overall?3 years ago
SixBeeps
SixBeeps
What language? Any libraries? What kind of programmer are you looking for?3 years ago
icelite
icelite
shared a Post
3 years ago
Can anyone help me make this multiplayer and/or have a leaderboard with points?
dash
HTML, CSS, JS
19wintersp
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.3 years ago
icelite
icelite
shared a Post
3 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!
RYANTADIPARTHI
RYANTADIPARTHI
Yes, you can. Kotlin is the best language for that.3 years ago
SixBeeps
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.3 years ago
icelite
icelite
shared a Post
3 years ago
How can I make a texting app? I need some ideas.
EpicGamer007
EpicGamer007
https://socket.io/get-started/chat/ check out this first. then work on getting a database set up to save the messages.3 years ago
icelite
icelite
shared a Post
3 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
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! :)3 years ago
programmeruser
programmeruser
Upvotes don't matter.3 years ago
icelite
icelite
shared a Post
3 years ago
Can anyone help? How do I make a login/logout and signup/delete account?
RYANTADIPARTHI
RYANTADIPARTHI
Hey raven, did you get the answer?3 years ago
Coder100
Coder100
what lang? python?3 years ago
RYANTADIPARTHI
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-tutorial3 years ago
icelite
icelite
shared a Post
3 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
RYANTADIPARTHI
Thank you raven!!3 years ago
RYANTADIPARTHI
RYANTADIPARTHI
you probably have to install it Ravens0606, Please mark my answer if this helps. Thanks!3 years ago
Coder100
Coder100
this?3 years ago
icelite
icelite
shared a Post
3 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
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!3 years ago
Kookiez
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! :D3 years ago
Baconman321
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.3 years ago
icelite
icelite
shared a Post
3 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
scratch
HTML, CSS, JS
DREWNOLT
DREWNOLT
cool! hey, do you have a scratch account at https://scratch.mit.edu/users/ravens0606 ? Mine is at https://scratch.mit.edu/users/DREWNOLT3 years ago
DynamicSquid
DynamicSquid
Oh that's neat! How'd you create this? Did you code all that yourself?3 years ago
icelite
icelite
shared a Post
3 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!
pokemonblue
HTML, CSS, JS
ColinKirsch
ColinKirsch
@icelite how do i select? and what are all the controls?2 years ago
ColinKirsch
ColinKirsch
is there a way to save this?2 years ago
icelite
icelite
shared a Post
3 years ago
I need help with making a countdown timer and notification system when it goes off, could anyone help? comment pls if you can!
NISHoriginal
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.3 years ago
Whacko
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.3 years ago
RavenDad
RavenDad
Not at school3 years ago