this post was submitted on 30 Jul 2026
956 points (97.9% liked)

Microblog Memes

11883 readers
2230 users here now

A place to share screenshots of Microblog posts, whether from Mastodon, tumblr, ~~Twitter~~ X, KBin, Threads or elsewhere.

Created as an evolution of White People Twitter and other tweet-capture subreddits.

RULES:

  1. Your post must be a screen capture of a microblog-type post that includes the UI of the site it came from, preferably also including the avatar and username of the original poster. Including relevant comments made to the original post is encouraged.
  2. Your post, included comments, or your title/comment should include some kind of commentary or remark on the subject of the screen capture. Your title must include at least one word relevant to your post.
  3. You are encouraged to provide a link back to the source of your screen capture in the body of your post.
  4. Current politics and news are allowed, but discouraged. There MUST be some kind of human commentary/reaction included (either by the original poster or you). Just news articles or headlines will be deleted.
  5. Doctored posts/images and AI are allowed, but discouraged. You MUST indicate this in your post (even if you didn't originally know). If an image is found to be fabricated or edited in any way and it is not properly labeled, it will be deleted.
  6. Absolutely no NSFL content.
  7. Be nice. Don't take anything personally. Take political debates to the appropriate communities. Take personal disagreements & arguments to private messages.
  8. No advertising, brand promotion, or guerrilla marketing.

RELATED COMMUNITIES:

founded 3 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] ExLisper@lemmy.curiana.net 28 points 20 hours ago (5 children)

I made an app where the the recipe is saved as a JSON file with ingredients separate from the steps. In the steps instead of saying "mix sugar and butter" if says "mix {sugar} and {butter}" and the app adds quantity there directly. I can scale the recipe and still have the quantities inside the body ("mix sugar (100g) and butter (55g)").

[–] djmikeale@feddit.dk 12 points 19 hours ago (1 children)

Nice! I thought about doing the same and then discovered https://cooklang.org/ - looks like it's a similar approach that you describe

[–] ExLisper@lemmy.curiana.net 4 points 19 hours ago (1 children)

I saw cooklang but only after I made my app. It's interesting but for me the main goal was to use existing recipes. I wanted to just take something I found online and be able to use it, not have to rewrite it. And I wanted it to handle multiple languages. When the first decent LLMs came up I did some testing and they were capable of transforming recipes into JSON so I build my app around that but the JSON had to very simple. I later managed to add couple extra features (like groups of ingredients) but it's still way simpler than cooklang. Current LLMs could handle cooklang without issues but my app already does everything I need it to do so I'm not changing anything.

[–] djmikeale@feddit.dk 2 points 12 hours ago

Ah very interesting! I found cooklang to be overkill for my needs as well but the fact that there's an obsidian plugin resulted in me using it now.

[–] gamerdonkey@lemmy.sdf.org 2 points 14 hours ago

I tried recreating this style of recipe card and ended up using a JSON tree structure to store the recipe. I also added fields for a little more description so that I could generate a little more traditional lists for ingredients and instructions.

https://git.tilde.town/gamerdonkey/recipes_for_engineers/

Example recipe: https://tilde.town/~gamerdonkey/recipes/lemony_olive_oil_zucchini_bread.html JSON representation: https://tilde.town/~gamerdonkey/recipes/lemony_olive_oil_zucchini_bread.json

[–] MurrayL@lemmy.world 6 points 19 hours ago (1 children)

What if the recipe steps include modifiers like ‘add half of the butter’?

[–] ExLisper@lemmy.curiana.net 7 points 19 hours ago

It will simply say "Add half o the butter (100g)" and you have divide it yourself. It's very simple.

BUT

Some recipes will have the same ingredient multiple times like:

Filling:

- 100 g sugar
- 50 g butter 

Dough:
- 500 g flour
- 100 g butter

and the app will distinguish between them and put the correct amount in the correct part of the body.

[–] WhiteOakBayou@lemmy.world 6 points 20 hours ago (2 children)
[–] ExLisper@lemmy.curiana.net 16 points 19 hours ago

https://f-droid.org/en/packages/net.curiana.recipes/

Desktop (Linux only) version is here: https://github.com/kandrelczyk/twili-recipes/releases/tag/0.2.10

Disclosure for AI vegans: The app integrates with external LMMs to parse recipes into JSON but they can also be added manually.

[–] Th3D3k0y@lemmy.world 3 points 19 hours ago

sugar and butter do tend to go into sauces

[–] echodot@feddit.uk 2 points 15 hours ago

Plus then when I want to swap out eggs for I don't know mustard or something it's so much easier.