HackerTrans
TopNewTrendsCommentsPastAskShowJobs

drwl

no profile record

Submissions

Software I Pay For

drewlee.com
2 points·by drwl·2 years ago·4 comments

comments

drwl
·3 months ago·discuss
it's spelled out in the linked tweet https://x.com/lifeof_jer/status/2048103471019434248
drwl
·2 years ago·discuss
Some feedback: - The constant interrupting each other made it hard to listen to - Also the interviewer Theo/T3.gg giving his CEO take on strategy to sandbag silverlake after finding out more context behind silverlake and automattic's relationship led me to have an unfavorable impression of the guy
drwl
·2 years ago·discuss
Gusto is not pre-revenue, it has $500M+ in arr

https://techcrunch.com/2023/06/27/gusto-remote-deal-500m-rev...
drwl
·2 years ago·discuss
I don’t think that’s fair to say the person is not engaging content in a meaningful way. Have you read the article? It’s pretty clean cut aside from understanding who the perpetrators were. The ceo of a bank got conned and went to prison, and there’s emphasis on calling the con a “pig butchering scam”
drwl
·2 years ago·discuss
yeah I'm with you there. Pig butchering scam [1] is just a simple con, not sure why they're attributing any importance to the name of it

[1] https://en.wikipedia.org/wiki/Pig_butchering_scam
drwl
·2 years ago·discuss
Thanks, yeah it does sound like we share the same thoughts regarding paying for solutions that just work

I'm resistant to moving over to Apple because of pure vendor lock in, but also I can decouple passwords from my Apple ID. For example, I use a mac for work but I don't need to sign in to my personal apple id on my work laptop to get access to passwords.
drwl
·2 years ago·discuss
I read the entire article and that is tough. Up to 90 dB is wild.
drwl
·2 years ago·discuss
I've been writing Ruby for the past 5 years or so and I think it's safe to say that these are very much opinionated takes on Ruby. There is no _one right way_.

A critique: 1. Verbosity vs Idiomatic, to me I find there are times the verbose approach is actually easier to read and understand

2. Long Expressions to Detect nil - this seems a bit like a strawman, sure there are better ways than to check the presence of an object/method chain, but doing the safe operator can bite you in the leg by compacting the complexity

3. Overuse of self - I skimmed through the Rectangle class declaration... it reminds me of writing Java. I rarely see self#method= used

4. Collecting Results in Temporary Variables - I think this is debatable, there's value in condensing method implementations when it makes sense, but also having temporary variable assignment can lead to better readability
drwl
·2 years ago·discuss
I found the original commit [1] since the other Github link in the thread shows the removal. I'm not entirely sure what the thought process was around adding it to begin with

[1] https://github.com/Alex313031/thorium/commit/26655c920b6a9e4...

edit: the commit link is nsfw
drwl
·2 years ago·discuss
Gusto adopted it when I was there (I left at the end of 2022). Like other comments, it's a bit polarizing but I found it to be useful when working in large codebases because you one didn't have to reason about return types and could just read them from function signatures.

Getting it to play nicely with Rails and other gems that did metaprogramming magic was a constant pain in the butt though.
drwl
·3 years ago·discuss
I’m sure you can find individual coaches but the cost will exceed what most people are willing to spend or invest. Take executive coaches for example, they exist but from what I understand they’re largely private coaching and cost $$$.
drwl
·3 years ago·discuss
My take is that there’s such variance in people’s skill levels and so it’s really hard to cater educational programming content. Personally, I’ve found getting introductory books/courses and skimming through it until you hit something that you don’t understand and then diving deeper into that bit.
drwl
·3 years ago·discuss
I’ve used this gem to remove a Rails Model that was heavily tangled and used in production. It had a bit of a learning curve, such as seeing how errors get handled in try {} blocks, but really nice otherwise when doing the equivalent of open heart surgery.