Admin of Europe Pub
Lemmy: @tfm@europe.pub
PieFed: @tfm@piefed.europe.pub
- 8 Posts
- 9 Comments
Joined 12 days ago
Cake day: August 26th, 2025
You are not logged in. If you use a Fediverse account that is able to follow users, you can follow this user.
tfm@piefed.europe.pubto No Stupid Questions@lemmy.world•My brother got arrested for a dime bag. His picture got put up on the jails website. And they advertise. So shouldn't my brother get paid at least a little for providing clicks?English0·10 days agoTo promote it to politicians probably
tfm@piefed.europe.pubOPto Europe@europe.pub•Russia launches propaganda campaign in Europe “Russia is not my enemy”, aiming to undermine trust in the rule of law and democratic institutionsEnglish21·10 days agoI hope I’m wrong but I don’t think that we will see that in our lifetime, unfortunately.
tfm@piefed.europe.pubOPto Programmer Humor@programming.dev•Natural selection in ITEnglish3·10 days agoAnd? What was the result? Is your key safe to use?
tfm@piefed.europe.pubOPto Programmer Humor@programming.dev•Natural selection in ITEnglish4·10 days agoDamn. Microsoft did something right?
tfm@piefed.europe.pubOPto Programmer Humor@programming.dev•Natural selection in ITEnglish18·11 days agoThat’s ok. Just don’t do it with your personal ones.
tfm@piefed.europe.pubOPto Programmer Humor@programming.dev•Natural selection in ITEnglish16·11 days agoDo you have a link? I want to check mine
tfm@piefed.europe.pubOPto Programmer Humor@programming.dev•Natural selection in ITEnglish71·11 days agoBetter safe than sorry
tfm@piefed.europe.pubOPto Programmer Humor@programming.dev•Natural selection in ITEnglish27·11 days agoAlways great to see people who check security before putting their personal information in somewhere
import sys import time from typing import Iterable, Callable, Any class ProgressSimulator: """ A class to simulate and display the progression of a hacking process, with unnecessary abstraction and complexity for dramatic effect. """ def __init__(self, description: str = "FBI"): self.description = description self.progress_steps = [0, 20, 40, 60, 80, 100] self.messages = [ f"Starting Hack...", *[f"Hacking {self.description} {step}%" for step in self.progress_steps], f"{self.description} Hacked Successfully" ] def generate_progress(self) -> Iterable[str]: """Generates the progress messages.""" for message in self.messages: yield message def display_progress(self, delay: float = 0.5) -> None: """Displays the progress messages with a delay.""" for message in self.generate_progress(): print(message) time.sleep(delay) def execute_hack(self, callback: Callable[[str], Any] = print) -> None: """Executes the hacking process with a callback for each step.""" for message in self.generate_progress(): callback(message) def create_hacking_sequence(description: str = "FBI") -> ProgressSimulator: """Factory function to create a hacking sequence.""" return ProgressSimulator(description) def main() -> None: """Main function to orchestrate the hacking simulation.""" hacking_sequence = create_hacking_sequence() hacking_sequence.display_progress() if __name__ == "__main__": main()