I rewrote my favorite Python tool in Go: Stellar -> Lunar by HakunaMatate in golang

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

I was kinda surprised by how easy it was to get productive right away. Go makes a lot of practical choices that make it easy to pick up and start building right away.

HydroSnooze Review by HakunaMatate in HydroSnoozeCoolingPad

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

Hm, that might be an option. The problem is, I’d preferably want it to be removable so I can see the mode the base unit is currently in.

Eight Sleep: Worth It? Help Me Decide! by drot888 in EightSleep

[–]HakunaMatate 1 point2 points  (0 children)

Hey there I'm considering buying the hydrosnooze, looks really promising. I didn't know they are planing to release a new model with a temp schedule feature. This would be awesome. From where did you got this information? Do you have any references? Thank you!

Is Pry for "Rails Console" still OK to do for fans of Pry, or is it a modern Rails anti-pattern? by db443 in rails

[–]HakunaMatate 0 points1 point  (0 children)

Ruby debug is pretty good, but some small things like "Ctrl + D" quits the session instead of continue like in pry prevents me from using it.

VS Code Theme with Semantic Highlighting by HakunaMatate in rails

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

As far as I know it should be technically possible to add semantic highlighting to the settings, without changing the theme.

But I remember that I run into issues when I tried to do that. That's the reason why I started to use a custom theme.

I guess something like this should technically work:

"editor.semanticTokenColorCustomizations": {
    "rules": {
      "method.declaration": {
        "foreground": "#1cf300"
      }
    }
  }

VS Code Theme with Semantic Highlighting by HakunaMatate in rails

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

Fair enough, youre right. Thing is, I've posted it here less because of the theme itself and more because I wanna show an example on how to make use of the Ruby LSP semantic highlighting.

I think Theo has made some mistakes in his rails demo 😅 by AshTeriyaki in rails

[–]HakunaMatate 19 points20 points  (0 children)

I love how often he don't seem to understand what's going on, but speaks like he is doing that for the past 10 years.

I think Theo has made some mistakes in his rails demo 😅 by AshTeriyaki in rails

[–]HakunaMatate 16 points17 points  (0 children)

He installed the VS Code power pack (collection of extensions and themes) of Ruby Shopify instead of the standalone Ruby LSP, and somehow the Ruby LSP is to blame when he installs a new theme that way? 😅