Rudraksh Tyagi
@tyagir2392
0
question
I was trying to add a comment section to my voting app, but it keeps on giving me an error when I enter "python manage.py migrate," can somebody help me fix this error?0
Replit database
I want to use the replit database with React/Next, can someone give me a guide on how to do that?0
1
0
0
0
Processing.py program doesn't work
I am trying to make this processing.py program that renders a circle whenever the mouse is pressed, and when it's pressed I want a 1 to be be added to the variable x and then for it to be written to a text file for how many circles there are.
I think I wrote the right code ,but for some reason it's not doing what I want it to, can somebody check what's wrong with it.11
1
0
I am having trouble using api in reactJS, can anybody post a tutorial for it
0
react CalculatorReact calculator
1
0
0
4
Code editorHtml, css and js code editor using codemirror
233
2
4
ZacharyRude This code editor uses a version of the ACE Editor that is very different from the one that I am the most familliar with.2 years ago
So this is suppose to be a grading app, that has you put the number of questions in the first input, how many questions a student got wrong on the sec
Python
0
PDF makerOnline React Editor and IDE: compile, run, and host React apps
0
0
0
Is there a way to use a dart gui library or framework on repl.
For some reason this rails hello world app is giving me an error, with root'home#index'
Ruby
I made this little game called picguess where you have guess pictures by there name, enjoy!(note:I am going to be adding a timer to this, to give it a
HTML, CSS, JS
tyagir2392 If you can’t see the open in another tab button, click this: https://pessimisticdarkbluestacks.tyagir2392.repl.co/
2 years ago
I am currently working on a amazon clone with react, redux and firebase ,and as you can tell this will be a huge project, will repl.it be able to hand
SixBeeps It has been done before, but there are clear limitations. If your project somehow exceeds your allotted resources, you may have to talk to someone within the Replit team to see if you can strike a special deal with them. Otherwise, Replit is capable of a lot of things, and it scales quite nicely.2 years ago
ILikeGuineaPigs I mean... I don't particularity know, I am new to repl and I would suggest using a application IDE not a browser IDE (ex. Visual studio, Notepad++)2 years ago
I wanted to use this file, but the console said it did not exist, is there a way around that I can put the file there to use it?
I have website made, that I want to realise can I do that with replit?
SixBeeps Yes, Replit can host your website. Just make an HTML+JS+CSS Repl and it'll give you a domain linked to a server which hosts your website.2 years ago
So I want to make a drop-down menu, where users don't have to choose the the given options and can make their own, but I can't find a way to do this,
Coder100 use something like an radio, the industry standard:
Option a
Option b
Option c
Other (please specify):
and its so easy no js required.2 years ago
Andy_4sberg Make a link or button that hides/shows a form with text inputs.
This worked for me:
function something() {
// Put code here
}
function visible() {
var is_visible = document.getElementById("menu");
if (is_visible.style.visibility==='visible') {
is_visible.style.visibility='hidden';
} else {
is_visible.style.visibility='visible';
}
}
Drop down menu
`2 years ago
I have been working on this program for a few hours, but now it's not working. Can someone take a look at it, I probably made a mistake since this is
Python
Coder100
image
You need a specifier, like:
' '.join(......)
correct code
def passgen():
if choice.get() == 1:
return ''.join(random.sample(POOR, val.get()))
if choice.get() == 1:
return ''.join(random.sample(AVERAGE, val.get()))
if choice.get() == 1:
return ''.join(random.sample(ADVANCED, val.get()))
`2 years ago
Which one do you think is better?
willisidi I think Microsoft Visual Studio Enterprise is much better than Replit. Although I am a novice programmer, I already appreciate this tool. Of course, Visual Studio 2017 offers numerous online courses to make it as easy as possible for beginners to use it. Have you seen the new version of Visual Studio 2017 yet? The extremely wide range of language choices is another highlight that makes Visual Studio Enterprise 2017 truly unique: from older languages like Visual Basic to C and C++ and C# to TypeS1 year ago
RYANTADIPARTHI Visual studio is way better. You can do lots of stuff you can't do in repl.it2 years ago
Coder100 Visual studio is the best ide overall for C++, C#, and Unity game development. It is easy to set up (although maybe a bit longer than most systems) and it is easy to jump right into coding.
Replit should not be compared with visual studio. They use a similar editor layout, namely monaco. However, replit is not only an IDE. It is the fastest way to get coding into almost any language you want, and you can also easily host things.2 years ago