You can use KeePassXC (with a dedicated vault or not), synced by another mean (Nextcloud, Syncthing, Git, etc.).
You can use KeePassXC (with a dedicated vault or not), synced by another mean (Nextcloud, Syncthing, Git, etc.).
Certainly not the best, but codecademy is decent. After that, it should be enough for you to learn more deeply from official Python documentation, actual Python code base (from OSS repositories), and specific subjects from blog articles.
But it will highly depend on what type of content you like. For example some people may prefer books over interactive courses. If this is your case, i think this one is recognized as a very good one: https://learnpythonthehardway.org/python3/
Can you explain it to me like i’m a 10 yrs old (which i’m not 🙄), then?
Nice! It looks like the best solution out there.
Python >= 3.10 version:
def foo(return_more: bool) -> DataType | tuple[DataType, MoreDataType]: ...
But i would definitely avoid to do that if possible. I would maybe do something like this instead:
def foo(return_more: bool) -> tuple[DataType, MoreDataType | None]:
...
if return_more:
return data, more_data
return data, None
Or if data
is a dict
, just update it with more_data
:
def foo(return_more: bool) -> dict[str, Any]:
...
if return_more:
return data.update(more_data)
return data
The difference is that with Protocol
you can define which method presence you want to ensure. Like i said: custom vs. generic.
From what i understand, Protocol
is for custom interfaces that you define (this object must have do_x()
method), while ABCs are generic (this object is iterable).
Sous Safari, une seule extension: Wipr. C’est basé sur l’API déclarative NetRequest, donc l’extension ne voit pas les sites que je visite et délègue le blocage au navigateur. C’est moins puissant qu’une extension comme uBlock ou AdGuard. Mais ça fait suffisamment le taff, en compléments des paramètres intégrés dans Safari, et je suis davantage rassuré de ne pas ajouter des tiers qui peuvent manipuler les requêtes que fait mon navigateur.
Pourceux qui veulent la même chose sous Firefox ou Chrome => uBlock Origin Lite
And no smartphone in your pocket, of course.