noodles 37
@noodles37
...
This may be a little confusing for some people...
Short Tutorial on the [The Basics] of C++.
Hope you enjoy!
FULLSCREEN HERE
C++
ChimaNwosu1 I've literally been trying to learn how to print text slow, this repl taught me how to use user input and how to get any key input. Good looks!3 years ago
Jason-F There are tons of types of functions, such as bool, etc. And with libraries like there are functions like say
std::vector func(){// this returns an int vector}3 years ago
This is just a basic website with links, buttons and a top navigation bar.
You need basic HTML knowledge
replace '#link' with desired link (href area)
HTML, CSS, JS
I am making a Google Auth, with help from @RohilPatel, why is there a script error?
HTML, CSS, JS
What does a .replit file type do?
What can you do on it?
How is it used?
^_^
SixBeeps A .replit file lets you have a bit more flexibility on how your Repl runs. It's mainly used for overriding the Run button with a custom Bash command so you can run a specific file.3 years ago
What is the best website to learn Python?
I have none to little experience, thanks for any help!
BlueComet A fun way to learn is https://codecombat.com/play
you get to have fun while coding3 years ago
HerculukeZeEpic try going to my YouTube channel, I do python tutorials!
Herculuke Ze Epic3 years ago
Why is my height: 100%; not working?
CSS
.menu
{
width: 300px;
background-color: greenyellow;
float: left;
text-align: center;
font-family:
ash15khng Can you show us the repl?
I think its not working because the div will take 100% of it's parent element, which is body, which will not take up the whole screen if it doesn't need to. (Your browser's inspect element should be helpful in this case)
You can set body and html to be 100% to fix this:
.menu {
/rules for menu/
}
html, body {
height: 100%
}
3 years ago
So I am making Corona Clicker game, there is an intro where some paragraph text show one after another.
I want to make it so when I click the "Play"
HTML, CSS, JS
eco27 that's because you are using setInterval() in your intro sequence. setInterval() does what it sounds like, it sets up an interval to repeat the action every however many milliseconds. I think setTimeout() is what you were going for there3 years ago
How do you make a text file that is the same for everyone? When I use fstream to make a file and type in it, it only happens on my file...
Is there a
Highwayman Oh wait, this is c++....
Yeah it looks like you can only go for options 2, 3, or 5. I suggest two, since it’s probably easiest I’d think.3 years ago
Highwayman Some easy ways...
1) server the textFile with a tiny bit if js an html(just enough to let the content be editable and to save the result
2) make an option in your code to edit the text file, and.. uh.. idk good luck
3) share the repl with everyone you ever speak to
4) make the text file part of a database that simply serves the pure text file and edits the textFile directly.
5) quietly weep.3 years ago
I am making RoseWeb and there is a search box that was working.
It still is but it won't match with the last four does anyone know why?
Try searchin
HTML, CSS, JS
I am making a website called RoseWeb, where you can search up projects made by fellow Repl-ers.
Anyone that wants to help, comment below.
You may als
HTML, CSS, JS
Can anyone give me some HTML/JS/CSS projects to make?
Requirements
Not too hard to make (I am not great)
Nothing else, really...
I want to work with someone on a C++ project, I am not an expert but I can do a decent amount of C++. We can decide the theme together.
adhvaiththurvas I would like to; I'm not an expert in C++ either and so far I can only code console applications (so no GUI apps), but if you're fine with that, then I can work with you.3 years ago
This is just a fun program that calculates pi and also gives you some tips to learn pi.
FULLSCREEN IS HERE
P.S. You can only see the formula in light
HTML, CSS, JS
WARNING THIS IS 3 LINES BUT VERY LONG
This is a program that translates keypresses or "text" to its binary equivalent.
Have fun!
C++
xxpertHacker Do you mind if I take your code and call it mine? Mainly just the getch() function from k.hpp. I improved upon your code here: https://repl.it/@StudentFires/CharacterToBinary3 years ago
noodles37 You can suggest any new characters to translate right now there is...
a-z lowercase
[, ], \3 years ago
Welcome to Paint World where dreams come true!
Follow instructions in console. Save is stored into a text file.
Commands/colours
Press 'q' for green
C++
This is a C++ program that shows the stats of a number. I added a keypress detector which took some time to search for. Thanks to this repl
Enjoy!
Fe
C++
Can someone give me a C++ project that isn't too hard to make?
Comment something that would be useful or you would like to see in C++! and I will hop
For people who are doing c++ and want a slowprint function, this took me a LONG time to figure out probs cuz im dumb...:)
C++
Is there any way to detect a keypress without using the getch() function?
Thanks
RomeroSchwarz Here is a tutorial I made on this. I hope it explains it well.
> If this post helped, mark it as the answer3 years ago
Does anyone know how to allow spaces in c++ input?
I tried
std::string word;
std::cout << "Enter a word: ";
std::getline(std::cin, word);
but it is no