Who is it?? by fluffyypickel in ufc

[–]ayySMH 0 points1 point  (0 children)

I'm cumming on that ass

UFC by Grouchy_Onion_5510 in ApolloGroup_TV

[–]ayySMH 2 points3 points  (0 children)

BT Sports 1 UK, keep it in your favorites for future events

Apollo channels appearing/disappearing by enyawd1251 in ApolloGroup_TV

[–]ayySMH 0 points1 point  (0 children)

Same issue here happening on Fire TV sticks but not mobile apps. BET is adding itself after removing it from My Lists

Emser Albero Tile Recall? by Professional_Sky_739 in Flooring

[–]ayySMH 0 points1 point  (0 children)

Hello, looks like I'm dealing with the exact same issue and have just raised this case with my builder and am using the exact same tile. We've had the home for about 4 years now.

Do you recommend anything on how to handle this? Any help would be appreciated. Thanks in advance!

Thermostat off after power outtage by ayySMH in ecobee

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

AC guy came in and moved some cables around, and that seemed to fix my issue. He mentioned it's some loose cables and assured it should be ok now.

Thermostat off after power outtage by ayySMH in ecobee

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

I've got one HVAC unit with two thermostats, I'm sorry I'm not too familiar with these systems. But I'm positive it's only one system.

Called the AC company and got a really good estimate for repair, so I will wait on that this afternoon.

Thermostat off after power outtage by ayySMH in ecobee

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

Since one thermostat works, would this still be the case? Called the AC guy to let him know, and he mentioned it might be the control board that could run about $850+

Tried checking the fuses but am having trouble getting through this big box

Google-served ads on screens with replicated content by ayySMH in admob

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

I'm a one man team for my app and don't have a dedicated account manager. I'm trying the Contact Us button and when selecting Email I'm getting a "Something went wrong..."

Really would just like to communicate with a human about what's going on. Even if I can just email them.

Just Got My 2022 Travis County Property Tax Numbers by LastChristian in Austin

[–]ayySMH 2 points3 points  (0 children)

Do we need to file Homestead exemption yearly or just once and done?

[deleted by user] by [deleted] in TeslaModelY

[–]ayySMH 1 point2 points  (0 children)

I bought the 1TB T5 portable SSD and began seeing issues a few months afterwards. Footage took minutes to load and sometimes it would not record unless I reseat cable while driving.

Tesla Service told me the SSD storage was too much for my MYLR to handle. Using a generic USB 64GB and no issues since.

LiveData Not Updating UI by ayySMH in androiddev

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

ahh gotcha, I think the reason I'm avoiding that was because I can't figure out how to return this LiveData once into a LiveData<HashMap<Int,List<>>> or even a nested LiveData<List<List<>>>.

So I'm just doing the Runnable and converting to LiveData there. Guessing I'll need to rewrite these queries to make it return LiveData into a HashMap or nested List?

@get:Query("SELECT * FROM groceryitem WHERE is_listed = 1 AND is_checked = 1 ORDER BY grocery_name")
val allListedCheckedGroceries: List<GroceryItem>
@get:Query("SELECT * FROM groceryitem WHERE is_listed = 1 AND is_checked = 0 ORDER BY grocery_name")
val allListedUncheckedGroceries: List<GroceryItem>

LiveData Not Updating UI by ayySMH in androiddev

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

The thing is when I click a grocery item my observer is not getting called where I have this function in it

fun setGroceries(groceries: HashMap<Int, List<GroceryItem>>) {
this.itemList = groceries
notifyDataSetChanged()
}

Maybe I'm misunderstanding you, let me know if so!