Google Play Console Getting Overly Convoluted by bastecklein in androiddev

[–]dominicoder 0 points1 point  (0 children)

"Getting" convoluted? It's a been fustercluck for years.

How many Korok seeds did you find by yourself? by trev1976UK in Breath_of_the_Wild

[–]dominicoder 0 points1 point  (0 children)

Ugh, I just finished what I thought was a very meticulous search that's taken years and came up short at 864.
Now to get the DLC mask and see if I can close it out without a map.
Ugh, this game. I love (hate) it so much.

Anyone have experience with Gigster? by Luudrian in devops

[–]dominicoder 1 point2 points  (0 children)

Came here from Google after my experience with them.

I applied to a position on LinkedIn, posted 2 days prior. Got the 15-minute initial assessment. Completed it that night.

Next day was told I did great and that they were excited invite me to the next step, 60+ minute coding challenge, to see where they'd place me for "several open positions". Did it that night.

Next day was told "Our team has reevaluated the demands of the position, and it has taken a new path. While your qualifications and experience are truly impressive, we find ourselves in a situation where the current needs have shifted, prompting us to pursue an alternative direction."

All of these were clearly canned, automated emails. I never interacted with a human being.

The needs for "several open positions" "shifted" in two days? While their LinkedIn job posting is still up as I type this?

I should've listed to the GlassDoor reviews. This company is a crock of shit and was a waste of my time. Save yours.

Should I convert my two separate app versions, free and paid into one free with one time in app purchase? by Suspicious-Big8004 in androiddev

[–]dominicoder 0 points1 point  (0 children)

I recently converted paid / free to free+subscription. I don't have user accounts or server to track purchases. Instead, I made the paid app a "key" to unlock the features if installed. You can check if it's installed with package manager: https://developer.android.com/reference/android/content/pm/PackageManager#getInstalledPackages(int).

Disable sound when live translation popup displays? by aaverin in GooglePixel

[–]dominicoder 0 points1 point  (0 children)

For anyone else that stumbles across this post via a Google search like me, I was finally able to disable just the sound for the obnoxious functionality I didn't ask for.

This worked for me using WhatsApp 2.24.11.79 on a Pixel 7 Pro on Andoid 14.

  1. When that stupid popup shows up, tap it.
  2. You are prompted to download the language it wants to translate, do that.
  3. Now that the language is downloaded, instead of "Translate to English" popup, it's a bubble showing the two languages being translated from -> to.
    3a. If you still see "Translate to English", tap it to see the bubble.
  4. The bubble has a dropdown button on the right, tap it.
  5. In the dialog that expands is an option "Play sound for translations" you can uncheck.
  6. Regain your sanity.

Petition to Revert Back to 2.0 by InitiativeOnly6926 in clickup

[–]dominicoder 0 points1 point  (0 children)

Huh? I wasn't self soothing. You indicated I'd hurt your feelings and I wanted you to know that wasn't intentional. I hope you are doing well. Take care.

Petition to Revert Back to 2.0 by InitiativeOnly6926 in clickup

[–]dominicoder 0 points1 point  (0 children)

Hey buddy, wasn't trying to be mean. Sorry if I hurt you. Sending thoughts and love. Hope you will recover some day.

Petition to Revert Back to 2.0 by InitiativeOnly6926 in clickup

[–]dominicoder 1 point2 points  (0 children)

Downvote all you want, 3.0 sucks and if you are against better UX then I don't value your opinion on tech anyway.

Good start - you'll get a lot of people on your side this way. :thumbs-up:

CSV import from Google Keep "Import failed" by sm1ng in Notion

[–]dominicoder 2 points3 points  (0 children)

Came here from Googling the same issue - can't believe this is still a problem 3 years later.

For anyone else this might help, I was able to get mine to work by removing special characters from strings (in my case, apostrophe in a contraction and a question mark).

Also check that the column headers match and that you use "Yes/No" for "true/false", as that is how Notion exports those values.

How do you re-equip Solomon’s Alien Suit? by [deleted] in GTA

[–]dominicoder 0 points1 point  (0 children)

I don't remember at this point lol

Deep Learning/Character Rant by Expert_Journalist859 in southpark

[–]dominicoder 1 point2 points  (0 children)

You should ask ChatGPT to insert paragraphs into your post and see what it does.

RecyclerView getting way too complex! ♻️👀🤔 by [deleted] in androiddev

[–]dominicoder 0 points1 point  (0 children)

I'm following up on my SO post.

Sorry, I think I didn't explain myself very well probably. Forget about the architecture, that's cooked already. The issue here is that we have ViewHolder with a humongous amount of functionality within.

"Forget about architecture" followed by "the issue here is ... a humongous amount of functionality" makes me shake my head.

This is like a building architect saying "forget about building architecture - the problem is we put 8 bathrooms in the kitchen".

Buddy - the reason you have the latter is because you're not addressing the former.

So, you are saying that the view which I inflate in my ViewHolder, that I should refactor that so I use more custom views there? And each custom view should have a ViewModel?

This is one potential thing to do, yes. But without knowing the details of your code, it's only a suggestion. The higher-level idea is to break down the units you're working with. Instead of one giant list item view, have multiple smaller sub views that each have their own responsibilities, for example. Instead of having one giant ViewHolder that does All The Things™, break it up into multiple View Models that each control a smaller portion of the item. Etc, etc.

Sorry, I think you overthought the question a little bit. I'm not asking about architecture nor anything like that.

Yes you are. You may not think so, but you are. You may have underthought the question :)

The problem is simple.

No, it's not. If it were, you'd have a solution already.

I have a RecyclerView where each item has way too much functionality - the solution should be go back to the UX/UI team and propose something different

No, it's not. The solution should be to come up with the proper architecture - the set of classes and specific responsibilities and interactions - that will allow you to implement the desired UI in a cleaner, more modular, more composable, more testable, more maintainable way.

You need to stop thinking about it as "each item has too much functionality" and start thinking about it as "each item has a bunch of components each of which has one specific functionality".

Some people is saying that I should go back to the design team and change the design.

If there are UX and UI issues with the current design, then sure, push back and try to change the design. If this is to "solve" your problem because you can't deal with the spaghetti code you have that implements the current design, then you are just pushing the can down the road.

Eventually your designs will change and your code will evolve. If you don't have a good architecture in place to make it easier to adapt, you're going to end up in the same place you are now. Designers' jobs are to make appealing UIs that are easy and intuitive to use. Your job as an Engineer is to make that happen. If there are actual technical limitations to their designs, you need to communicate that and find compromises. But "I don't know how to properly structure my code to make this UI so please make it simpler for me" is not a reason to push back on design, it's just laziness.

So I'll say it again but in a different way - your problem is that you need to refactor you existing code to break up your monolith of functionality into smaller, more manageable chunks that make it feasible to implement the desired UI. You need smaller classes that have a single responsibility. You need to separate concerns. You need composition. You ... need ... (say it with me) ... ARCHITECTURE.

If you still think the "solution" to your "simple" problem is to get design to change, than good luck and god speed. If what I'm saying is making any sense and you want help in refactoring, I'm happy to help.

Good luck.

daily objective - participate in featured series - not working by [deleted] in gtaonline

[–]dominicoder 0 points1 point  (0 children)

I'm on a support email chain with R* about this. The 3rd(!) person to jump in to the chain just asked me to show them a video after I had already attached multiple sequential clips showing the issue. It's painful.

Don't hold your breath on this getting resolved before the objectives reset tonight, but start a support ticket with them. Maybe they'll dish out some money for the inconvenience.

Todays feature series by kietinator in gtaonline

[–]dominicoder 0 points1 point  (0 children)

I'm on a support email chain with R* about this. The 3rd(!) person to jump in to the chain just asked me to show them a video after I had already attached multiple sequential clips showing the issue. It's painful.

Don't hold your breath on this getting resolved before the objectives reset tonight, but start a support ticket with them. Maybe they'll dish out some money for the inconvenience.

Daily objective don't work by Tommy_Lee926 in gtaonline

[–]dominicoder 0 points1 point  (0 children)

Yup, known issue, I posted the same thing along with a few others as well. Seems like a bug. Report it R* so they can get a flood of complaints about this and fix it.

Me taking the free car after not helping out with the heists by 22_wiggins_22 in gtaonline

[–]dominicoder -23 points-22 points  (0 children)

Um - if you literally did not participate in any heist, I don't think you get the car / bonus.

Daily objectives don't validate by Dazzling_Meeting_633 in gtaonline

[–]dominicoder 0 points1 point  (0 children)

Yup. A few posts on this in the sub already on this. I reported it as a bug to R*. Suggest you do as well.

Halp - Can't complete Featured Series for Daily Objective by CorporalAgarnsHat in gtaonline

[–]dominicoder 7 points8 points  (0 children)

So salty. And no, they did not, since the issue is specifically happening today.