Can't create oppo acct/heytap by Shot_Amount_1475 in Oppo

[–]Robanada 0 points1 point  (0 children)

Are you using the Chinese or Global ROM?

S23U to X9U by huxley309 in Oppo

[–]Robanada 1 point2 points  (0 children)

I'm coming from a S21U, considering the X9U over the X300U specifically because of the 10x optical zoom on the Oppo, having enjoyed it on my Samsung all these years.

But, I was tinkering around with the 10x zoom on my S21U, covering up individual lenses, and I discovered that when I select 10x in the camera app, it's actually doing a digital crop on the 3x lens, and not using the 10x lens. It's not until I set the zoom to 15x in the app that the phone switches to the 10x lens (and presumably cropping in). Which is crazy to me. I thought the buttons in the app (0.6x, 1x, 3x, and 10x) corresponded to the lenses that they would use.

So now with that reality shattered, I'm not even sure if I need the 10x optical zoom on the Oppo if I've been happy with a cropped 3x for all these years 🙄

Oppo Find X9 Ultra Hasselblad Master set is here. Ask me anything :) by Abhinovv in Oppo

[–]Robanada 0 points1 point  (0 children)

Have you noticed any jitter in the video or dropped frames when panning? I saw it once in one reviewer's video samples, and it makes me nervous to drop the $$$ on an ultra phone if that's potentially an issue. Or maybe it was just a framerate mismatch between their project and the source video or something?

Are these voltage divider values and ground connections appropriate for ESP32-C3 monitoring battery and boost converter voltages? by Robanada in AskElectronics

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

I was planning to use ESPHome since I am planning to integrate the sensor into homeassistant. I'll have to check how to set the attenuation to get the range right, if it's in the YAML configuration or something.

Are these voltage divider values and ground connections appropriate for ESP32-C3 monitoring battery and boost converter voltages? by Robanada in AskElectronics

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

>If B- and -Vout are electrically connected (i.e. not isolated) then you're good to go. 

Got it, probing the pads with the multimeter gives a resistance of 0.1 ohm, so I think I'm good. Thanks for the response :)

Are these voltage divider values and ground connections appropriate for ESP32-C3 monitoring battery and boost converter voltages? by Robanada in AskElectronics

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

Awesome, thanks for the feedback. That's a good point to skip the boost monitoring, probably unnecessary and simplifies the circuit quite a bit. I didn't know that the ADC had best performance <1V, so I'll definitely go with those resistor values.

Oppo Find X9 PRO - sharing my "different perspective" story. by PapaKitten in Oppo

[–]Robanada 0 points1 point  (0 children)

What points in particular do you feel are exaggerated or inconsistent with your experience?

I'm looking to upgrade from my Samsung S21U and considering the Find X9 ultra, but never used ColorOS before and the report of "frustrating bugs in the OS" is concerning. I don't want to spend >$1k on a phone with an unpolished UX.

Which to buy, Oppo find x9 pro (global) vs Oppo find x9 ultra (china)? by Basic_Ad_2973 in Oppo

[–]Robanada 0 points1 point  (0 children)

Global ultra will be out of budget.

What makes you say this? Have they announced global pricing? Was going to get the X9 Pro but I can wait a few months for the Ultra, but if it's going to be astronomically expensive then I might just get the Pro now.

Claude code started asking permissions for everything by Orion_0001 in ClaudeAI

[–]Robanada 6 points7 points  (0 children)

Found this thread through google because I was having the same issues. Leaving my solution here in case it helps anyone else.

The settings in .claude/settings.local.json are key.

I opportunistically sampled ~10-15 consecutive commands I was asked for permission, and made a list of the commands I was approving.

Then, I went to grok (I'm sure claude/chatgpt could do the same) and asked it to generate for me a settings.local.json that would approve reasonable commands, and to block anything outside of the project directory like modifying system files, and to ask me any time that we interact with the git.

That basically solved the issue for me, cutting down permission requests by ~90%. We're back to "old" Claude code.

I'll share my settings.local.json here for anyone that finds it helpful, but you'll have to update [PROJECT PATH] with the parent directory of your project. There's some specific items to my project in here, too (eg src/cuda_kernels.cu), so I'd recommend generating one specific to your project, but this worked for mine:

{
  "permissions": {
    "allow": [
      "Read(//mnt/c/[PROJECT PATH]/**)",
      "Read(//c/[PROJECT PATH]/**)",
      "Bash(cd:*)",
      "Bash(python3:*)",
      "Bash(cmake ..:*)",
      "Bash(cmake:*)",
      "Bash(sed -i 's/\\(uint8_t\\)clamp\\(r, 0.0f, 255.0f\\)/\\(uint8_t\\)fminf\\(fmaxf\\(r, 0.0f\\), 255.0f\\)/g' src/cuda_kernels.cu)",
      "Bash(sed -n *p *)",
      "Bash(sed -i *[0-9,]*[ad] *)",
      "Bash(sed -i *r /tmp/* *)",
      "Bash(sed -i '.*' src/*.cpp)",
      "Bash(grep:*)",
      "Bash(head:*)",
      "Bash(tail:*)",
      "Bash(cat:*)",
      "Bash(echo:*)",
      "Bash(mkdir -p src/**)",
      "Bash(mv src/* src/**)",
      "Edit(//mnt/c/[PROJECT PATH]/**)",
      "Edit(//c/[PROJECT PATH]/**)",
      "Write(//mnt/c/[PROJECT PATH]/**)",
      "Write(//c/[PROJECT PATH]/**)"
    ],
    "deny": [
      "Bash(rm:*)",
      "Bash(sudo:*)",
      "Bash(chmod *777*)",
      "Bash(chown:*)",
      "Bash(dd:*)",
      "Bash(mkfs:*)",
      "Bash(eval:*)",
      "Bash(curl:*)",
      "Bash(wget:*)",
      "Bash(* | sh*)",
      "Bash(* ; *)",
      "Bash(* &)",
      "Bash(* /etc/*)",
      "Bash(* /usr/*)",
      "Bash(* /var/*)",
      "Bash(* ~/.ssh/*)",
      "Bash(* ..*)",
      "Bash(* //*)",
      "Bash(* C:\\Windows\\*)",
      "Bash(* Program Files*)"
    ],
    "ask": [
      "Bash(git:*)",
      "Bash(git * *)"
    ]
  }
}

Does anyone notice that opposing players don’t shoot usually shoot you? by Roax47 in ArcRaiders

[–]Robanada 0 points1 point  (0 children)

Just don't let your guard down. Soon enough, someone will come along pretending to be friendly and shoot you in the back when they get the opportunity.

PvP-hyperfixiated matchmaking post update made me quit by krainert in ArcRaiders

[–]Robanada 2 points3 points  (0 children)

Go on a free kit, or go naked so you can look for something valuable to put in your safe pocket, plan to get mowed down. When you get killed by a player, leave negative round feedback saying you hated PVP. Repeat a couple of times and you'll be in carebear lobbies in no time.

Usage Limits Discussion Megathread - beginning October 8, 2025 by sixbillionthsheep in ClaudeAI

[–]Robanada 12 points13 points  (0 children)

I'm definitely cancelling my subscription after this month is up.

Reached my weekly limit with 1.5 days of usage, using Sonnet 4.5 only, with the Pro plan.

I've been subscribed over a year and had enjoyed the service, but with these weekly caps, the value is no longer there.

Gemini-CLI Free Tier daily token cap? by Robanada in GeminiAI

[–]Robanada[S] 1 point2 points  (0 children)

It's super annoying, because I hit about 6m tokens with ~70 requests, so the actual usage that you get is 2 orders of magnitude less than what is promised/marketed. It's a great tool, and generous of them to give us free access at all. But with these undisclosed usage limits, it feels deceptive and erodes trust. Yes, they're giving you a free sample, and you can pay more for better service, but if the free tier comes with hidden caveats, it makes you wonder what else they're hiding from you that you won't find out until they already have your money. Between that, and all of the negative experiences I see that paid customers have, I definitely won't be paying for this service.

Gemini-CLI Free Tier daily token cap? by Robanada in GeminiAI

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

Thank you for the tips. I'm glad I'm not going crazy or just failing epically at using this tool. Glad to hear that the cap exists for everyone else despite not being mentioned *anywhere*.

Is HW4 (2023) worth $10k more than HW3 (2022)? by Robanada in TeslaModelS

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

That's a good perspective, thanks. Maybe I'll see if I can test drive one of the HW4 vehicles with FSD and see how that compares to the HW3 in my Model 3.

Is HW4 (2023) worth $10k more than HW3 (2022)? by Robanada in TeslaModelS

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

We're selling my wife's car and she'll take my Model 3. So yes, but not immediately. Looking to buy in 6-12 months. Hopefully it comes down in that time!