spongebue

joined 2 years ago
[–] [email protected] 11 points 2 days ago (4 children)

Take a second to actually read this one. It's pretty short and sweet. It's also from 2007, and talks about nouns (maybe compound nouns) that we really don't think and probably never knew were hyphenated. It's not about the use we typically see today.

As an aside, I've noticed people start hyphenating in weird ways, like "I've been at this job for 7-years"

[–] [email protected] 36 points 3 days ago (1 children)

It's more like pranking your granny in the nursing home. Still plenty easy to do, but sad and cruel.

[–] [email protected] 3 points 4 days ago

I miss when tech was fun with things like this. Even if it wasn't cutting edge, it was at least playful, creative, user-centered stuff unlike everything coming out now. Like, have you been to the electronics section at Target lately? Try and find one thing you're actually excited to get and will have fun with. Odds are, the best you'll get is a wireless speaker. Umm, yay, I guess?

[–] [email protected] 13 points 5 days ago

Sounds like you're looking for something that only exists in the used market, which may be your plan anyway.

The Mitsubishi imiev never took off, but it's probably the least-frilly EV you can buy. But as Doug Demuro will tell you, it's a bit quirky. Assuming you're American, yes, is was released in the States but no, you probably wouldn't have heard of it. I'm not sure I'd recommend it necessarily, but it's an option

That said, I have a Chevy Bolt. Pretty easy to find on the used market (and with that, get service if you need it) no dumb features nobody asked for. It does have Android Auto/Apple Car Play, which is actually pretty awesome (I believe it's the 2022+ models with wireless car play). Their base models are pretty barebones (some don't even have DC fast charging, watch out for that) but higher trims do have some nice features to them. It's kind of a car you've seen on the road but didn't know you actually wanted.

By the way, backup cameras became mandated a while ago. I'm not sure the screen size requirements (I've seen some cars put it in the rear view mirror, which was kinda cool actually) but since most cars need a screen now to support that, and higher trim levels will use that screen for other things, and making multiple pieces of hardware for the same car is an annoyance for car makers, you'll probably see a screen on most cars. Just FYI.

[–] [email protected] 28 points 6 days ago (1 children)

So what you're saying is, Musk now has an $11 billion write-off without really losing anything that was sold.

[–] [email protected] 3 points 1 week ago* (last edited 1 week ago)

Bing (or I guess to keep up with the song, _ingo)

[–] [email protected] 2 points 1 week ago

The one entering the city I live in now... After driving two days from my parents' house. I only do that long haul 1-2 times a year but knowing I'm almost home feels good man.

[–] [email protected] 14 points 1 week ago (1 children)

As someone who usually hates shallow, easy, nihilistic answers...

Hah! With this Justice Department?

[–] [email protected] 6 points 1 week ago

I didn't know you use Lemmy, dad!

[–] [email protected] 6 points 1 week ago

But you guys don't understand! Sports!!!

[–] [email protected] 1 points 1 week ago (1 children)

Yeah but you basically said the same thing to someone who does the opposite so I'm just going to assume your strategy is to not wipe at all, which is weird

 

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 ›