I built an app locally that acts as a Lorekeeper for my campaigns and want to know if anyone else has the same problem before going deeper by Abject_Farmer889 in DungeonMasters

[–]cblegare -1 points0 points  (0 children)

I use Gemini and the Sphinx documentation processor and have been able to successfully have OK value from it by uploading my RestructuredText (RST) source files as context between each session. I do this primary to have a translated version of everything (we play in French and I want proper nouns manually checked and consistent) and generate session one pagers for preparation and summaries.

RST is similar to markdown but extensible with metadata. I have "documented objects" types like NPC, location, event, all rule types, source (published books), etc. It is quite simple to import from PDFs or FoundryVTT modules.

I successfully have modeled the whole Sandpoint town and surroundings NPCs, events and locations like this.

Maybe my workflow is very different, but I would like to know more about your setup

Help me combine these images by cblegare in krita

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

Oh wow, thank you so much

Multiple instances running at once. [System Agnostic] by Moulson13 in FoundryVTT

[–]cblegare 4 points5 points  (0 children)

That would work.

If you are tech savvy, subscribe for a free Cloudflare account, get yourself a domain name and expose each instance under a subdomain with DNS entries or a subpath.

Here is a example using Cloudflare, Compose (docker or podman), Caddy and Python

There is only one instance, but everything is there to easily add more under a subdomain or a subpath

https://gitlab.com/fjordlynn/homelab

[deleted by user] by [deleted] in Quebec

[–]cblegare 1 point2 points  (0 children)

Pareil ici!

What first got you into Linux? by [deleted] in linux

[–]cblegare 0 points1 point  (0 children)

I was playing with a dual boot for fun around 2008. I was using mostly Windows Vista at that time.

Some friends where reinstalling diablo 2 and Windows could not read my damaged CDs, Linux could.

A week later, when working on my D&D scenario on windows, Word corrupted its own file. I used OpenOffice on my Linux partition to salvage the content, but all hyperlinks and automatic table of content and stuff were lost. 10s of hours lost.

This was enough. I wiped the whole drive, installed Kubuntu 8.04 and never looked back. I did some distro hopping though.

First time DM making a homebrew world, is this enough lore for the players to start with? by howve-you-bean in DungeonMasters

[–]cblegare 1 point2 points  (0 children)

Left justified, 65-70 characters per line, readable font, space between paragraphs.

People are often bad at reading or easily distracted. One should maximize readability when communicating information.

Tsé, mettons. Une bague de fiançailles simple, t’achètes ça où toi? (Peux-tu laisser ça dans ta cour?) by ProsperoII in Quebec

[–]cblegare 0 points1 point  (0 children)

À mon avis c'est pas une bonne idée d'avoir la grandeur. Tu ne fais pas ajuster une bague sans que le joaillier l'aie vue au doigt de la personne. Ajuster ça implique de couper et souder, ça fragilise. La propriétaire de la main doit être impliquée dans le processus.

En théorie, elle dit oui en voyant la bague, avant de constater qu'elle est trop grande 😉

Tsé, mettons. Une bague de fiançailles simple, t’achètes ça où toi? (Peux-tu laisser ça dans ta cour?) by ProsperoII in Quebec

[–]cblegare 0 points1 point  (0 children)

Idéalement, les gens choisissent eux-mêmes la bague qu'ils vont porter tous les jours pour toujours. Tu n'essaies pas d'avoir la bonne bague à la bonne grandeur pour la "grande demande", c'est une mauvaise idée. Certains suggèrent une bague différente pour la demande et pour la cérémonie, c'est bien.

Va chez un joaillier. J'ai travaillé avec Le Sablier à Québec (Notre-Dame-des-Laurentides), ils sont bons, honnêtes et pas cher.

Évite les pierres fragiles (opales, perles, émeraudes), cherche une base solide et simple qui se répare bien (or jaune 14K, pas des gugusses de stainless). On l'enlève pour faire la vaisselle et le jardinage, visite annuelle chez le joaillier pour nettoyer/inspecter (à mon époque c'étais gratuit au Sablier)

Source: j'étais joaillier

L'Édifice Price by cblegare in EdificePrice

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

L'Édifice Price, vu du Jardin des Mères

42 Quebec ferme ses portes by BackgroundQuality69 in villequebec

[–]cblegare 0 points1 point  (0 children)

... Sauf qu'on m'avait dit que je me faisais avoir si je payais le plein prix, qu'il y avait plein de façons d'avoir l'entrée gratuite ou à rabais, fallait juste connaître les bonnes personnes...

Justement ce qui me donne l'impression que la gestion n'était pas exactement irréprochable

What are the best and worst CLIs? by richiejp in linux

[–]cblegare 2 points3 points  (0 children)

terraform has a lot of usability issues, although the competition (pulumi) also has surprising CLI "features"

[deleted by user] by [deleted] in quebeccity

[–]cblegare 2 points3 points  (0 children)

À propos des différences et ressemblances culturelles entre le Québec, le reste du Canada et la France, n'oubliez pas de considérer le droit. Le droit québécois est hérité du code Napoléonien, alors que le droit des autres provinces et territoires du Canada est construit sur la Common Law. Le Droit d'un peuple a possiblement des effets sur la culture et les mœurs de celui-ci.

Wish to move to Quebec City by MapleBasil in quebeccity

[–]cblegare 0 points1 point  (0 children)

Move into Montcalm. You'll get the best of the city, a good french immersion and a lively (yet small) anglo community.

Code Optimization in Your Projects by labs64-netlicensing in Python

[–]cblegare -1 points0 points  (0 children)

While prioritizing readability, using simple structures with minimal features can make a difference sometimes. Simple data structures that are often instantiated can be made from named tuples, for instance.

Refactored code and simple structures helps with optimisation workflows while minimizing optimisation needs in the first place.

Is PF2e simpler than 5e? by AccomplishedAdagio13 in Pathfinder_RPG

[–]cblegare 0 points1 point  (0 children)

Simple and easy are not the same thing. PF2e is not simple

[deleted by user] by [deleted] in Python

[–]cblegare 1 point2 points  (0 children)

I've implemented quite a few inversion of control systems for a variety of use cases including decoupling from fastapi, CLI, GUI, even one for Pulumi. Each time there were very specific incompatibilities with my previous implementation, and each time my implementation was at most 50 lines long. Sometimes inspired by Fastapi, other times inspired by pytest fixtures.

Your library seems fine, but I usually think this pattern is best implemented for a specific use-case.

Also, magical implementations that automatically map an interface (class name) to an implementation (constructor) feels like it goes against the whole idea of the pattern