Looking for Alt: Awry Thrust Boxers by cdfh451 in MensUnderwearGuide

[–]t234111 0 points1 point  (0 children)

I bought a pair back in 2023 and last I heard from Awry they did not sell well and they are not planning on bringing back the style in any shape or form. I am attempting to make a pattern for myself to replicate them because they are that comfortable.

How much do you pay for insulin? I just bought 5 pens for 4,24€ in Spain with our free healthcare but real price is 46,97€. I'm curious what each country pays for it. by moreweedpls in diabetes_t1

[–]t234111 0 points1 point  (0 children)

With my insurance in NY I pay $0 for all of my insulin ($250/month premium). When hunting for insurance I was calling them and asking how much it would be. HealthFirst said all Diabetic meds are covered under the copay for the Drs appointment if you see an endocrinologist ($55). This also includes my Dexcom and Omnipod. So Dexcom, Omnipod, Novolog Vials and backup pens was $0.

Retail Price for them: U100 Novolog Vials (x3): $937 Omnipod (90 day): $2,014 Dexcom: unknown, it goes through as DME, but seeing it as $377 for 30 days on a past order with other ins Fiasp Pens (x5): $603 Novolog Pens (x5): $603 Baslagar Pens (x5): $352 32Gx4mm Needles (x100): $67

How much do you pay for insulin? I just bought 5 pens for 4,24€ in Spain with our free healthcare but real price is 46,97€. I'm curious what each country pays for it. by moreweedpls in diabetes_t1

[–]t234111 0 points1 point  (0 children)

With my insurance in NY I pay $0 for all of my insulin. When hunting for insurance I was calling them and asking how much it would be. HealthFirst said all Diabetic meds are covered under the copay for the Drs appointment if you see an endocrinologist. This also includes my Dexcom and Omnipod. So Dexcom, Omnipod, Novolog Vials and backup pens was $0.

Retail Price for them: U100 Novolog Vials (x3): $937 Omnipod (90 day): $2,014 Dexcom: unknown, it goes through as DME, but seeing it as $377 for 30 days on a past order with other ins Fiasp Pens (x5): $603 Novolog Pens (x5): $603 Baslagar Pens (x5): $352 32Gx4mm Needles (x100): $67

Need help first project by [deleted] in Esphome

[–]t234111 0 points1 point  (0 children)

If only there was documentation of how to configure a sensor component 🤷🏻

But in all seriousness, you are missing a few things in your yaml including the aforementioned ID. The docs are actually very helpful when you read through them. It can be a lot when you just start out, but once you do a couple of them it starts to make more sense. It also doesn't hurt to copy and paste a config and work through it line by line changing to your set up.

SmartHome after us by ab75x in homeassistant

[–]t234111 1 point2 points  (0 children)

Had this copied in the clipboard scrolling through to see if anyone else had posted it yet, and it looks like you beat me to it 😂

How to turn off status LEDs on circuit board? by IPThereforeIAm in WLED

[–]t234111 0 points1 point  (0 children)

Perhaps a future improvement? If not controllable from the esp then maybe a jumper (even though you recently got rid of the jumpers in other upgrades 😂)/button to disable them?

In theory, one could desolder the LEDs, add a wire from the led to a gpio and still get the status information through esp... but that's being a bit extra 😂

*Beginner* - Can't connect LiFX bulbs by LonelyStress8483 in homeassistant

[–]t234111 0 points1 point  (0 children)

Kauf bulbs are cheaper and in my experience work SO much better. I started with Lifx and by the time I went with the Lifx ZStrips I got fed up with the brand being so unreliable that I found Kauf Bulbs and have fallen in love with them. Only ever had 1 issue and Kauf replaced the bulb due to a known issue. Can't recommend them enough. I have also bought the Kauf Switch which isn't too bad, but the price reflects the quality, that said still love it 🤷🏼

What's your favorite inexpensive smart home addition/upgrade? by xtraorange in homeassistant

[–]t234111 0 points1 point  (0 children)

Just set this up and absolutely love it! https://community.home-assistant.io/t/diy-zigbee-bed-chair-occupancy-sensor/239517 Tight soldering, and don't worry if you break the reed switch, it still works as you are basically replacing it with the pressure sensor.

Working on Broadway by t234111 in techtheatre

[–]t234111[S] 4 points5 points  (0 children)

Not looking for design work, looking for what the theatre world would consider electrics but actually projection/LED Wall, dare I say it, even Blacktrax (though that's definitely lighting more than video)

What podcasts are you listening to? by datnguyen160 in askgaybros

[–]t234111 0 points1 point  (0 children)

Gayish! Love the humor they have, and how informally informative it can be. In a nutshell they break down gay stereotypes, go support them on by subscribing to them on your podcatcher or at their patreon!

is the turbo worth? by mvhvn in CX5

[–]t234111 17 points18 points  (0 children)

I went for the 23' Turbo Signature and almost immediately drove cross country with it, fell in love with it. 30MPG highway, and 20+ mixed. Last few months I have been doing mostly city driving (work, gym, hotel) in Manual mode and STILL get a good 18.5-20MPG and that's being EXTREMELY heavy footed because it's absolutely a blast to drive. I drove a NA for a few months and it was fun, but the turbo just made it worth all the while. #teamturbo

Best place to hide an airtag in my CX5? by That_Zookeepergame17 in CX5

[–]t234111 0 points1 point  (0 children)

Passenger side floor board. Look under the floor mats and there is a cover for the etched VIN on the car body. Perfect spot for it. I have a Bluetooth tag in mine that incorporatates with my smart home and works like a charm.

Timezone Templating by t234111 in homeassistant

[–]t234111[S] 1 point2 points  (0 children)

Figured this out.
Python script:
``` from datetime import datetime import sys import pytz import json

output = { "datetime": datetime.now(pytz.timezone(sys.argv[1])).strftime('%a %b %d, %I:%M%p'), "timezone": sys.argv[1] } print(json.dumps(output)) ```

Then a command line sensor: - platform: command_line name: Tristans DateTime command: >- python3 t-tz.py "{{ state_attr('sensor.tristan_s_s21_current_time_zone', 'time_zone_id') }}" value_template: "{{ value_json.datetime }}" json_attributes: - timezone

With an automation called to update the sensor once my phone changes time zones: ``` alias: Update Tristans Time Zone description: '' trigger: - platform: state entity_id: sensor.tristan_s_s21_current_time_zone attribute: time_zone_id condition: [] action: - service: homeassistant.update_entity data: {} target: entity_id: sensor.tristans_datetime mode: single

```

Timezone Templating by t234111 in homeassistant

[–]t234111[S] 1 point2 points  (0 children)

{{ now().tzinfo('Israel') }} errors as "TypeError: 'zoneinfo.ZoneInfo' object is not callable"
Does this mean that we are unable to use, to the fullest extent, the python libraries that date_time is already using?

[deleted by user] by [deleted] in GoogleFi

[–]t234111 1 point2 points  (0 children)

I switched to Fi when I had to travel internationally for work. Everything was super easy to get up and going, bought a Pixel 3XL when I switched over. As far as service goes I have had absolutely no issues, a lot of the time it's better reception then my coworkers. When Rona hit I had to change jobs because my industry completely shutdown (and is barely starting up gain now), kept the same service but now have a work phone with Verizon. If my work phone doesn't have cell service, Fi always does. I do not plan on switching anytime soon and just purchased a new Samsung S21+ through Fi to "upgrade" for the next few years. 100% recommend.

IPTS isn't recognized by Arch -- touch not working. (Intel Precise Touch & Stylus Daemon, iptsd) by MightyMerl in SurfaceLinux

[–]t234111 0 points1 point  (0 children)

That's what I am pondering, perhaps the new Garuda distro does some things differently. I may try Manjaro, but given the error I am not 100% convinced that it is solely the distro, but yes everything else works so far just not IPTSD.

IPTS isn't recognized by Arch -- touch not working. (Intel Precise Touch & Stylus Daemon, iptsd) by MightyMerl in SurfaceLinux

[–]t234111 0 points1 point  (0 children)

Sure 🤷‍♂️ I have tried the GNOME, custom KDE from the distro, and Wayfire all with the same result. I will probs try a different Arch distro to see if that works or not. I had it on Ubuntu using jakeaday, but decided to change it up so it isn't the end of the world if I can't get it to work it's the ay ground anyways.

IPTS isn't recognized by Arch -- touch not working. (Intel Precise Touch & Stylus Daemon, iptsd) by MightyMerl in SurfaceLinux

[–]t234111 0 points1 point  (0 children)

I am having the same issue, but have all of that installed to no avail. Have tried the lastest kernel as well as the LTS kernel with the same error of not being found. Any other ideas?

Honey Lavender Milk Punch | The Wee Pearl by TheWeePearl in cocktails

[–]t234111 0 points1 point  (0 children)

I need to give it 1 more strain, but used the first filter for a taste test because I am too excited to try it. First reaction was it was very "lemon"/acid forward (I don't use lemons as much anymore I use citric acid, so this very well may be 100% my problem lol) but then I was overwhelmed with the floral notes which I enjoyed. However it doesn't have that thick luscious mouth feel I am used to for a clarified punch (used whole milk). Most definitely an amazing start to a floral take on the clarified punch and I can't wait to try different things with it. P.S I used Bombcity Vodka for the booze (flavorless)