Vantablack
@ExuDoS
i dont do full time programming but i do some side projects with code
0
wheel of fortune projectthis is a project that i had to make for a school final. the requirements made it closer to hangman than to wheel of fortune, but i still had fun and i will release it here. enjoy.
16
0
0
13
Borgar Menuborgar restrant
i feel like i should mention the fact that this was submitted for a shool assignment. i got a full 10/10 on it and my teacher only complained about the tax and the price of the snake.
421
17
13
2
3
1
2
this was for another assignment I had in my programming class. I decided to have some fun with it and meme the hell out of it. so enjoy your borgar an
Python
this script takes a bunch of different parameters and chooses a game based off of them. it simple enough that you can add games quite easily. there's
Python
it takes any message you put in and uses a key to see what that message should be. then it adds all the letters together in a string and prints it. it
Python
the GitHub repository with a demo I'm trying to use can be found here. I'm trying to get an emulator working but I'm running into the problem that it
programmeruser No need for flask, you only need a static html/css/js repl.
You should probably use js-dos instead of v86 as it's probably faster.2 years ago
heres the code. the website has a timer that will automatically count down until December 10th, but i want to add a circular timer for each passing mi
Coder100 wdym circular timer?
.seconds {
width: 200px;
height: 10px;
transform: rotate(50%);
}
`2 years ago
i have the flask server set up to use multiple pages and i need to open it in a new tab often to test these new pages. but now after opening it in a n
Python
PattanAhmed @Dante_Morrison Hi,
It's a Repl.it Bug
If you want you can try by forking your Repl
> But most likely it will not work.
So, Report it in Repl.it Bugs Section
Click here
That's it you can try
Thanks!
Hope this helps2 years ago
Coder100 Hi! That's a repl.it bug. Please report it here. Alternatively, you can also fork the repl.2 years ago
PattanAhmed @Dante_Morrison Hi,
By looking at this example:-
from flask import Flask
app = Flask('app')
@app.route('/')
def hello_world():
return 'Hello, World!'
app.run(host='0.0.0.0', port=8080)
Having a host as 0.0.0.0 is normal.
But in your case:- You forgot to add port
So, add port thing too.
Make your line 63 like this and try
app.run(debug=True, host='0.0.0.0', port=8080)
That's it
Thanks!
Hope this helps2 years ago
im writing some code that requires an old graphics library called glut. but whenever i try to add the code and the library it always gives some errors
C
PattanAhmed @Dante_Morrison Hi,
Try to add your library name with # include and after that your library name in "".
Thanks!
Hope this helps2 years ago
this is my first experiment with c++. the only reason i'm even learning it is because im going to use it with ue4. the code was taught on gamedev.tv,
C++
ive spent about a week on this. and while theirs defiantly more to do, its at a functioning state right now so i might as well share it.
#DosPY, the
Python
idk if its because im a noob or what but i recently made a website with multiple sub pages and whenever passing through more than one sub page it alwa
i am trying to work on a smaller project with open cv in python. after trying to get it to install i get this weird error.
ImportError: libgthread-2.0