Ask HN: What did you find out or explore today?
361–370 of 446 posts
Re: Ask HN: What did you find out or explore today?
#362Earlier quoted context omitted.
Same as white, green, yellow, black, pu erh tea, and all of their different varieties within those categories, it's all the same leaves, just different processes.
Well, not exactly in that there are cultivars and farm differences. In that way it is a little bit like grape wine, where different processing can produce very different wines from the same grapes, but there are also differences in grapes that can come through within a style.
Re: Ask HN: What did you find out or explore today?
#363Set up motion detection on my home security camera. Caught four stray cats playing in the driveway at like 2am. Kind of annoying that the detection is unconditionally "object-based" (ANN is used to filter false positives like lighting changes). Also been thinking about game ideas for a while. Finally settled on an open world RPG where you control multiple (>10?) characters. Core gameplay loop will be configuring / op…
Re: Ask HN: What did you find out or explore today?
#364I'm doing PHP for the first time in years. I needed a function that returns the date of last week's Monday. Turns out PHP has a funky date querying language. I can just do: $today->modify('monday last week'). Makes me happy.
PHP is just awesome.
Re: Ask HN: What did you find out or explore today?
#365Tangentially related: if I do this frequently how can I frame it as a hobby normies can understand? Knowledge explorer sounds too esoteric.
Re: Ask HN: What did you find out or explore today?
#366Finished "For Whom the Bell Tolls" by Hemmingway Wow, so powerful. So real. I can see why it won the accolades at the time and why it stays. The ending. You could see it a mile away, but it was so hurtful still. Would love to see another adaptation made of it, especially nowadays. Maybe a really long movie, 2 parts?
Currently at page 127. Wish I didn't read this comment...
Re: Ask HN: What did you find out or explore today?
#367Surströmming, the Swedish can of fermented fish, is strongly recommended to be punctured while submerged in tap water. It is not pasteurized and is actively fermenting in storage, and the content will spray around if opened under atmospheric conditions. When transported on cargo flights, they are double packed as cans in a barrel in a crate, and considered UN classified "miscellaneous dangerous goods" with identifica…
I hope you didn't find that first paragraph out the hard way today!
Re: Ask HN: What did you find out or explore today?
#368Earlier quoted context omitted.
What's the advantage to systemctl --host foo status httpd.service vs ssh -t foo systemctl status httpd.service ?
> What's the advantage to ... For me personally, I'd say "not much". I'm used to using the latter form, and it's fine. But I will say that now that I know about this, I see using it in scenarios where I'm running a lot of systemctl commands over and over again in close proximity and have the "muscle memory" of typing "systemctl" more in mind. For example, when working with a new service that isn't quite working right…
Re: Ask HN: What did you find out or explore today?
#369On a recent trip to Costa Rica, I discovered "Rice and Beans," which is not Gallo Pinto, but a Caribbean-influenced dish made principally of white rice, red kidney beans, coconut milk, and thyme. The dish name is in quotes because it's really the English words "Rice and Beans." It's marvelous, and I couldn't wait to try making it myself at home. Unfortunately, so far, it's been a mushy flavorless mess. I'll try a thi…
happy cooking and eating!
Re: Ask HN: What did you find out or explore today?
#370Earlier quoted context omitted.
> What's the advantage to ... For me personally, I'd say "not much". I'm used to using the latter form, and it's fine. But I will say that now that I know about this, I see using it in scenarios where I'm running a lot of systemctl commands over and over again in close proximity and have the "muscle memory" of typing "systemctl" more in mind. For example, when working with a new service that isn't quite working right…
But that seems worse? If all your commands are systemctl, then you just have to ^p and edit/rerun, but there isn't a `systemctl $EDITOR /some/file`, so you'll have to ssh to run emacs (or use TRAMP, if using emacs), at which point you might as well just have a shell on the other end and do everything without having to tack --host onto your commands