Marc_
@Marc-020513
Hi! I am Marc. I like coding, especially in Python, HTML, CSS, and JS. For more info, visit marcchew.is-a.dev, my site.
Repls
Community
0
SoftBody-testSimple 3d softbody in three.js
2
0
0
1
completecodeA free ghostwriter.
Made usin OpenAI CodeX.
Example:
def Push(data):
global StackData, StackPointer
if StackPointer == len(StackData):
print("Stack is full")
What the AI wrote:
else:
StackData[StackPointer] = data
StackPointer += 1
def pop():
global StackData, StackPointer
if StackPointer == 0:
print("Stack is empty")
else:
StackPointer -= 1
return StackData[StackPointer]
def printStack():
global StackData, StackPointer
print(StackData[:StackPointer])
StackData = [0 for _ in range(10)]
StackPointer = 0
push(1)
push(2)
push(3)
push(4)
push(5)
push(6)
push(7)
push(8)
push(9)
push(10)
push(11)
printStack()
print(pop())
print(pop())
print(pop())
print(pop())
print(pop())
print(pop())
print(pop())
print(pop())
print(pop())
print(pop())
print(pop())
printStack()
Benefits: It writes more code and can complete whole programs
disadvantages: It requires meaningful function and variable names to be accurate, and requires more time to complete the code.
18
2
1
1
Avengers:Use the arrow keys to move and click to fire bullets. (!PC ONLY!)
Avengers game
#PC ONLY
##This is a game for the BIT Mesra junior hackathon. Arrow keys for movement, click to shoot.23
1
1
83
This is my first PWA! This is a calculator designed to be simplistic. You can install this on chrome, however i am not sure of other browsers. Insprat
HTML, CSS, JS
0
Calculator PWAThis is a simple utility calculator. Enjoy!
57
2
0
0
COVID-19 DATAThis is just to find COVID data.
1
0
0
This is a MacOS Calculator Project, coded with multiple languages. The main GUI is coded with HTML, CSS and JS. This also has Light Mode and Dark Mode
HTML, CSS, JS
0