Live data from Hacker News

I think my BBQ just offered to be my default browser?

twitter.com

51–60 of 253 posts

Re: I think my BBQ just offered to be my default browser?

#52
post #48

Earlier quoted context omitted.

This is a bug in the app, I don't see how it is Android's fault.

tl;dr: what bug, or even what kind of bug? "The app" does not provide the share intent panel functionality, the framework does, and even if there was some way in which an app could be thought to be to blame, with what permission would it be inserting its resources in a particular spot in the panel?

The app declared itself to be a web browser so the OS asked the user if they wanted to use this new browser.

Re: I think my BBQ just offered to be my default browser?

#53

Earlier quoted context omitted.

I saw from another thread that this is actually for the temperature of a meat thermometer, that you can constantly monitor and without having to open the grill (which is undesirable). So actually not a crock of shit, and pretty useful if you're grilling/smoking over long periods of time before/during a big party or something. Not all grilling is quick searing. Sometimes new features aren't just gimmicks, you know?

a guage. On the bbq lid. No, i can't check it while i sit inside, this is true, there is, however a very good argument that says, maybe i shouldn't actually be inside while the bbq is on though.

There's a barbecue recipe guy I like, big proponent of leave-in thermometers (the kind with leads that snake outside the barbecue). He likes to say that the in-lid thermometers are just fine, provided you're planning to eat the lid.

I still probably wouldn't use an IoT one, though.

Re: I think my BBQ just offered to be my default browser?

#54
post #45

Earlier quoted context omitted.

a guage. On the bbq lid. No, i can't check it while i sit inside, this is true, there is, however a very good argument that says, maybe i shouldn't actually be inside while the bbq is on though.

Not the grill temp... the meat temp.

Connecting the thermometer to a gauge could support either grill or meat the same way a (now-too-many-moving-parts) iot device would.

Re: I think my BBQ just offered to be my default browser?

#55

Earlier quoted context omitted.

I saw from another thread that this is actually for the temperature of a meat thermometer, that you can constantly monitor and without having to open the grill (which is undesirable). So actually not a crock of shit, and pretty useful if you're grilling/smoking over long periods of time before/during a big party or something. Not all grilling is quick searing. Sometimes new features aren't just gimmicks, you know?

a guage. On the bbq lid. No, i can't check it while i sit inside, this is true, there is, however a very good argument that says, maybe i shouldn't actually be inside while the bbq is on though.

The temperature gauge on the lid is a terrible judge of what the actual air temperature is inside your grill. It's often low quality and not in a proper placement for your indirect heat. Depending on placement, it can be off by more than 100 degrees F

Re: I think my BBQ just offered to be my default browser?

#56

Earlier quoted context omitted.

Lan accessible devices can be amazing. Automatic on and off of various devices and removal of crap proprietary controllers and apps has made many things much better. Home Assistant running in Docker on a Synology 918 is easily the best tech I have every bought.

> Automatic on and off of various devices and removal of crap proprietary controllers and apps has made many things much better Off-hand I'd think for things like a grill I'd want this to be handled at the power strip level. Normally a grill, like a weber grill, is just a piece of metal and will last until you wear it out (even then it's mostly the flimsy legs that fail). If you add internet connectivity, the expecte…

The annoying thing is that I can’t ever seem to find power strips with individually addressable outlets.

Not even being picky and sticking with an open protocol like ptpp but any kind of internet controllable power strip. All I can find are single outlets at ~$25 a piece.

Re: I think my BBQ just offered to be my default browser?

#57
post #8

Android is such a drag sometimes. Between mystery quirks like this, where I'm sure someone who has been making Android apps for 6 years will be able to explain it, and things like the absolute inability to override the order of items in the sharing panel[1], such that Android will routinely topline sharing to a contact you got one text message from three years ago. "F.U., that's why" is the simplest conclusion I can…

Yeah, the top suggestion for me to share content with is my boss's boss, whom I've directly emailed about three times in the 1.5 years I've worked at this place.

Re: I think my BBQ just offered to be my default browser?

#58

Earlier quoted context omitted.

a guage. On the bbq lid. No, i can't check it while i sit inside, this is true, there is, however a very good argument that says, maybe i shouldn't actually be inside while the bbq is on though.

There's a barbecue recipe guy I like, big proponent of leave-in thermometers (the kind with leads that snake outside the barbecue). He likes to say that the in-lid thermometers are just fine, provided you're planning to eat the lid. I still probably wouldn't use an IoT one, though.

i'm gonna level with you here, i've never eaten meat in my life, so am out of my comfort zone here, but i can't help but feel from reading this that the HN crowd have a propensity for over-engineering that is coming to the fore here.

Fire, knives and an apron with a pithy slogan - c'mon, how hard can it be?

Re: I think my BBQ just offered to be my default browser?

#59
post #45

Earlier quoted context omitted.

a guage. On the bbq lid. No, i can't check it while i sit inside, this is true, there is, however a very good argument that says, maybe i shouldn't actually be inside while the bbq is on though.

Not the grill temp... the meat temp.

A meat gauge connected to the thermometer on the lid then.

This whole attitude to cooking is also weird. Cooking is in large part experimenting, seeing what works and what doesn't, learning and iterating. Sometimes the results will be bad, often they'll be sub-optimal but the variance is part of what makes it and we lose something by trying to turn it into an exact science. If you want something precisely timed and always the same I suggest McDonalds.

Re: I think my BBQ just offered to be my default browser?

#60
For those curious about the technical details here, here's a dump of the iGrill Android manifest (it's not XML because Android APKs contain a binary manifest): https://pastebin.com/fwbJ9TjD

It looks like this is the culprit:

    E: activity (line=48)
        A: android:theme(0x01010000)=@0x7f110149
        A: android:name(0x01010003)="com.weber.igrill.pages.splash.SplashActivity" (Raw: "com.weber.igrill.pages.splash.SplashActivity")
        A: android:screenOrientation(0x0101001e)=(type 0x10)0x1
        E: intent-filter (line=52)
          E: action (line=53)
            A: android:name(0x01010003)="android.intent.action.VIEW" (Raw: "android.intent.action.VIEW")
          E: category (line=55)
            A: android:name(0x01010003)="android.intent.category.BROWSABLE" (Raw: "android.intent.category.BROWSABLE")
          E: data (line=57)
            A: android:scheme(0x01010027)="http" (Raw: "http")
This registers an intent filter for all HTTP (but not HTTPS) URLs. I would expect it to require a DEFAULT category though, not sure what happens when that's left out.
Post reply on HN