The Kingfisher
@RYANTADIPARTHI
Time is precious, waste it wisely.
Hi,
If you open Gmail (google mail), and click on the settings icon on the navbar above, and then click all settings, you will come to a page where i
WinifredMira Download a list of free phone ringtones at the website: https://klingeltonekostenlos.de/7 months ago
SixBeeps Have fun.
https://ssl.gstatic.com/chat/sounds/hubchatnotification_sunrise-973b53e821dc8ec76587980d63d7d6c1.mp3
https://ssl.gstatic.com/chat/sounds/hubchatnotification_snap-ce80cb2fa6a6d302d0213480a7ee2dda.mp3
https://ssl.gstatic.com/chat/sounds/hubchatnotification_sweet-06b2f5010a2e673c077b21fdaff3ce5c.mp3
https://ssl.gstatic.com/chat/sounds/hubchatnotification_whistle-a0c8a1d0a8fbdac12b93741e67a9d6c9.mp3
https://ssl.gstatic.com/chat/sounds/hubchatnotification_tennis-7bc2c0ef187a3be46ae37f60f7e2 years ago
I have a folder, and in the folder I have on file, and in the file I have one function.
In main.py, I want to import the function from that file, and
6
HTML, CSS, JS Editor AppThis is kind of like a clone of Replit, with the same design and has almost all the functionality of Replit. But it does have some differences. To check the app out more in detail, check out the post:
https://replit.com/talk/share/HTML-CSS-JS-Editor-App-or-Jax-Very-similar-to-replit/143531
326
21
6
HTML, CSS, JS Editor App | Jax - very similar to replit
Before I start, I want to remind you to always open this in a new tab.
canvas
click that bu
Python
DwightScott Thanks for sharing the codes for JS Canvas. Javascript is very hard to learn, I found some dating websites who uses Judo Script as their programming language.
Read this article to know more: Dating Websites Using Judo script | 20191 year ago
Hi,
when you make a repl as a collaboration or team repl, it has a chat feature. In that chat feature, it shows if the user is available(online) or l
JakeHu2020 if you use node, socket.io lets you do this sort of thing:
io.on('connection',(socket)=>{
socket.on('disconnect',()=>{console.log('user closed page')});
});
`2 years ago
ch1ck3n https://github.com/django/channels and i think websocket has the ability to know when a user has disconnected2 years ago
Coder100 well
both technically, but not exactly.
I don't believe django does have the option to do websockets, but I do know flask (similar to django) does.
JavaScript has socket.io, so maybe that's something for you there.
But you are kind of overthinking this. Once you implement accounts, you don't need to know if the user closed the tab or not, when they connect to the websocket, all information is given!2 years ago
I want to know if there is a module or a way to detect keys and perform some action when clicked in the python console.
So for example, if I clicked
i just wanted to know how to get replit markdown in python or django. By that i mean, it should include the exact features of the replit markdown. Lik
ch1ck3n well oldwizard's answer is right but theres a better method
import markdown2 # the new updated version
my_content = "# whatever"
myhtml = markdown2.markdown(mycontent) # you don't need to create a object
print(my_html) # whatever
`2 years ago
OldWizard209 Markdown is universal, meaning it's there in most websites that allow you to post things because markdown is literally turning a few symbols into html code that can be parsed by any browser. So the way you do that in Django is pretty simple as well.
When you run a Django app, you most likely render a template file containing the HTML code. All you have to do is convert markdown into HTML, and put render that HTML into the template file. You can do that using the markdown package. Install it int2 years ago
Hi,
Could someone tell me how to make the spotlight run button you see on someone's repl. The huge green button with a white play button. If someone
InvisibleOne Here's the code for a little chat room I built a while ago
NODE.JS FILE:
// --- CREATED BY INVISIBLEONE AND JANKYCODER --- \\
const express = require('express');
const app = express()
const http = require('http').Server(app);
const io = require('socket.io')(http);
var Filter = require('bad-words'),
filter = new Filter();
users = 0;
app.get('/', (req, res) => {
res.sendFile(__dirname + '/index.html')
});
io.on('connection', (socket)=> {
console.log("User Connected!");
users += 1
socke2 years ago
InvisibleOne Chat room in python: while 1:import os;z=os.getenv("REPL_OWNER")+": ";print("\x1B[2J"+str(open('c','a').write(z+input(z)+'\n'))+" ".join([l for l in open('c')]))
As for the run button, you should be able to inspect the page and see what the code for it is. I'm guessing it's an svg or image.2 years ago
LAMAQDAHODWALA I'm not a CSS pro, but i would imagine that you would have a button with an svg inside it. Or, you could make the whole button svg and with no CSS required. Then, just make an onclick element in your javascript.2 years ago
Hi,
all of my repls are slow when I run them. They take a very long time to execute and even work. Some are not even working.
Is replit having some
Coder100 replit recently had an outage, and the servers have been really really bad recently. But now it should be working?
Anyways, here are some languages that currently work poorly:
nodejs
python
try some other language like bash
https://replit.com/@Coder100/SpiffyYoungDegrees-aeouaeo-uae-oua-eoaeo-aeo#main.py2 years ago
JonDoeBeep I think it is because they give a person without hacker plan less ram and cpu speed then the hacker plan people
EX:
Starter plan(free) has 500mb of storage,
500mb of memory(ram)
0.2-0.5 virtual CPUs2 years ago
Hi,
could you anyone give me the repl.it pin repl button? It looks like this.
Screenshot 2021-04-04 1.51.14 PM
so if anyone could give that button,
EpicGamer007 I think that is only for mods so that they can pin specific posts such as announcements, etc.2 years ago
hi,
i just want the repl.it pinned symbol. You know the pinned posts at the top? The symbol beside them looks like a pin.
So if someone could give me
OldWizard209 so what do you exactly want. The question is vague. You want the image of the pin or what?2 years ago
Hi,
i just needed help with the repl.it dark mode, and the check mark in the ask section.
So if someone could help me out with the repl.it dark mode
SixBeeps Looks like they use an SVG and switch the RGB values for interaction. If you want the SVG code, here it is:
`2 years ago
🛒 Shopping Cart App 🛒
Hi guys, i made a little shopping cart app, with a few similar features of a real shopping cart app.
Features
register
logi
Python
Hi,
i just want to know how to move a border in css. like you would say border: 1px solid grey. But, the position of it isn't right, i want to know h
Coder100 borders can't move. Do you mean the position of the element?
Use:
margin for the area surrounding the element.
padding for the area inside the element.2 years ago
Hi,
so, i'm making something, and i want to have a gibberish detector in it. Meaning like, if someone tried to post gibberish, it says True, or gives
catspython I realized that once a ask question is answered it doesn't get much more comments. So I decided to comment on an old, answered question to give a random notification and annoy them or something. Or you, @RYANTADIPARTHI.2 years ago
tussiez You can try using this file to start with: https://autocomplete.tussiez.repl.co/words.txt2 years ago
rediar Simple: Use a dictionary api
Slang and names will be classified as gibberish then. So you should only classify a message as gibberish if more then half a message's words are gibberish.
Additionally, you can flag multiple constanants in a row as gibberish, as well as weird capitalization, numbers and symbols inside words, and also length of a word.2 years ago
Calculator App | Math Wiz
hi guys, i made a calculator app in django. It's not the usual calculator in the console, but in visuals. It can solve a lo
Python
zaydi Yo good job and THREE LINES OF CODE G G
also how is there open in new tab but good job and also problem popper can do this too but looks a bit worse2 years ago
tussiez Nice! As someone else as said, floats don't work, so you may need to round to a certain decimal point2 years ago
RishabTirupath1 This is a very nice website! However, floats don't really work, as with any language, so you could work on that next.
image
2 years ago
Hi,
I just wanted to know the background hex color code of repl.it. You know, when you click on talk, and scroll through posts, the nice grey backgro
BhaskarRana It's #f5f5f5
Below are its rgb and hsl values:
rgb(245, 245, 245)
hsl(0, 0%, 96%)
You can use this Online Color Picker for more information about color schemes and harmonies.
2 years ago
Bookie0 Screen Shot 2021-01-18 at 12.38.39 PM
Use a color picker. The one I use is this, it works very well! :)2 years ago
19wintersp Solution
It's #f5f5f5.
ColorZilla is very useful for these things.
That should work.2 years ago
❄️ Snowman ❄️
Hi guys, i made a simple snowman using python, turtle. It's like a snowman drawing.
Parts
Here's the list of parts it has.
hat
body
Python (with Turtle)
🖼️ Image App | Photron 🖼️
Hi guys, I was scrolling through my repls, and found this. I remember I made this a long time ago, so it might look basic
Python
⌨️ Data Structures Made Easy (Python) ⌨️
hi guys, in this tutorial, i will be covering few data structures in python. Here is the table of contents.