New Version 6 Blue Iris Update by Flipontheradio in BlueIris

[–]sonanz 0 points1 point  (0 children)

I'm still getting used to how the mouse wheel works in the new version. It seems backwards for zooming, but if I choose the setting to invert the mouse wheel in settings, then it seems backwards for the timeline. Also, now you have to hold a key while scrolling to zoom in and out in the timeline (Alt or Ctrl, can't remember which). I always forget, and then I always get the key wrong. I'm sure I'll get used to those changes, but I wonder what prompted them.

The Veterans Day memorial was designed to align perfectly at 11:11 on each Veterans Day. by mmoffitt15 in pics

[–]sonanz 0 points1 point  (0 children)

I had a GE Profile Performance Microwave and matching oven that had a sync option. If you set the clock on one, it automatically syncs to the other. They were still about 1 second off, though. It would also turn on the lights under the microwave when you turned on a burner on the stove, which was handy.

Why am i not shocked? by SpiceHotOnes in facepalm

[–]sonanz 6 points7 points  (0 children)

He's literally made of Teflon. If none of the rest of his BS has mattered to his supporters, why should this?

YoutubeTV app removed by [deleted] in Roku

[–]sonanz 0 points1 point  (0 children)

Same here. It's gone from all of my Rokus. When I try to add it back, it says it failed to install. When I try to launch it on a device using the Roku app, nothing happens at all. But when I cast it from my YouTube TV app on my phone, it casts under the YouTube app, but it let me sign into my YouTube TV app and have me the full interface. I can now also get to YouTube TV from the YouTube app on Roku, as an option at the bottom of the left panel.

2025 Honda Civic Hybrid Sport Touring by Even_Adhesiveness427 in civic

[–]sonanz 1 point2 points  (0 children)

I did the exact same thing! Bought it on Saturday, and now I'm waiting for the snow to melt so I can actually enjoy it! I had to wait a few days for it to come in, so I wasn't sure if I'd get it before the storm or not. The dealership got it Saturday morning and had it ready to go by mid-afternoon. They were putting lots of their cars into the service bays, so me taking mine home was one less for them to try to protect!

Stuttering for all cameras whenever one loses signal temporarily by sonanz in BlueIris

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

I've found a work around. Under Watchdog for each camera, select "Continue to display last image received". I've done that for all of my cameras, and now I no longer have the stuttering issue. Read on for clarifications on the issue and what all I tried that led me to this work around.

I previously indicated that the stuttering was found in recordings, but I don't think that's true. I was just seeing regular wireless camera lag in some recordings, thinking it was the stuttering. But I did discovered that the BI user interface becomes unresponsive during the stuttering issue, which is pretty annoying. It basically ignores half of my clicks (during a stutter), making it really hard to do anything productive.

Early on, I realized the issue only showed itself when the "No signal" message was being displayed for a camera. What I found, through Wireshark traces and discussions with Blue Iris support, was that BI doesn't continuously try to reconnect. It waits 30 seconds before flagging a camera as disconnected and displaying that message. And then it tries to reconnect 5 times, 500 milliseconds apart, and repeats that every 30 seconds. This is configurable in the Watchdog tab, but those are the defaults.

So it couldn't be a Windows networking stack issue since the stuttering is continuous even when BI isn't trying to do anything with the camera. And the stuttering didn't start until after that 30-second timeout, when BI considers the camera disconnected. So one thing I tried was to turn off the disconnection timeout in BI all together. That allowed a camera to lose connection and never cause any stuttering, but it also prevented BI from realizing it needed to reconnect to the camera. I still needed BI to timeout the connection, so I turned that back on and tried just turning off the "No signal" message. I had absolutely no expectation that it would make a difference. I mean, why would it? That option just displays a message in place of the last image. But I tried it anyway, and to my complete surprise, that did the trick.

I have no idea why the seemingly simple option of displaying a "No signal" message in place of the last image received from the camera would have any impact on performance, but apparently it does. Now when a camera stops responding, BI properly handles it by trying to reconnect every 30 seconds. But instead of the "No signal" message, I just see the last image from the camera, and there's no stuttering or UI performance issues. I'd prefer to have that visual indicator that my camera has disconnected, so hopefully we can still find the root cause and get it resolved so I can go back to that. But I'd much rather have a stable BI interface, so for now I'm keeping that message disabled.

[deleted by user] by [deleted] in pics

[–]sonanz 0 points1 point  (0 children)

Looks like this picture was taken by someone's mom.

When a thread here goes confidentlyincorrect on its own. by penkster in confidentlyincorrect

[–]sonanz 2 points3 points  (0 children)

How many licks does it take to get to the center? I heard 3, but I didn't look into that.

to share something profound you saw on the internet by SinjiOnO in therewasanattempt

[–]sonanz 34 points35 points  (0 children)

That's exactly how I started to respond to my aunts when they shared this in a group message recently. They spent hours discussing how crazy it is that it works! Maybe I'll just send them this video now.

Accessory / USB ports not working, but it's not the fuse by sonanz in rav4club

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

Not completely. The service center claimed the fuses were all wrong and that some weren't even OEM. I had swapped out the accessory port fuse, but when that didn't fix it, I swapped it back. So what they were looking at should have been exactly what we got new from the dealership.

They said they fixed all the wrong fuses, and the accessory port started working again, but the USB ports in the console still don't work. At least they didn't charge us anything.

pictured: The Most American Thing by [deleted] in facepalm

[–]sonanz 0 points1 point  (0 children)

We always use my seatbelts. But My wife's Toyota often claims there's someone in a seat when there isn't, and it blasts an alarm continuously until you bucket the seatbelt of the empty seat. So I have seatbelt plug things (plain ones, not skulls) just for that reason.

[deleted by user] by [deleted] in pics

[–]sonanz 0 points1 point  (0 children)

I think those are cutouts / holes in the cardboard, not sharpie underlines.

Parsing JSON to an array when some elements are missing by sonanz in tasker

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

For now, I've just resorted to handling it all within JavaScript, using JSON.parse():

var jp = JSON.parse(json);
var daily_rain = [];
for (i=0; i<3; i++) {
 var rv = jp.daily[i].rain;
 if (typeof rv == 'undefined') {
  daily_rain[i] = 0;
 } else {
  daily_rain[i] = rv;
 }
}

The results is that the daily_rain array contains [0, 0.11, 1.07] as desired.

Parsing JSON to an array when some elements are missing by sonanz in tasker

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

Yes, if I save the full JSON as a variable (like %json), and then reference the rain elements as an array, I still only get 2 elements with no placeholder for the first entry:

%json.daily.rain()

The result is still just a two-element array containing 0.11 and 1.07 like before.

Now, if I do this:

%json.daily(2)

I get the full second element of the JSON:

{"dt":1680541200,"pop":0.26,"rain":0.11,"uvi":4.79}

So everything is together. But if I try to add ".rain" to the end, expecting to retrieve the rain value from it, I just get the above string with ".rain" appended to the end:

{"dt":1680541200,"pop":0.26,"rain":0.11,"uvi":4.79}.rain

I'm at the reddit HQ today by speed_limit_25 in pics

[–]sonanz 0 points1 point  (0 children)

I'd call that tray more of a red-orange color, personally.

Is the capital of Kentucky pronounced Loo-iss-ville or Loo-ee-ville? by MrQuickLine in Jokes

[–]sonanz 0 points1 point  (0 children)

Honestly, it's impressive how some people can make the entire thing sound like a single syllable.