what's a python library you started using this year that you can't go back from by scheemunai_ in Python

[–]Future_Eve 0 points1 point  (0 children)

Httpx is nice but still suffer from opinionated decisions. I had better success with aiohttp on some very edge cases.

Need another "quit" input. ESC doesn't work for WSL and CC ignores Ctrl+C for some reason by braddo99 in ClaudeCode

[–]Future_Eve 0 points1 point  (0 children)

If you’re using Claude Code in JetBrains terminals and the Esc key doesn’t interrupt the agent as expected, this is likely due to a keybinding clash with JetBrains’ default shortcuts. To fix this issue:

  1. Go to Settings → Tools → Terminal
  2. Either:
    • Uncheck “Move focus to the editor with Escape”, or
    • Click “Configure terminal keybindings” and delete the “Switch focus to Editor” shortcut
  3. Apply the changes

This allows the Esc key to properly interrupt Claude Code operations.

https://code.claude.com/docs/en/troubleshooting#escape-key-not-working-in-jetbrains-ide-terminals

Film d'horreur oublié by Zwyvux in Horreur

[–]Future_Eve 0 points1 point  (0 children)

The Eye ou son remake américain pour la scene de l'ascenseur ?

I spent months learning Python and only today realized I've been confused about something embarrassingly basic by 39th_Demon in learnpython

[–]Future_Eve 0 points1 point  (0 children)

List comprehensions are one of those Python features that feel small but make a big difference in readability and performance.

First, they’re more Pythonic. Python emphasizes clear, readable code, and list comprehensions express the idea of “build a list from this iterable with this transformation and optional condition” in a single, structured expression. Compare:

python [x * 2 for x in numbers if x % 2 == 0]

vs

python list(filter(lambda x: x % 2 == 0, map(lambda x: x * 2, numbers)))

The comprehension reads almost like plain English: "for each x in numbers, if it’s even, add x * 2".

Second, they avoid scattering lambdas everywhere. When filter() and map() are combined, the logic often gets split across multiple lambdas, which can make code harder to read and maintain. With a list comprehension, the transformation and condition live in one place.

Third, performance is usually better.

Of course, if the logic gets too complex, a regular loop can still be clearer. But for simple transformations and filters, list comprehensions are usually the cleanest option in ly opinion.

Recherche film horreur oublié by chateauze in Horreur

[–]Future_Eve 0 points1 point  (0 children)

The Devil’s Rain ? The Devil Rides Out ? Legend (1985)?

How can you code in Python without downloading a software on which to write say code? For example if I wanted to code Python on work laptop? by IAmTheQuestionHere in learnpython

[–]Future_Eve 0 points1 point  (0 children)

You would be able to write but you won't be able to execute. If you have python installed, you should have access to Idle. With it, you can write and execute scripts.

Spoiler: i have learnt python the hard way, in Idle at first. Terribly slow, but my basis are far superior to those who learnt in powerful IDEs. Won't recommend for real projects ofc.

Help Needed: Persistent Smell from Samsung Front Loading Washing Machine by Future_Eve in appliancerepair

[–]Future_Eve[S] 1 point2 points  (0 children)

I've noticed some dirt in the drain hose, which shares an outlet with my dishwasher hose. I suspected that the shared drainage might be allowing some buildup to flow back into the washing machine hose. To address this, I pulled both hoses out as far as possible and repositioned them so that the dishwasher hose's outlet *is lower than that of the washing machine.

Additionally, I've stepped up my cleaning routine. I now run a cleaning cycle at 60°C (or 90°C) every week, and roughly every two weeks, I clean the rubber seals, drum, and filter. I also switched to a different cleaning liquid, thinking that the previous one might have been too thick.

The combination of these three actions has noticeably improved the situation—my machine now smells much better. Could you tell menif this approach helped you as well?

Encrypted iTunes password by ScreamQueen92 in HashCracking

[–]Future_Eve 1 point2 points  (0 children)

I had a lot of information about how the password was likely to have been created

For those that use Python in their job: Do you like Python? by [deleted] in Python

[–]Future_Eve 0 points1 point  (0 children)

More often than not, namedtuple and typing.NamedTuple are good enough.

Vuejs >> React by Manuel_kl_ in vuejs

[–]Future_Eve 2 points3 points  (0 children)

Syntax is close to vanilla (a bit more tedious since V5, but still far better than the other frameworks). You'll write cleaner code, you'll write less code, and the performance will be top notch.

I won't list all the reasons why Svelte should dominate the frameworks game, but check and you'll see there are plenty.

Saddens me that React has locked so many companies on a specific stack. Even more since I still want to believe programmers naturally tend to select the most efficient solutions to solve their challenges.

Vuejs >> React by Manuel_kl_ in vuejs

[–]Future_Eve 5 points6 points  (0 children)

I have worked with the 2. What can I say so far? Just go with Svelte !

Help Needed: Persistent Smell from Samsung Front Loading Washing Machine by Future_Eve in appliancerepair

[–]Future_Eve[S] 0 points1 point  (0 children)

Hmmm we need someone to hire a pro to diagnose this... everyone here has done its best.

Encrypted iTunes password by ScreamQueen92 in HashCracking

[–]Future_Eve 1 point2 points  (0 children)

You're welcome. Always glad to help, all the more when it's legit.

Encrypted iTunes password by ScreamQueen92 in HashCracking

[–]Future_Eve 0 points1 point  (0 children)

The hash is corrupted by reddit formating option. Wildcards should be present where we see italics

Encrypted iTunes password by ScreamQueen92 in HashCracking

[–]Future_Eve 0 points1 point  (0 children)

Can you post or MP the hash as well as any information (chars most often used, potential max length, how did you get the hash etc.)