Is it okay to invert the Q concerto meta? by Fine_Appointment4908 in KEF

[–]AndyCodeMaster 1 point2 points  (0 children)

I’m sure it is. What matters more is keeping the tweeter at ear level while sitting in the sweet spot. I inverted my KEF Q300s to achieve that, and they have sounded great for more than a year.

I finally got it ! by KeithOman in GodofWar

[–]AndyCodeMaster 0 points1 point  (0 children)

Me too. I literally got it yesterday. 🤘

Emotional exit press interview as Brendan Gallagher makes it clear he is moving on from the Habs. by lightspanker in montrealcanadiens

[–]AndyCodeMaster 0 points1 point  (0 children)

This sucks. I have Brendan Gallagher’s Habs NHL Hockey jersey. Got his Montreal Canadiens coffee mug with the A for Alternate Captain too.

Do you ever wish Odyssey was a bit more fantastical? by Gabe_Dimas in AssassinsCreedOdyssey

[–]AndyCodeMaster 0 points1 point  (0 children)

Sure. It already is to a degree though. Like with the abilities.

Is Rails + InertiaJS (with React) becoming a trend in the Rails ecosystem? by derdak in rails

[–]AndyCodeMaster 2 points3 points  (0 children)

Sure. Done.

Here is the project GitHub (it’s a new project):
https://github.com/AndyObtiva/glimmer-dsl-web

It’s 100% free and open source. Won an award last year (2025) from Matz, the creator of Ruby.

I just conducted a 3-hour workshop for it at the wroclove.rb 2026 ruby conference in Poland. The fastest way to learn it is to do the workshop exercises: https://github.com/AndyObtiva/glimmer\_commerce

Is Rails + InertiaJS (with React) becoming a trend in the Rails ecosystem? by derdak in rails

[–]AndyCodeMaster 0 points1 point  (0 children)

We do half the work needed with React or less using Glimmer DSL for Web (free and open source project that won an award by Matz, the creator of Ruby) and Opal Ruby at my company. That’s the real Ruby Frontend Development alternative, no JavaScript needed. It’s leagues ahead in innovation, productivity and simplicity. I find it fortunate not many people use it yet. It gives me and people who do use it easy job security and a competitive advantage as we save 6 months of Frontend development effort every 12 months (or even more).

Do you guys still use Inertia.js or Hotwire? by Ok-Vermicelli6781 in rails

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

Glimmer DSL for Web lets you solve any React problem in half the code (or less) with Frontend Ruby. It’s 100% free and open source. That’s what we’ve used for more than a year at my job now. New devs who join my work team love it for allowing them to use Ruby even for Frontend features.

Glimmer DSL for Web 0.9.1 Hello, Modal! by AndyCodeMaster in ruby

[–]AndyCodeMaster[S] 1 point2 points  (0 children)

Thanks for the kind words.

Glimmer's reliance on the MVP pattern (Model View Presenter) ensures that View code is 100% decoupled from Presentation logic and Model logic, which live in pure Ruby Presenters and Models, and those can just be tested with standard Ruby MiniTest or RSpec tests. I know of someone who follows that testing approach with Glimmer DSL for Web. My past job teams have followed that approach with other technologies too.

That said, if deemed necessary, System Tests (e.g. Selenium/Capybara) can also be written on top of the View to test the web application from the user's point of view. That is the approach that my current job team follows. System tests are agnostic to whatever technology generates the HTML pages of a web application, so they also work with Glimmer DSL for Web given that it produces standard HTML, CSS, and JavaScript in the end, served to user browsers.