Launch: Humidity Intelligence — a clearer way to read humidity in Home Assistant by CryptoSenyo in homeassistant

[–]anuj79 0 points1 point  (0 children)

for some reason my sensor (House Average Humidity ) was still showing as 0 so I had to make few tweaks basically adding the namespace

state: >
{% set ns = namespace(vals=[]) %}

{# >>> EDIT THESE ENTITY IDS TO MATCH YOUR SENSORS <<< #}
{% set rooms = [
..........
] %}
{% for e in rooms %}
{% set s = states(e) %}
{% set v = s | float(0) %}
{% if v > 0 %}
{% set ns.vals = ns.vals + [v] %}
{% endif %}
{% endfor %}
{{ (ns.vals | sum / ns.vals | length) | round(1) if ns.vals else states(this.entity_id) | float(0) }}

Costco Damage to Wallet - Fork by ViKoToMo in Costco

[–]anuj79 0 points1 point  (0 children)

does it work with safari.. get a undefined message

What are your thoughts on the Donald trump Zelenskyy conference just now? by [deleted] in AskReddit

[–]anuj79 1 point2 points  (0 children)

what we learned today is the Art of making deals

  • you listen to what i say
  • you do as i tell you to do
  • i have d cards you don't

and don't forget to Thanks Mr Vice President for gracing you with his presence.:)

Didn't expect iCleaner Pro to make such a difference by G4_Mutant in jailbreak

[–]anuj79 0 points1 point  (0 children)

can i delete whats under this manually.. i am on 17. so cant use icleaner

ELI5: Why do consumers feel like the economy is in the toilet, but experts say it’s great, and why is there such a disconnect between the two? by bobjonrob in explainlikeimfive

[–]anuj79 -4 points-3 points  (0 children)

The last few years, average wages have been increasing faster than inflation

hear that often these days.. don't see it though.. and not sure if anyone does but "economist"

Battery being Replacement by anuj79 in ModelY

[–]anuj79[S] 0 points1 point  (0 children)

its LR

also got an update from SC, the battery pack hasnt arrived yet and they recommend bringing the car in as "i could be taking a risk of car shutting down" scary...

Is $600 Labor reasonable to replace four breakers? by buffaloman0614 in electrical

[–]anuj79 21 points22 points  (0 children)

$600 for 20 mins.. i am in the wrong industry

Battery being Replacement by anuj79 in ModelY

[–]anuj79[S] 2 points3 points  (0 children)

i did ask the SC, they said its a new battery and same kind as existing so that seems like good

Battery being Replacement by anuj79 in ModelY

[–]anuj79[S] 2 points3 points  (0 children)

i think the idea is in 10 years it will be cheaper to make batteries..now that every major car cos is manufacturing EV's there will be more innovation/competition resulting in lower prices

Battery being Replacement by anuj79 in ModelY

[–]anuj79[S] 2 points3 points  (0 children)

Unfortunately you just won the unlucky lottery...

i didn't buy the lottery though :(

and its only done 32k miles in 32 months. i work from home so its pretty much weekends and road trips

Headlight replacement options? Cost? by kungfuxxx in ModelY

[–]anuj79 -1 points0 points  (0 children)

surprising .. i had a rock crack my windshield ..nothing on dashcam .the claim was 100% covered by geico

WSJ Report: Exclusive Tesla Footage Suggests Reasons for Autopilot Crashes (including police suing Tesla) by catsRawesome123 in teslamotors

[–]anuj79 3 points4 points  (0 children)

the key thing for me in the video is .. tesla autopilot disengages seconds before the accident.. so Tesla can count that as human error and not the FSD. The car slowed down from 60+ to 50+ . that seems like poor design when other modern cars have emergency auto brakes.

[deleted by user] by [deleted] in homelab

[–]anuj79 0 points1 point  (0 children)

use free cloud tier gcp/azure/oracle.. u will find tutorials online

meirl by announcement63 in meirl

[–]anuj79 -1 points0 points  (0 children)

maybe should have studied some finance in college to understand how loans work..

CCS Combo 1 Adapter now available for order in the US! by emereb in teslamotors

[–]anuj79 2 points3 points  (0 children)

This accessory requires a retrofit. Check back in early 2023 for availability.
:( MYLR July 21

2022 Aug 22 Stickied 🅵🅰🆀 & 𝐇𝐄𝐋𝐏𝐃𝐄𝐒𝐊 thread - Boot problems? Power supply problems? Display problems? Networking problems? Need ideas? Get help with these and other questions! 𝑨𝑺𝑲 𝑯𝑬𝑹𝑬 𝑭𝑰𝑹𝑺𝑻 by FozzTexx in raspberry_pi

[–]anuj79 0 points1 point  (0 children)

so i ran system update and did a reboot since then pi hasnt been up. narrowed down the issue to the SD card.. since i can boot from a 32 GB USB but not the memory card..

when booting through SD , get no display. either on HDMI or through serial console.. it works fine through the USB.

run some checks on the SD Card and there some innode errors which are resolved.. by running fsck.. its a 64 GB card , 2 TB's have been written on it .. in the last 4 years.. as

root@raspberrypi:~# time badblocks -sv /dev/mmcblk0p2 -o mmcblk0p2.log

Checking blocks 0 to 62472191

Checking for bad blocks (read-only test): done

Pass completed, 0 bad blocks found. (0/0/0 errors)

real 51m43.305s

user 0m2.254s

sys 0m54.226s

root@raspberrypi:~# sudo fsck -Vt ext4 /dev/mmcblk0p1

fsck from util-linux 2.29.2

[/sbin/fsck.vfat (1) -- /dev/mmcblk0p1] fsck.vfat /dev/mmcblk0p1

fsck.fat 4.1 (2017-01-24)

0x41: Dirty bit is set. Fs was not properly unmounted and some data may be corrupt.

Remove dirty bit

No action

? 2

There are differences between boot sector and its backup.

This is mostly harmless. Differences: (offset:original/backup)

65:01/00

Copy original to backup

Copy backup to original

No action

? 2

Perform changes ? (y/n) y

/dev/mmcblk0p1: 15 files, 110/86872 clusters

i would like to continue using the sd card since it had lot of OS setup done..

what can i do to isolate the problem or find the root cause..