spongebue

joined 2 years ago
MODERATOR OF
[–] spongebue@lemmy.world 8 points 10 hours ago* (last edited 8 hours ago)

I am subscribed to this community and I largely agree with you. Mostly I hate AI slop and that the human element is becoming an afterthought.

That said, I work for a small company. My boss wanted me to look up AI products for proposal writing. Some of the proposals we do are pretty massive, and we can't afford the overhead of a whole team of proposal writers just for a chance at getting a contract. But a closely-monitored AI to help out with the boilerplate stuff especially? I can see it. If nothing else, it's way easier (and maybe better results) to tweak existing content than it is to create something entirely from scratch

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

The lack of anything listed? I was talking about the link above with official state foods, not the OP. Love green chili as an (but who calls it chili verde?)

Having lived here for over a decade, and 2 states prior, I think the breakfast burrito deserves some recognition as an official food though. With green chili, of course.

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

Ahhh yes. Of course the US paid millions of dollars to detain hundreds of people, and Kristi Noem went down there to make a point that if you crime while brown, you will end up in this prison because it treats its inmates... Exactly the same as an American prison. Yeah, that makes sense.

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

Ooh, let me see what the state food is where I live! Let's see, Colorado...

....

☹️

[–] spongebue@lemmy.world 2 points 5 days ago

I wouldn't get that impression based on his remarks when he announced he's not running for re-election. Paul, on the other hand...

[–] spongebue@lemmy.world 106 points 5 days ago (14 children)

Saving you a click: Rand Paul, Thom Tillis, and Susan Collins voted against. Everyone else on party lines. Vance tiebreaker.

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

Honestly, I SMS myself occasionally 😬

Know any good notes apps?

[–] spongebue@lemmy.world 10 points 1 week ago

Holy crap, all these answers and hardly anything about how health insurance is supposed to work.

Basically, most people have health insurance. With the Affordable Care Act (aka Obamacare) from years ago, it's basically required but getting care is simpler (you can't be denied a plan for a preexisting condition, for example. But it's hella expensive. It's also typically tied to your employer as part of your compensation package like retirement contributions, which means if you change employers there's a good chance you need to change insurance and even doctors.

ANYWAY, say you have procedures done. Insurance companies typically have contracted amounts for stuff with each provider (a "discount" from insane prices nobody actually pays). You typically pay the first however many dollars, depending on what you're having done and how your plan works. Eventually, you'll reach a dollar amount that's your maximum for the year, and from there insurance generally covers everything they normally would

Some people also have Medicare (ages 65+) and/or Medicaid (based on income or disability). Some people have private insurance on top of it. My daughter was born extremely early and stayed in the hospital for months. Her very low birth weight was a qualifying disability for Medicaid, and she was on my work health insurance. Claims would go through work insurance first, and any remaining costs (deductible) would be passed to Medicaid. If there was anything left, I'd be responsible for that. But I don't think that ever happened

Obviously, coverage is different for different people - different employers have different plans that cover different things differently. But in theory, that's how it should work.

[–] spongebue@lemmy.world 7 points 1 week ago

I'm also not seeing anyone spell out how I'm wrong either

At no point is one group accountable for another group's actions in cases like this.

How's that?

[–] spongebue@lemmy.world 17 points 1 week ago

"it's not your fault Lisa. I shouldn't have let you let me get so carried away"

 

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 🙂

 

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

 

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

view more: next ›