HackerTrans
TopNewTrendsCommentsPastAskShowJobs

kfoley

no profile record

comments

kfoley
·3 वर्ष पहले·discuss
For anyone looking to get started I highly recommend the StrongLifts program and the associated app, both free [1].

I neglected strength training for a long time because every time I tried to get started I would feel overwhelmed. Then I tried StrongLifts and loved the fact that it's just 5 exercises, but provides pretty much a full body strength workout.

The guy who developed the program has put a ton of effort into making sure it's detailed and accessible so that pretty much any question you could have is answered.

[1]: https://stronglifts.com/5x5/
kfoley
·3 वर्ष पहले·discuss
Interesting, I've also got a Lodge. I use a low heat with a longer preheat, usually somewhere between a 3 or 4 out of 10 for for I'd say 2-3 minutes or so to preheat (not sure if that's relatively long or not).

Maybe it's the seasoning? I haven't seasoned ours in a long time but the last time I did I used flax seed oil.
kfoley
·3 वर्ष पहले·discuss
We use seasoned cast iron for eggs with very few issues. We used to use butter which led to some sticking, however recently we've been using olive oil and it's much better, with little to no sticking depending on what style we're cooking the eggs.
kfoley
·3 वर्ष पहले·discuss
I think French people, especially younger ones, are much more open to the use of English than stereotypes suggest. My favorite example is the French name for the movie "The Hangover", which is "Very Bad Trip". Not "Very Bad Trip" translated into French, but the exact English.
kfoley
·3 वर्ष पहले·discuss
> You would think at least some of those issues could be avoided by living somewhere “more expensive”, but it seems like affluent areas actually have more ads.

For whatever reason there are no (or very few) billboards in Northern Virginia, so that's one option. I wish there were more places like that, it's so refreshing driving through and not being bombarded with ads fighting for my attention (which is supposed to be on the road...).

But in general I think you're right it's extremely hard to get away from. I think the main reason it's hard to "buy out" of advertising it that the very fact that you can afford to "buy out" makes you that much more valuable to advertisers.

> Nb: I recently took a trip to the USA and was appalled that they play full volume video advertisements while you’re filling up with gas. At least that’s not a practice that’s caught on elsewhere.

In case you visit again or it comes up for others, you should be able to push the second button from the top on the left to mute the video.
kfoley
·3 वर्ष पहले·discuss
There are extensions that will automatically redirect you. I use this one [0] for Firefox and haven't had any issues.

[0]: https://addons.mozilla.org/en-US/firefox/addon/old-reddit-re...
kfoley
·3 वर्ष पहले·discuss
I got hired from a "Who's Hiring" post about 5 years ago and it's been an amazing experience. I've been able to work on interesting problems without having to deal with a bunch red tape as I had become accustom to in previous roles. I also got to go through a successful IPO which has been incredibly gratifying.

I later found out that the company doesn't regular post to those threads and someone did it on a whim which made me feel even luckier for having happened to come across it.

Then, early in the pandemic when lots of companies were laying people off there was a thread for companies still hiring. I posted something and we got a ton of applications but sadly none of them panned out. Later I was talking with some coworkers about how we all found the company and someone mentioned they found it via HN. Turns out it was actually my post and I just didn't realize someone had gotten hired from it which was pretty cool.
kfoley
·3 वर्ष पहले·discuss
> Is there a browser that has that feature yet? I spent a few hours trying to figure out if Firefox did. It did not appear to.

I believe this will be supported by manifest v3 extensions in Firefox[1] which is one of the features I'm looking forward to for the same reason.

[1]: https://blog.mozilla.org/addons/2022/10/31/begin-your-mv3-mi...
kfoley
·3 वर्ष पहले·discuss
I used to have the same issue understanding the benefit. One simple example that helped it clicked for me was considering the `when` or `unless` macro.

They're just very simple macros based around the `if` special form. Because they're macros, they can just treat the body as data, i.e. it's not executed as part of argument resolution.

If you wanted to make a `when` function in Python, the "body" would have to be a callable like a lambda or named function.

I know this probably isn't the most compelling use case but I found it to be a really simple way to understand some of the benefits of macros and how they could be used elsewhere.