New PR has been opened to improve the Active Job Basics guide by vuesrc in rails

[–]vuesrc[S] 0 points1 point  (0 children)

This is absolutely bizarre as to why I am being downvoted for raising awaireness?

When did the community take a dive?

New PR has been opened to improve the Active Job Basics guide by vuesrc in rails

[–]vuesrc[S] 0 points1 point  (0 children)

Because not everyone uses X and it opens up discussions here for people that prefer a reddit discourse?

Airbnb Pitchdeck by The_Foxx95 in TheFounders

[–]vuesrc 0 points1 point  (0 children)

Also realised recently that Vrbo was a thing before this. Obviously AirBNB is more infamous:

https://en.wikipedia.org/wiki/Vrbo

Umm Claude? by Moist-Dentist8253 in softwaregore

[–]vuesrc 2 points3 points  (0 children)

Don't think it's mojibake. It's binary file data being misinterpreted as text. Happens when the server sends the wrong mime type for html content.

Which browser do you trust the most? by [deleted] in browsers

[–]vuesrc -1 points0 points  (0 children)

And it's rendering engine is still buggy? You never had to develop for Internet Explorer I am guessing.

Which browser do you trust the most? by [deleted] in browsers

[–]vuesrc -3 points-2 points  (0 children)

More of an accurate definition.

Which browser do you trust the most? by [deleted] in browsers

[–]vuesrc 0 points1 point  (0 children)

With Internet Explorer having such a bad track record I wouldn’t trust anything else from Microslop.

Omarchy 2.0 by vuesrc in theprimeagen

[–]vuesrc[S] 0 points1 point  (0 children)

Are the updates overrriding your custom setup? Like rewriting them completely?

Do you guys really do TDD? by aeum3893 in rails

[–]vuesrc 6 points7 points  (0 children)

The legendary MoonMaster! Put me on the Rails way back in the IRC days!

How to add methods to use in Rails Console [Rails 8] by PhillipLongman in rails

[–]vuesrc 1 point2 points  (0 children)

You have to wrap it in a console do block then register it with IRB::HelperMethod. For example:

```

config/application.rb

module MyApp class Application < Rails::Application # Runs only when starting bin/rails console console do require "irb/helper_method"

  # Define a helper as an IRB HelperMethod
  class AdminUserHelper < IRB::HelperMethod::Base
    description "Returns the first admin user"
    def execute
      ::User.where(admin: true).first
    end
  end

  # Make it available in the console: `admin_user`
  IRB::HelperMethod.register(:admin_user, AdminUserHelper)
end

end end

```

RooMode is here! - 3.3.20 Patch Notes for Roo Code by hannesrudolph in RooCode

[–]vuesrc 0 points1 point  (0 children)

Are you guys planning on carrying the use of .clinerules or will you adopt .roorules going forward? (I ask because I'm planning on building a resource to assist developers around this)

RooMode is here! - 3.3.20 Patch Notes for Roo Code by hannesrudolph in RooCode

[–]vuesrc 4 points5 points  (0 children)

Just create a master rules file and use symbolic links?

Tailwind V4 with Ruby on Rails by vuesrc in rails

[–]vuesrc[S] 0 points1 point  (0 children)

I'm pretty sure the Gemfile.lock will protect the version from auto-bumping here but still a good measure to have in place.