spongebue

joined 2 years ago
[โ€“] spongebue@lemmy.world 1 points 4 days ago

I'm a white guy who went to a wedding in rural India. That attention alone got to be a bit much after a few days.

Also, I would have to be stupidly careful about pretty much everything. Hackers would actually think to target me AND could have an incentive to do so knowing I've got money (gained by fraud or blackmail if I'm not careful). In my current life I go to clothing-optional places pretty regularly (not a sex club or anything) and that would pretty much have to stop.

Just let me be rich in a way that nobody knows it, preferably not even my own friends.

[โ€“] spongebue@lemmy.world 12 points 4 days ago

the dialogue sounds awful

The dialogue sounds truly, truly awful


the dialogue is unbelievably repetitive

repeat the same lines

๐Ÿค”

[โ€“] spongebue@lemmy.world 4 points 5 days ago

Am I missing something?

[โ€“] spongebue@lemmy.world 10 points 6 days ago

Up until Polis mentioned he'd need to see repentance. Then she suddenly found Jesus and realized she was an itty bit sowwy for what she did

[โ€“] spongebue@lemmy.world 11 points 1 week ago* (last edited 1 week ago)

Noel Phillips (primarily an aviation/airline YouTuber) had an episode where he went there! https://youtu.be/KbZ5aqCjiwo

[โ€“] spongebue@lemmy.world 4 points 1 week ago

You're missing out! He basically picks out random technologies and stuff that interests him and explains how they work in an easy to digest way. Even if you're familiar with the subject he still manages to make it interesting. And he looooves heat pumps and anything remotely related to it.

https://youtu.be/7J52mDjZzto

[โ€“] spongebue@lemmy.world 5 points 1 week ago (2 children)

Alec Watson (Technology Connections) would be disappointed in me

[โ€“] spongebue@lemmy.world 9 points 1 week ago (4 children)

Squeezing (pressurizing) certain gases are basically how air conditioners work. Under pressure, the gases can absorb more heat (think pressure cooker - those get hotter because they raise the boiling point of water with the higher pressure). Shuffle that pressurized gas somewhere else with lower pressure, and it can no longer hold all that heat and needs to release it. Tada: heat has been moved from one location to another.

[โ€“] spongebue@lemmy.world 10 points 1 week ago

And the Pope would probably only reference a few specific passages, probably doesn't even know any others. If President Trump said he loves them all, then CLEARLY he's read them all!

[โ€“] spongebue@lemmy.world 1 points 1 week ago

I think the main difference is that dads will vocalize it at every possible opportunity ๐Ÿ˜€

[โ€“] spongebue@lemmy.world 19 points 1 week ago

Not just songs, but all the other languages showing up in English comes up conversationally too! When you did something wrong, there's the "mea culpa". Or in the courts, there are tons of Latin phrases like "nolo contendre". I've had "perritos calientes" (hot dogs, literally hot puppies) in Spain, but never have I had a "giant cheese" (quesadilla) or "little donkey" (burrito) in the states. And we just borrow other phrases as-is like "Je ne sais quoi" and schadenfreude.

[โ€“] spongebue@lemmy.world 1 points 1 week ago (2 children)

Voulez-vous coucher avec moi, ce soir?....

Side note, I have this illness (probably mental, but I've been told otherwise) where I'm a Dad. This causes me to sing ridiculous things for no reason. Every time I get some markdown croissants for breakfast the next morning and offer one to my wife, I ALWAYS start singing "Voulez-vous would you like a croissant, croissant?"

Hopefully one day they will find a cure

 

She was trying to say elevator

 
 

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

 

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?

view more: next โ€บ