Good people of the fediverse, what is a good collaborative task-list app for a neurodivergent team (dyslexia, dyscalculia, ADHD, and autism)?

Preferably a free one. Preferably no LLM integration. No Meta products.

#neurodivergence #productivity #lazyweb #help

Given that search is dead and I'm interested in good rather than free, does anyone know where's a good source for woodworking plans? I'm failing to find a table (among other things) for the garden and am considering building one...

#maker #woodWorking #lazyWeb #searchIsDead

Hey friends #lazyWeb,

Have you come across any forms that don't have a visible label or title that describes what the purpose of the form is? Do you have any examples you can share? Links?

Thank you!

Ich brauche eine 7mm Stahlkugel. Evtl. habe ich ein Kugellager, was passende hat.

Kann ich irgendwo nachgucken, welche Kugeldurchmesser in einem Kugellager verwendet werden?

Auf dieser Seite finde ich viele Maße, aber den Kugeldurchmesser leider nicht:

https://www.skf.com/de/products/rolling-bearings/ball-bearings/deep-groove-ball-bearings/productid-6205-2Z

 

#Fedihelp_de #lazyweb #FollowerPower

@siim @nixCraft #lazyweb question: does OpenRC use declared dependencies between services, so things automatically start in the right order?

Alguem já testou esse teclado da Futo?

https://keyboard.futo.org/

Pq eu tô puto com o meu atual.

#lazyweb #boost #impulsos #help

FUTO Keyboard

FUTO Keyboard is a modern, privacy-focused keyboard that runs fully offline. Enjoy swipe typing, autocorrect, predictive text, and more—no internet connection required.

Calagator: Portland's Tech Calendar

Looking for #cooking advice: someone in my household strongly prefers that I do not cook with onions or other aromatics like garlic and shallots. Obviously this is a staple ingredient in many recipes. Are there good substitutes that I can use?

Usually I just leave it out, but for some recipes that means missing out on fond-making for lovely flavor, and in other dishes it just feels like there is an ingredient missing and it's very plain.

#lazyweb

I swear there was a discussion page somewhere about supporting a new flavor of Bill of Materials specifically for #Maven plugins. #lazyweb

#lazyweb Okay I give up. In the following find command:

```
find $SD_MNT -type f ! -newermt `date -d "-18 months" +%Y-%m-%d` -o -regex '.*DCIM.*' -a -size +100M -delete
```

Why is `-delete` honored for the expression chained together with -a without explicit parens? Why does the `-delete` ignore everything before the `-o`?

(To get the behavior I want, I need:

```
find $SD_MNT -type f ! -newermt `date -d "-18 months" +%Y-%m-%d` -delete -o -regex '.*DCIM.*' -a -size +100M -delete)
```