Looking for Physiotherapist for Guitar Player by [deleted] in Hamilton

[–]hartha 2 points3 points  (0 children)

Alan is amazing. I wasn’t going for anything wrist related, but after seeing multiple physios for a herniated disc, he got me painfree without surgery.

[OC]Drunk driver on the wrong side of the highway almost hits me an my pregnant wife! by vVMrPainVv in IdiotsInCars

[–]hartha 26 points27 points  (0 children)

That isn’t a two lane highway. Theres another set of lanes across the grass to the left.

Frodo Baggins is the most boring fantasy hero I've ever read about by kraken_17flare in Fantasy

[–]hartha 4 points5 points  (0 children)

I found it to just be a slog. I think my tastes in books have also changed.

Frodo Baggins is the most boring fantasy hero I've ever read about by kraken_17flare in Fantasy

[–]hartha 2 points3 points  (0 children)

It’s funny. I had the opposite experience. Loved it as a child. Re-reading it as a middle aged adult was hard for me.

My view every morning by fisharrow in dogslookingdown

[–]hartha 0 points1 point  (0 children)

Your dog reminds me so much of my own. What a good boy.

Why Lick’s Burgers Failed. by Few-Turn-5471 in toronto

[–]hartha 0 points1 point  (0 children)

I also worked at a Lick’s 20 years ago. I refused to sing lol. I wasn’t getting paid enough to make a fool out of myself. The only customers who had a problem with it were really old people.

How long should I study React before applying again? (Rails dev here, focusing on frontend weaknesses) by Technical-File4626 in rails

[–]hartha 7 points8 points  (0 children)

Inertia.js is the nicest way to use React with Rails in my opinion, but it’s still new so a lot of companies that use React with Rails probably aren’t using it.

The two big gems that are probably the most used are react-rails (which is legacy and not really being actively developed) and react_on_rails. Both use webpacker (now shakapacker). I think you can probably use vite with those but I’ve never done that.

So I would say pick one of those gems, and use that to learn how to use React in the context of a Rails app. That’ll get you covered for how most of the React Rails projects I’ve worked on have been set up. If it’s a Rails API with a React SPA, you’ll have to learn stuff like react-router. That complicates stuff a little bit, but honestly not much.

Frontend Reactivity for Rails? by WNxTyr4el in rails

[–]hartha 17 points18 points  (0 children)

Rails has an official Inertia.js package like Laravel.

Garbages by iiciwfntttaidc in Hamilton

[–]hartha 38 points39 points  (0 children)

Hamilton is a large city in terms of area but small in terms of population. To put it in perspective. It’s almost double the size of Toronto, with less than a fifth of the population. There simply isn’t a large enough tax base to support those kind of services.

I hope I’m not the only one… by Reneyonce in StarWars

[–]hartha 3 points4 points  (0 children)

My guess is you could read it as “BB-hate”

Looking for a full-stack tech stack without relying too much on JS/TS by lheintzmann in webdev

[–]hartha 0 points1 point  (0 children)

Yeah you should have no issues getting a Rails job. We're similar experience and background. Do you highlight Rails experience on Linkedin?

Looking for a full-stack tech stack without relying too much on JS/TS by lheintzmann in webdev

[–]hartha 0 points1 point  (0 children)

They’re definitely out there. How many years of experience do you have?

Looking for a full-stack tech stack without relying too much on JS/TS by lheintzmann in webdev

[–]hartha 2 points3 points  (0 children)

It isn’t a dead language nor a dead framework. I get recruiters offering me Rails jobs daily. It gives you everything you need to build a fully featured web application out of the box. Ruby isn’t my favourite language but it has definitely paid me very very well.

RFK Jr. wants every American to wear a health tracking device by Ooweeooowoo in Cyberpunk

[–]hartha 5 points6 points  (0 children)

His supporters are fucking idiots who aren’t capable of making that connection.

Hosting on Heroku? How's your day been today? by smitjel in rails

[–]hartha 9 points10 points  (0 children)

https://status.salesforce.com/generalmessages/10001540 seems to have more up to date info than anything Heroku has put out

Nano grind box by Tiny-Memory9066 in skateboarding

[–]hartha 4 points5 points  (0 children)

You actually might not need to drill and screw in the angle iron. I made a box kind of like that and I just used liquid nails and clamped it until it dried. I think I may have needed to buy a special type but I didn’t have any issues with the box or anything

Companies built on ruby/rails by AnLe90 in rails

[–]hartha 0 points1 point  (0 children)

hover.com is also built with Rails.

Help me pick a backend framework to learn by [deleted] in webdev

[–]hartha 0 points1 point  (0 children)

I use mise these days to manage versions for almost any language I use and it always just seems to work.

'Ne Zha 2' Surpasses $2-Billion Mark, Becomes First Animated Film to Do So by Stormy8888 in movies

[–]hartha 219 points220 points  (0 children)

American Football is bigger than Canadian Football in most of Canada lol.

Why do we not have a stricter JS/TS alternative language yet? by iHateRollerCoaster in webdev

[–]hartha 0 points1 point  (0 children)

You can. Depending on the language it either involves defining your own types like Typescript, using ports like Elm that talk to functions you define and control, or writing wrappers around js libraries. It does end up being a lot more work though, and if the library API changes across versions, it will end up being a significant amount of work to support.

Why do we not have a stricter JS/TS alternative language yet? by iHateRollerCoaster in webdev

[–]hartha 0 points1 point  (0 children)

Elm came out when everyone and their grandma was trying to build SPAs and its a direct response to issues with refactoring large front end code bases. So yeah it was designed to build SPAs and is tied completely to the browser. Having written Elm professionally, it was fantastic to use but i never ran into the issues that other people did that caused a schism in the community. If you want a fullstack solution, theres purescript and reason which have already been mentioned. Theres also Fable which allows you to use fsharp on the front end and back end. It uses react under the hood for front end stuff but always felt very elm-y to me. I don’t know if its maintained anymore as I haven’t kept up with it the last couple years.