Admin of Europe Pub
Lemmy: @tfm@europe.pub
PieFed: @tfm@piefed.europe.pub
- 3 Posts
- 20 Comments
tfm@piefed.europe.pubto Technology@lemmy.world•Tesla sales plunge 40% in Europe as Chinese EV rival BYD's tripleEnglish691·7 days agoI’m sure the free market knows what’s right /s
tfm@piefed.europe.pubto Technology@lemmy.world•Tesla sales plunge 40% in Europe as Chinese EV rival BYD's tripleEnglish62·7 days agoLet me guess, the stock did go up?
tfm@piefed.europe.pubto Technology@lemmy.world•Uncomfortable Questions About Android Developer VerificationEnglish1·7 days agoTrue
tfm@piefed.europe.pubto Technology@lemmy.world•Uncomfortable Questions About Android Developer VerificationEnglish1·7 days agoBut not everyone cares, unfortunately. The masses will always be exposed to this shit.
tfm@piefed.europe.pubto Technology@lemmy.world•Uncomfortable Questions About Android Developer VerificationEnglish2·7 days agoBasically, yeah.
tfm@piefed.europe.pubto World News@lemmy.world•France to sue video platform Kick for 'negligence' after user's deathEnglish2·7 days agoPeople let those other people control resources
Who would be able to take it away from them? They’ll do everything possible to keep them. Move it, buy politicians, etc.
could it be because they shared the greed and thought they would benefit more from it by letting that happen?
You mean trickle down and that bs?
tfm@piefed.europe.pubOPto Programmer Humor@programming.dev•Natural selection in ITEnglish3·7 days agoAnd? What was the result? Is your key safe to use?
tfm@piefed.europe.pubto Technology@lemmy.world•Uncomfortable Questions About Android Developer VerificationEnglish1·8 days agoI don’t have any hope that Google analytics is dying any time soon
tfm@piefed.europe.pubOPto Programmer Humor@programming.dev•Natural selection in ITEnglish4·8 days agoDamn. Microsoft did something right?
tfm@piefed.europe.pubOPto Programmer Humor@programming.dev•Natural selection in ITEnglish7·8 days agoHave you tried disabling VPN?
tfm@piefed.europe.pubOPto Programmer Humor@programming.dev•Natural selection in ITEnglish19·8 days agoThat’s ok. Just don’t do it with your personal ones.
tfm@piefed.europe.pubto World News@lemmy.world•France to sue video platform Kick for 'negligence' after user's deathEnglish6·8 days agoElites invented capitalism. Those who already controlled most resources.
Greed develops if individuals and groups get the possibility to capture way too many resources without any limits or consequences.
tfm@piefed.europe.pubto Technology@lemmy.world•Uncomfortable Questions About Android Developer VerificationEnglish17·8 days agoMost information based apps don’t need to be natively integrated. Take the Voyager client for example. It behaves almost exactly like the native version of the app.
Most users wouldn’t even notice a difference, if well implemented.
App developers need to abandon these proprietary platforms and switch to open ones like the web. That’s the only way to end this fuckery.
tfm@piefed.europe.pubOPto Programmer Humor@programming.dev•Natural selection in ITEnglish17·8 days agoDo you have a link? I want to check mine
tfm@piefed.europe.pubOPto Programmer Humor@programming.dev•Natural selection in ITEnglish71·8 days agoBetter safe than sorry
tfm@piefed.europe.pubto World News@lemmy.world•France to sue video platform Kick for 'negligence' after user's deathEnglish10·8 days agoThe capitalist system promotes greed to an extreme extent.
People aren’t greedy by nature. It’s the circumstances that are the problem.
tfm@piefed.europe.pubto Technology@lemmy.world•Uncomfortable Questions About Android Developer VerificationEnglish153·8 days agoDevelop PWAs instead. They are platform independent and also work as normal websites.
tfm@piefed.europe.pubto World News@lemmy.world•France to sue video platform Kick for 'negligence' after user's deathEnglish18·8 days agoCapitalism
tfm@piefed.europe.pubOPto Programmer Humor@programming.dev•Natural selection in ITEnglish32·8 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()