The Guy Who Has a [Digital] Tiger ๐
@AR199
I enjoy coding and I dabble in Python, HTML, CSS, and JS
0
Hygiene MattersA website on the importance of hygiene.
1
0
0
I just found out about the replapi module, and it seemed extremely cool. I tried it out, but it doesn't work for me. Could someone help me please?
Python
Coder100 Due to infrastructure changes, the api no longer works. You can try graphql here: https://replit.com/graphql1 year ago
ch1ck3n the cycles thing of replapi (both v1 AND v2) is currently broken as the graphql thing changed
I will be adding some changes to replapi2 (my package (it's pretty much the same)) so it can get cycles
here are the list of things that are broken:
avatar
bio
name (for example mine is ollie tabooger)
cycles1 year ago
This is a nice animation I made with p5.js. Extremely simple, but at the same time, extremely pleasing to the eyes. Hope you like it!
HTML, CSS, JS
VulcanWM woah! maybe make it so that it looks at how big the screen is and then sizes the page based on that so there are no scroll bars1 year ago
Random Password Generator
This is a random password generator
This is a random password generator website I built as a side coding project. You can
HTML, CSS, JS
1
random-password-generatorThis is a cool random password generator. Press generate new password to generate a new password and copy to copy the current password to your clipboard.
15
4
1
MattDESTROYER To quote [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/random)
```
Note: Math.random() does not provide cryptographically secure random numbers. Do not use them for anything related to security. Use the Web Crypto API instead, and more precisely the window.crypto.getRandomValues() method.
```1 year ago
0
videosculptureThis is a nice animated video sculpture. You can click on different videos playing to make them change to another video.
11
0
0
7
p5.js screensaverA nice screensaver made using P5JS
122
0
7
Hi! So, I've seen how in a lot of websites created with HTML, CSS, JS, when you scroll down, the content slides in. How would I make that? As in, what
Coder100 Yeah, that's a scroll animation.
With a bit of js, you can make it.
https://coolcssanimation.com/how-to-trigger-a-css-animation-on-scroll/2 years ago
0
11
0
0
I want to use Font Awesome to have a nice icon in the title of my blog site. How do I include the Font Awesome icon in the `` tag of my HTML file?
SixBeeps You're looking to add what's called a 'favicon' to your webpage.
IIRC the way that Replit handles favicons is as easy as uploading one to the root with the name favicon.ico. If you can convert the Font Awesome icon to an ico, then that's all you'd need.2 years ago
Hi, this is my website. I want to keep the navigation bar in the same fixed position. How do I do that?
HTML, CSS, JS
Hi,
This is my Website! Please give feedback.
[My Website] (https://ar199.repl.co/)
Open the website in a new tab, or it won't display correctly.
HTML, CSS, JS
This is a simple Python IDE I made using the exec function.
Python
Dunce tip:
instead of always raising a syntax error, no matter what the error actually is, like you're doing here:
try:
print(f"{cyan}", end="")
for thng in thing:
if thng in tokens:
print(f"{green}", end="")
exec(thing)
except:
print(colored("Syntax Error.", "red"))
you can get what the actual error is, like so:
try:
print(f"{cyan}", end="")
for thng in thing:
if thng in tokens:
print(f"{green}", end="")
exec(thing)
except Exception as error:
print(colored(error, "red2 years ago
27
7
Bug InvadersSuper Addictive Game to play!
493
17
7
This is a super cool Pokรฉmon battle template/game. Feel free to fork it and add your own stuff!
Python
AR199 And an even more recent version: https://replit.com/@AR199/Pokemon-Battle-V3#main.py2 years ago
These are some super cool games of chance. Hope you have a lot of fun playing them!
Python
Hi guys! This is a really fun game I made with Phaser.js
Credits to Codecademy for helping me with this!
HTML, CSS, JS
BananaJellyfish cool! but you should add some spikes/enemies in to make it more challenging2 years ago