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
ALT Python code to merge two dictionaries in one line
🚀 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: 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
Ever needed to split a list into chunks cleanly, without loops?
This one-liner does it using slicing. No imports. No clutter.
Ideal for batching data or paginating results.
Simple, readable, and 100% Pythonic.
Got a use case in mind? Drop it below.
#Python#100DaysOfCode
ALT Simple Python code that split a list into chunks
🚀 Python unpacking trick:
Ever seen this?
a, b, *rest = [1, 2, 3, 4, 5]
It lets you split data fast.
Great for handling lists when you only care about a few values.
Tried it before? Comment your use-case👇
#Python#CodeTips#100DaysOfCode#Tech
Python’s 'set()' is 🔥 for more than duplicates.
✅ Fast membership tests
✅ Subset & superset logic
✅ Set math: union, diff, intersect
It's a hidden gem for clean logic.
Ever used 'set()' in a unique way? Share below 👇
#Python#CodeNewbie#DevTips#100daysofcoding#tech
Confused by '==' vs 'is' in Python?🐍
'==' means "Does it look the same?" (Value check)
'is' means "Is it the very same thing?" (Memory check)
A key difference for clean code!
#Python#100DaysOfCode#LearnCode#tech