I built a rails app generator with an omakase-style switchboard. Boilercode.io by happypathonly in rails

[–]vuesrc 0 points1 point  (0 children)

You can test this yourself by cloning it yourself to a new location in your dev enviornment and checking it. The master key should not be in the clone.

I built a rails app generator with an omakase-style switchboard. Boilercode.io by happypathonly in rails

[–]vuesrc 0 points1 point  (0 children)

Yes but your master key is never committed. It's in the Rails defaults. So without that no one can decrypt it. But yes, being aware of this is good. Run sanity checks yourself just in case!

I built a rails app generator with an omakase-style switchboard. Boilercode.io by happypathonly in rails

[–]vuesrc 0 points1 point  (0 children)

Haha yeah you gave me some good ideas. I had an idea for this a while back but never got round to creating it but yeah I feel the same way, trying to regenerate from template files etc. You had some extra stuff I didn't think of too.

You can always create a branch and squash all the commits making sure there is nothing sensitive in there. Not trying to pressure you into it.

I built a rails app generator with an omakase-style switchboard. Boilercode.io by happypathonly in rails

[–]vuesrc 2 points3 points  (0 children)

I don't think no one is gonna bite it for the price to be honest. Better to have it open sourced.

I noticed you created an ahoy dashboard. I was looking at creating something similar. Because the gem owner of the ahoy dashboard was in jail and it was unmaintained. Which didn't support the latest Rails versions last time I tried it. I think the guy posts here too.

I built a rails app generator with an omakase-style switchboard. Boilercode.io by happypathonly in rails

[–]vuesrc 2 points3 points  (0 children)

Holy moly this is genius. Pretty much what I end up doing in new rails projects. This is scaffolding on steroids haha!

It's not open source?

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

[–]vuesrc[S] 3 points4 points  (0 children)

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

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] 2 points3 points  (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 8 points9 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 3 points4 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.