@obsidian.md any info on when the Mac app will update to the latest (MacOS 26 performance issue fixed) electron app version?
Posts by Michael Loistl
Ignoring us is insulting at this point @rubycentral.org. Why are you not communicating with the community? When is the next Q&A?
Reading through this great 3-part blog post series from Stephanie Booth about rebooting the blogosphere:
"from my βreading interfaceβ (ie, the RSS reader), make it super easy to comment, share, react or link to a publication ... www.manton.org/2025/09/29/reading-throu...
Have you gotten around to that video comparing Stimulus to Svelte for Rails developers? Would like to explore this topic more ...
Sure can I find you on Zed? Or if you want to send me an invite to Tuple (have never used that)...
@joel.drapper.me if that's a phlex related issue, how quick would that be fixed? I've a project deadline on a legacy project by this Friday and would need to potentially not use phlex then π¬
@joel.drapper.me so the following renders the input first and the label below...
<%= render partial: 'shared/form_label', locals: { ... } %>
<%= form.text_field attribute_name, options %>
Ok, that works as well.
However that partial renders the form input first and then all other partials, so it's not in order as defined in partial π€―, so it's not in the order as in the erb file.
v2 from main
render Phlex::Rails::Partial.new("...") actually resolves that issue π
The partial rendered from phlex view renders correctly, but non of the partials rendered from within that erb render...
Any thoughts?
@joel.drapper.me is there anything specific to take into account when rendering erb partials within erb partials? When rendering the partial from phlex view I call helpers.render partial: "..."
RSS Pipe: Introduction
https://michaelloistl.com/posts/rss-pipe-introduction
#rss #rsspipe
Interesting that the API allows to create an empty record.
RSS Pipe is now open for everyone.
For now it's free - once out of beta it will probably be $0.99 per feed/month.
#rss #rsspipe
Changed name from "Inbound RSS" to "RSS Pipe". I think that reflects better what it does...
#rss #rsspipe
Have fixed the tag facet. Needed to strip the hashtag so that the tag facet value is just the tag name without hashtag. So hashtags on this note should now link to the correct tag.
#rss #inboundrss
Have added inboundrss:bluesky meta tag, so this note should only post to Bluesky
#rss #inboundrss
This note should now post to Mastodon & Bluesky
#rss #inboundrss
This is a test post to demonstrate a potential Bluesky render issue.
The emoji followed by text renders correct:
π Some text
This is a test post to demonstrate a potential Bluesky render issue.
The emoji followed by link renders incorrect:
π https://michaelloistl.com/notes
My future self: wiser, more considerate, and deeply invested in achieving better outcomes over time.
π michaelloistl.com/posts/my-fut...
My bad π β I did instantiate the component twice. All resolved and working π
Only call render on that turbo stream. So the render in context should still work as before?
I used to do...
`turbo_stream.action(action, target, html: phlex_view_for(view_name).render_in(view_context))`
which gives me now the error: "You can't render a Components::Feeds::Form more than once."
@joel.drapper.me there seems to be another change in v2, that's not mentioned in the new documentation (at least I couldn't find anything)...