I'm @Bugstacker, your friendly neighborhood self-taught programmer with a knack for exploring everything related to computers. From programming and hacking to web designing, I'm always diving into new tech adventures.
- ๐ญ Currently working on: Mastering the art of web design and creating visually stunning, user-friendly websites.
- ๐ฑ Learning: All the ins and outs of web development and ethical hacking.
- ๐ฏ Looking to collaborate on: Any cool project where I can lend a hand and learn something new.
- ๐ฌ Ask me about: Programming, web development, cybersecurity, or even the latest tech memes!
- ๐ซ How to reach me: Find me on Twitter @emkaysr. Let's chat!
- Languages: HTML, CSS (Tailwind & Bootstrap), JavaScript, Python
- Frameworks: React, NEXTJS, Django
- Tools: Git, GitHub, VS Code, NPM, Webpack, WebStorm, PyCharm
- Interests: Cybersecurity, Ethical hacking
Check out one of my latest projects: Amazing Project (Placeholder for your project details)
I have several real-world projects that showcase my skills and expertise. Many of these are private repositories, but I'm happy to share them upon request. If you're looking for someone passionate about all things tech, I won't disappoint!
Let's play a quick text-based game to make things interesting! Guess the secret number between 1 and 10.
Click to Play!
Here's how it works:
- Choose a number between 1 and 10.
- Check the result below to see if you guessed it right!
import random
def guess_the_number():
secret_number = random.randint(1, 10)
guess = input("Enter your guess: ")
if int(guess) == secret_number:
return "๐ Congrats! You guessed it right!"
else:
return f"Oops! The secret number was {secret_number}. Try again!"
print(guess_the_number())