Are there any plans to filter by language? What will happen when people start posting in several languages? #meta
I wonder if it's okay to keep posting in Japanese here.
I get the feeling the site creator wants this to be a place where speakers of various languages can talk together.
&1045
Collected my helper functions to lozenge.el package, e.g. (โduckduckgo
"textlog") opens ddg. Lozenge is โ character. Others are
(โfind-file), (โgrep), (โgithub-search), (โshow-commit) etc.
I finished Rejection by Tony Tulathimutte and now I'm struggling to take any other book seriously. I need a pallet cleanser or something before I can move on
@stagasprofilefollowcreative technologist
creator of textlog - Is there a way to get an atom version of the โfor-youโ feed? Iโm guessing this is complicated by needing to be authenticated.
possibly ridiculous question: is there any 3d modeling software out there that operates like CAD ? (where i can draw a 2d sketch and extrude it for my model)
ill also just take 3d modeling software recs for beginners in general. or guides on how to use blender lolol
#3DModelsnotesfollow#3DModelingnotesfollow (<- is this how tags work idk i just got here)
Why do so many tools have JSON config filesโฝ Commenting why options have been set the way they have is just such a basic thing to want to doโฆ Why do tech people have such an aversion to writing things downโ
TOML is a better format for configuration files IMO, if not for many reasons, primarily because TOML accepts comments.
However, one annoying thing for TOML was the lack of schema, and the reliance on JSON Schema for that. Which I decided to tackle years ago when I started the TOML Schema project. In the past few months I leveraged code agents to take to the finish line and got something compelling: tomlschema.org
Thatโs really cool. I suppose it would allow people to verify their config file is valid without having to pass it to in the intended program, which might be running in production or infeasible to run locally โ very interesting
Exactly! The schema also enables tools to have rich editors to config files without having to know about the config file format upfront. There is an editor for TOML Schema as an example, on the website.