BananaJellyfish
@BananaJellyfish
I am a banana jellyfish. I use python mostly but am now learning C++
0
1
Simple 3D RaycasterA simple raycaster.
Find the yellow block.
Controls:
to move/look around
space to toggle ghost mode (if you exit the area by doing this strange things happen)
Randomly Generated 3D Raycaster
This is an untextured raycaster. It uses conway's game of life to generate the map. The goal is to find the yellow square, which is much easier to see than everything else. It was made with this tutorial: https://lodev.org/cgtutor/raycasting.html#UntexturedRaycaster1
Simple 3D RaycasterA simple raycaster.
Find the yellow block.
Controls:
to move/look around
space to toggle ghost mode (if you exit the area by doing this strange things happen)
215
8
1
BananaJellyfish This is an untextured raycaster. It uses conway's game of life to generate the map. The goal is to find the yellow square, which is much easier to see than everything else. It was made with this tutorial: https://lodev.org/cgtutor/raycasting.html#Untextured_Raycaster_1 year ago
4
Ya hafta shoot a buncha zombies and they explode :).
Took me quite a while, and might be pretty laggy.
image
WASD to move(or arrow keys)
hold space
Pygame
4
zombiesa simple zombie shooter
124
3
4
BananaJellyfish This is a zombie shooter. You shoot zombies.
Controls:
WASD or <^> to move
R to reload
Switch guns:
1-pistol
2-Assault Rifle
3-Magnum
4-MAchine Gun1 year ago
0
The TestA simple test
1
0
0
what is the best way for me to learn c++?
IMayBeMe Read documentation and and focus on learning concepts over syntax. Treat it as though your learning a spoken language by immersing yourself in it. For example if you have math homework, try to automate the concept you learnt through c++. Here is a tutorial I wrote a while back that explains the learning process more in-depth: https://replit.com/talk/learn/How-to-Learn-Programming-Complete-Guide/1408032 years ago
OldWizard209 The best way to learn a language is to either buy a course or watch a full video that explains pretty much everything on youtube. Buying a course is beneficial because courses cover more than needed. But anyways, this [video](https://www.youtube.com/watch?v=_bYFu9mBnr40 by far is the best C++ tutorial IMO. You can also learn from Codecademy or w3schools2 years ago
InvisibleOne It depends on you, some people like to watch videos, I find it easier to read a tutorial from w3schools or if they have the free class on Codecademy then I do it there.2 years ago
0
Death DetectorFind out when you will die! Note: may not be accurate
45
35
0
2
Are you a robot?A quiz that decides how robotic you are
182
25
2
basically, i want to know if this will save a username and a password so, lets say i posted this, if you someone else uses the same username and pass
Python
Coder100 no, no it won't. Files are not reliable databases. They can reset if you don't visit the repl every few hours or so.2 years ago
go to the bathroom using '1'. it should be printing a random weapon(line 181) but instead it prints 'None'. i just can't figure out the problem
Python
IMayBeMe The issue is that you never actually return a weapon so it can be fixed by doing the following:
def gen_wep(wep):
n = randint(1,100)
if n 5 29:
wep = random.choice(['AK-47','Pistol'])
weapons.append(wep)
return wep
It should work2 years ago
for some reason, i can search results, but for everyone else it cant find them. why?
Python
AntimatterDev yeah i use sqlite as its easy to learn and use since its stored in a file on your repl and not on a digital database.2 years ago
KeaganLandfried Databases can only be edited by editors of the repl. I suggest using another database like mySQL if this turns out to be a problem for networking.2 years ago
think if it more like a notetaker
About
Ok, i think it suits this better to be a note taker
BJSearch is a search engine that you can add results to.
o
Python
JBloves27 Pretty cool, but i dont think this is a search-engine, more of a personal dictionary2 years ago
Press 1 and then 4 to get to the desired section. But when you try to type something you want, it doesn't work. what am i doing wrong? i want, for exa
Python
Kai_Justice Something like this should do it.
if ans.capitalize() == "Food" and "Food" in items:
... do stuff
`2 years ago
when i print out the list, it has two [[]] sets of brackets. using * gets rid of one of them, but not the other set. How do i solve this? (to get to t
Python