Quietly learning Python & Cyber security; one script, one late-night obsession at a time. Not an expert, just addicted to understanding how things work
Did you know Python can open a web browser tab?
No frameworks. Just one line.
Here’s how to launch a URL, great for building productivity tools or launching docs with your scripts.
Try it out. What URL would you launch first? 👇
#Python#Automation#DevTools
When testing apps that require email-verified registration (like social platforms), what’s your go-to method for creating safe test accounts?
#BugBounty
When testing apps that require email-verified registration (like social platforms), what’s your go-to method for creating safe test accounts?
#BugBounty
Just completed all Access Control challenges on PortSwigger Web Security Academy!
Enjoyed learning bypass and broken logic issues.
What should I explore next to build a solid web security foundation?
#infosec#CTF#Cybersecurity
🤯 Python Trick You’ll Love
Merge 2 dictionaries in 1 line.
No loops, no functions, no imports.
Just '|' 👇 (Python 3.9+)
Clean. Fast. Pythonic.
Try it and reply if this was new to you!
#Python#CodeNewbie#100DaysOfCode#Tech
🚀 Python functions are data too!
You can store them in lists, pass them around, and call them dynamically.
This trick makes your code cleaner, smarter, and way more flexible.
👇 Try this mini "function switchboard"
#Python#AdvancedPython#100DaysOfCode
🚀 Python functions are data too!
You can store them in lists, pass them around, and call them dynamically.
This trick makes your code cleaner, smarter, and way more flexible.
👇 Try this mini "function switchboard"
#Python#AdvancedPython#100DaysOfCode
👀 Python’s bool is a subclass of int 🤯
Yes. 'True' is literally '1', and 'False' is '0'.
Which means... you can use booleans in math!
You’ve probably used it without realizing 😅
Try this and see for yourself 👇
#Python#MindBlown#100DaysOfCode
👀 Python’s bool is a subclass of int 🤯
Yes. 'True' is literally '1', and 'False' is '0'.
Which means... you can use booleans in math!
You’ve probably used it without realizing 😅
Try this and see for yourself 👇
#Python#MindBlown#100DaysOfCode
🤯 Python Trick You’ll Love
Merge 2 dictionaries in 1 line.
No loops, no functions, no imports.
Just '|' 👇 (Python 3.9+)
Clean. Fast. Pythonic.
Try it and reply if this was new to you!
#Python#CodeNewbie#100DaysOfCode#Tech
🎲 Python: Roll a Virtual Dice🎯
Want to simulate rolling a 6-sided dice?
Just one import and one line of code does the trick!
Great for games, simulations, or just having fun!
What's your use case?
#Python#CodeNewbie#100DaysOfCode#Tech
🎲 Python: Roll a Virtual Dice🎯
Want to simulate rolling a 6-sided dice?
Just one import and one line of code does the trick!
Great for games, simulations, or just having fun!
What's your use case?
#Python#CodeNewbie#100DaysOfCode#Tech