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.
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.
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...
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:
Alguem já testou esse teclado da Futo?
Pq eu tô puto com o meu atual.
This is a partly unvetted fun, useful, &/or interesting free/cheap things in Portland post. It will be updated many more times. Please comment with suggestions!
https://twoscotsabroad.com/free-things-to-do-in-portland-oregon/
https://worldwidesidewalkjoy.com/
https://www.wweek.com/culture/2024/06/12/oregons-museum-trail/
https://www.portlandmercury.com/collections/47901508/do-this-do-that
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 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)
```