Usually the hams you get at the store are already cooked (check to be sure) and you just want it hot. That should give you a little wiggle room there! Whereas a pulled pork or something needs to be brought up to temperature to be technically edible, then held at that temperature for a while so it can be delicious
Arguably it's not wet if it's cold enough
What would stop a human from creating an account, then having a bot run it?
You're thinking of at-will employment.
At-will: Able to quit/be fired without notice for any reason, other than membership in a protected class
Right to work: Able to work without joining a union
It's funny, because usually when the fries aren't included at a sit-down place it's because the restaurant is trying to squeeze a couple extra dollars out of you (maybe the sandwich is $2 cheaper than you'd expect but then you pay $5 for the fries because of course you want fries!). That stinginess mentality seems to go hand in hand with a smaller than average sandwich. But maybe my fat American ass can't scale portion sizes.
All this conversation and still no reason that crypto would benefit me and other typical people in the western world.
But we seem to agree it would benefit you, likely also in the western world, if I and others like me were to adopt it. Funny that.
And yet, here I am in the western world still hearing about how I need crypto.
I understand Internet access is way more prevalent in poorer places now than it was, but it's still not something to take for granted in places that largely work with physical cash. Certainly not if you're going to base your economy on such a thing.
Right, just like any stock, futures, or other assets it's generally subject to capital gains tax if it appreciates. Nothing new there, except a new thing understandably falls under that umbrella.
So, you've got people who decided to spend real money on this thing that they hope could turn into its own real money. And they have a lot to gain if it does. So they push for it. Problem is fiat currency isn't a problem for the overwhelming majority of people, myself included. There may be problems with how much of that currency they get and what they can buy with it, but the basis of that currency (crypto vs fiat vs gold standard vs whatever) doesn't really change anything for people like me. But we still have to deal with people like you trying to convince everyone else that we should use your crypto, effectively giving you our wealth for no tangible reason that we can see.
So yeah, when you would only stand to gain from this revolution you're proposing, and everyone else only stands to lose depending on when they catch the boat, you can see where it's hard to take this seriously.
I think you're severely overestimating how many people match that description.
I also noticed you never said anything about my point that early adopters stand to benefit by quite a lot if the world were to move to some kind of crypto. Do you agree that would be the case?
ACA repeal was only after a surprise vote by John McCain. Before that it was assumed to go through. I'm not so sure it won't be replaced this Congress with "concepts of a plan"
And maybe, just maybe this is a solution in search of a problem for 99% of people and you crypto bros are grossly overestimating how useful this stuff really is. When the world runs on the dollar (or whatever your local currency is), you either need to convert to/from your so-called money to what the rest of the world is using, or you can bet that they're immediately doing it for you on the other side.
I'm sure this will all be equally convincing to get your average people to replace their existing bank account with that
I'm sure this will all be very convincing to get your average people to replace their existing bank account with that
Even if it does stabilize/is stable enough that the world shifts to it, what an interesting factoid that early adopters (who were lucky enough to pick the "right" crypto) would stand to benefit more than others.
Sheesh. At least you stopped shilling this crap on gonewild
So simple I can have my father-in-law do it. And support him over the phone from a few states away. Simple.
I would imagine someone has a file on Tulsi that she wouldn't want to get out. Things are not going great for Hegseth either. Unfortunately I think our physical education curriculum will be disproportionately based on wrestling and CMS will be run by a TV doctor
That does seem like a pretty good unit for the money as well. I'm just not sure my receiver has been good enough to stick to the brand, but I guess I'm not sure it isn't, either. One worthless advantage is that my speakers are Onkyo, so at least they'd match!
Marantz NR1711 vs Denon AVR-X1700H
Looking at a couple receivers. I'm not a huge audiophile or anything, but have some functional things I'm looking for (Zone 2, phono, network control, Bluetooth transmission would be nice). I tend to hang on to this stuff for a while, so 8K would be nice so I don't need to buy a receiver if/when the day comes that I get a new TV (Sharp 1080p sorta-smart TV still going strong 12 years in!)
Anyway, I'm down to two receivers:
- Denon AVR-X1700H (new at Costco)
- Marantz NR1711 (used on Facebook, includes some nice speakers I could probably resell if needed)
On paper, the Denon has a little more power and a few more 8k HDMI ports but otherwise similar. Since they're both run by the same company behind the scenes, I suspect most components inside are identical.
In practice, I know the Marantz is supposed to be the better brand... but it seems conceivable that a lower-end slimline, slightly older Marantz could probably be beaten by a midrange Denon, yeah?
For what it's worth, this is replacing an Onkyo TX-NR709 I've had for about 14 years. It's been a workhorse but I really want proper Zone 2 functionality and it's been giving me troubles there (no HDMI sources work, even with the "source" mode)
My friend is an ESL teacher. I sent this to her and said it's probably the most cruel thing she can post in her classroom
I'm not saying you're wrong. I agree. I'm just saying you could have said all that a looooong time ago instead of wasting time being coy
This was pretty much assumed to be dead in the water after Gaetz resigned. It could have been, but the fact that the Republican-majority house committee isn't 100% jumping at the opportunity to sweep things under the rug is a thing that's happening. Maybe it won't go all the way, but they are discussing. That's a thing that's happening.
Now, if it were one of those "(person) should do something" or "(committee) could do this thing that's in their power on paper but totally in the author's imagination in practice" things, sure. But you've got people talking about releasing a report on someone arguably not in their jurisdiction. That's something.
YAML Newbie, stuck on what should be an easy question (using state attributes instead of numeric value)
Solved!
Solution was to create a group and perform an action on that:
action: light.turn_on target: entity_id: light.kitchen_cabinet_sink data_template: brightness_pct: "{{100*state_attr('light.kitchen_sink_ceiling','brightness')/255}}"
Original:
Trying to run an automation to match one light's state (on/off/dim) to another's. Have this currently:
``` alias: Sync cabinet lights with sink light if:
- condition: device type: is_on device_id: [something]5710 entity_id: [something]a438 domain: light then:
- type: turn_on device_id: [something]b447 entity_id: [something]470f domain: light brightness_pct: 100 else:
- type: turn_off device_id: [something]b447 entity_id: [something]470f domain: light ```
That works fine to turn the lights on or off, and I have triggers in the automation for that and changes in brightness. But using a non-static number for brightness_pct (yes, I know I'll probably have to math the 0-100 scale instead of 0-255) is giving me trouble. When I try something like this:
``` alias: Sync cabinet lights with sink light if:
- condition: device type: is_on device_id: [something]5710 entity_id: [something]a438 domain: light then:
- type: turn_on device_id: [something]b447 entity_id: [something]470f domain: light brightness_pct: {{state_attr("light.kitchen_sink_ceiling", "brightness")}} else:
- type: turn_off device_id: [something]b447 entity_id: [something]470f domain: light ```
I have also tried {{states.light.kitchen_sink_ceiling.attributes.brightness}} instead. Both seem to have the correct value when I play around in the developer tools. But when I put it in the automation, I get an error that a float value was expected. I see some similar issues online, but it always seems to be in a different context and people fix it by changing some value I never had.****
I borrowed a bunch of tables from friends for a garage sale last weekend, and gave them back yesterday.
My, how the tables have returned!
My daughter just took a full bottle - her second in a row. Then she fell asleep in my arms. Feels good .
Year and a half old. It may feel silly, but she's always been in the single-digit percentile, usually low-single-digits at that. She was born about 3 months premature, and after her weight gain stalling, they prescribed a medication with a side effect of increased appetite to give things a jump start. I think it's going to work 🙂
Anybody in this community? Why do onion cutting instructions say to make cuts horizontally?
So many instructions to cut an onion are essentially
- Cut off the top
- Peel
- Cut in half
- Cut horizontally (in parallel to the cut you just made)
- Cut vertically into strips from just shy of the bottom to top, with the bottom holding things together
- Cut vertically perpendicular to your last cuts to get little squares
On something like a potato, I'd understand it. You'll be cutting a 3-dimensional object along all 3 axes to get cubes. But as Shrek taught me, onions have layers. Why make that first set of horizontal cuts when the onion's natural layers do the same thing already, albeit a little bit curved?
Viewing logs after HA goes down?
Running on a Raspberry Pi 400
Lately my home has been dumb and unassisted at random times, and the HA app can't connect to my HA rpi server. Ditto when I go to homeassistant:8123 in a browser. I'm trying to see what's causing this, but the logs in app only show since last restart. Tried plugging my Pi into a monitor and getting something from the command line but not sure how to do the equivalent of a Linux tail or whatever. Searching was surprisingly unhelpful. Any advice?
Thanks much!
Why do so many Lemmy instances use weird TLDs?
I get that some instances use the domain + TLD to make a word, like lemm.ee or to an extent, sh.itjust.works. But I've seen so many TLDs I had no idea existed, like .world, .zone, .social, and yes .works as well.
Is there any real reason for that? Trying to look cool or kinda underground-y? Cheaper and more varied domain options? Something actually kinda functional?
Interestingly, I started on vlemmy.net because I was a scared Reddit refugee and the .net TLD gave me comfort. Then it vanished a few days later without a trace. So here I am on lemmy.world
Check out !antiqueradios@retrolemmy.com
I originally created this community to post a few of my own projects and get a few others, but found retrolemmy before I could post anything. I'll still keep my lemmy.world account and all, but in the interest of keeping themes within instances, I think retrolemmy is a better fit. Admin, feel free to nuke this community if you wish! I don't see a way to on my end.
!antiqueradios@retrolemmy.com