quietdebugger
@quietdebugger
Followers
81
Following
2K
Media
88
Statuses
710
Quietly learning Python & Cyber security; one script, one late-night obsession at a time. Not an expert, just addicted to understanding how things work
Joined May 2025
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
1
2
22
I just pwned Meow on Hack The Box! https://t.co/l4wtrjX2R5
#HackTheBox #htb #CyberSecurity #EthicalHacking #InfoSec #PenTesting
labs.hackthebox.com
I have just owned machine Meow from Hack The Box
0
0
3
What credentials do bug hunters use to create an account on a target for testing? #BugBounty
When testing apps that require email-verified registration (like social platforms), what’s your go-to method for creating safe test accounts? #BugBounty
1
0
1
When testing apps that require email-verified registration (like social platforms), what’s your go-to method for creating safe test accounts? #BugBounty
0
0
2
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
1
0
10
🤯 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
0
1
10
🚀 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
1
1
9
🚀 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
1
1
9
👀 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
2
1
11
👀 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
2
1
11
🤯 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
0
1
10
🎲 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
2
1
6
🎲 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
2
1
6
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
3
1
18
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
3
1
18
🚀 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
1
1
11
🚀 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
1
1
11
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
2
2
13
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
2
2
13
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
2
2
18