spongebue

joined 2 years ago
[–] spongebue@lemmy.world 3 points 23 hours ago

Good to know! Something like this should absolutely be impeachable (I know lots of things should be, but this is one of the most clear IMO) and with a little luck things will change after 2026

I know, I can dream...

[–] spongebue@lemmy.world 1 points 1 day ago (1 children)

Hold up, I'm not trying to talk about crypto, certainly not in a wall of text. You said the distributed ledger has its uses outside of crypto and gave some examples. If those examples were truly clamoring for some kind of distributed ledger solution, why haven't they implemented it by now? I can't imagine crypto distracted that much to make it impossible, there must be another reason.

[–] spongebue@lemmy.world 1 points 1 day ago (3 children)

But how much of that really demands a Blockchain solution in favor of what's used currently? Aside from some developers' time, nothing about crypto prevented what you described from happening and (presumably) it never did come to be.

[–] spongebue@lemmy.world 3 points 1 day ago (5 children)

And what exactly should it have been used for?

[–] spongebue@lemmy.world 5 points 1 day ago

But every job I've ever had, there's at least one maverick who knows git way better than anybody else and is super advanced

Pretty sure that's me at my job, but I take your approach too.

I just have lousy coworkers who keep a bunch of stale branches open with no real maintenance plan. Thankfully I kind of work in my own bubble and generally avoid that jungle

[–] spongebue@lemmy.world 25 points 1 day ago (2 children)

No Title of Nobility shall be granted by the United States: And no Person holding any Office of Profit or Trust under them, shall, without the Consent of the Congress, accept of any present, Emolument, Office, or Title, of any kind whatever, from any King, Prince, or foreign State.

Technically that right there would make it ok if the house passes the same. But my God, if we're going to use that qualifier to let the president have something from a foreign state did it have to be a fucking 747?

[–] spongebue@lemmy.world 51 points 1 day ago (5 children)

Its traffic is notoriously bad, so you don't have to live far away to deal with a long commute.

[–] spongebue@lemmy.world 1 points 3 days ago

Kinda sorta. Air conditioners seemed like a more common phrase to reference, so I just clarified that it's the same thing.

Arguably it would be cheaper to cool than to heat, because the whole point is to move heat from one place to another. The heat is easy to collect in a hot house vs a cold winter outdoor setting, and you probably don't need to change the temperature as much (if you target, say, 20C and you experience 35 in summer and -5 in winter, you have a 15 degree difference in one direction and 25 in another)

[–] spongebue@lemmy.world 46 points 3 days ago (3 children)

Heat pumps are air conditioners that can be run backwards. That's it. You're running an air conditioner, and it's summer.

[–] spongebue@lemmy.world 37 points 3 days ago (2 children)

Basically, she knows (or was told) that she can only win in a district with constituents as batshit crazy as she is. In a state that has managed to collectively vote blue in other races, especially when there's a runoff, she'll go the way of Kelly Loeffler

[–] spongebue@lemmy.world 2 points 3 days ago (1 children)

I was just thinking about that silly interchange when I read that title!

[–] spongebue@lemmy.world 12 points 4 days ago

“improper public comments” [...] in a closed-door judicial conference

And releasing photoshopped knuckle tattoos to allege MS13 membership in a press release is what now?

 

As a parent of a toddler in this program (one who is getting 4 provider visits per week, was going to be cut to 4 per month) I'm glad to have gotten an email late Friday saying that there will be no changes to services at this time. Still, this week has been a clusterfuck for us and especially our providers!

 

In the past I've gotten around this by printing on the left side of the bed, but some things need the space so here I am.

I've got an Ender 3 V2 with some tasteful mods: OctoPrint, BLTouch, a magnetic flexible bed surface, and a few other things people are bound to do with an entry-level printer they got for $100 with a Micro Center coupon. One issue I'm having with it is that any printing done on the right side of the bed seems to have a pretty big gap. I have the G28 and G29 commands in to run the bed level, I try to get it leveled properly with the springs (with help of the bed visualizer plugin for OctoPrint) and no matter what I do, the nozzle drifts just a little farther from the bed on the right side, so the filament does not stick.

I'm open to more mods, but before I spend more time and money on this for what I think is the problem, does anyone actually have a good idea of what's wrong here?

Thanks much!

 

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)

 

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.****

 

My, how the tables have returned!

 

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 🙂

 

So many instructions to cut an onion are essentially

  1. Cut off the top
  2. Peel
  3. Cut in half
  4. Cut horizontally (in parallel to the cut you just made)
  5. Cut vertically into strips from just shy of the bottom to top, with the bottom holding things together
  6. 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?

 

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!

 

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

view more: next ›