mastodon.world is one of the many independent Mastodon servers you can use to participate in the fediverse.
Generic Mastodon server for anyone to use.

Server stats:

9K
active users

#rubyonrails

13 posts13 participants0 posts today

Are there (m)any #RubyOnRails developers who actually use the functionality provided by net-imap and net-pop? They both come in as secondary dependencies of ActionMailer (through the Mail gem) and net-imap in particular has been a source of a bunch of CVE busywork. Keeping up with these gems produces a lot of overhead work with zero apparent gain. Am I missing something here?

How to automatically trigger a file download with Turbo?

The user triggers the creation of a file. That file is created using a background job. I could update the view using Turbo Streams (e.g. render a 'Download Now' button). But I'd like download to automatically start 🤔

A few weeks ago I was asking around for an invite to #FOSStodon for our #Koalagator calendar FOSS project only to have folks quickly tell me that drama was afoot.

Sounds like things have settled down hub.fosstodon.org/fosstodon-co AND that the project has recommitted to being an inclusive space for marginalised communuties.

Very glad to hear this! Thanks @fosstodon team for all you've done and continue to do for the FOSS community, @Gina especially.

Now, about getting my project onto fosstodon. @Gina any chance of an invite?

Koalagator is a multi-year code revival project of a 10 year old much loved calendaring platform. We have big ambitions to make local community events easier to discover on the open web, away from big tech control.

github.com/koalagator/koalagat

hub.fosstodon.orgFosstodon Community StatementOfficial statement on cleaning house, owning past mistakes, reaffirming support for marginalized folks and fair treatment for everyone.

No popular opinion. When somebody ask Which is the easier programming language? For sure mostly would say #Python But I think #Ruby (not #RubyOnRails ) is easier than python, the elegance of the ruby language is a great approach to beginners, nevertheless python has more applications.

How to Host Your Own #Mastodon Server on a #VPS (5 Minute Quick-Start Guide)

This article provides a guide for how to host your own Mastodon server on a VPS.

Running your own Mastodon server on a VPS is an excellent way to enjoy an efficient and secure Mastodon experience.
What is Mastodon?
Mastodon is a #decentralized social media platform that enables users to post ...
Continued 👉 blog.radwebhosting.com/how-to- #selfhosted #installguide #activitypub #rubyonrails #rubygems #selfhosting

How to Host Your Own Mastodon Server on a VPS
RadWeb, LLC · How To Host Your Own Mastodon Server On A VPS (5 Minute Quick-Start Guide) - VPS Hosting Blog | Dedicated Servers | Reseller HostingThis article provides a guide for how to host your own Mastodon server on a VPS.

Rails folk, my brain isn't working and I'm sure this is simple.

`<%= link_to @cat.name, @cat %>` will create a path /cats/1

This is what I want 99% of the time.

I have a couple of cats that I want to link to /bad-cats/1 with the exact same link_to code.

I was almost sure there was an equivalent of the `to_param` method I could override in the model that would tell Rails which routing to use when looking up `url_for`, but maybe not?

I've a view helper/solution written.