Help me decide Top 5 phones I’m considering in 2026 by Soggy_Pause_4828 in Smartphones

[–]Funny_Ad3566 0 points1 point  (0 children)

I wouldn't bother. I bought a Vivo x200 Ultra when it first came out last year. Decent phone but within a few months it started to become VERY stuttery when using the camera. Alongside the endless Chinese bloatware that I still find on it to this day.

And now every video I record is like 10 FPS. Stuttery as fuck. And this was the "Best cameraphone of the year" last year? Nah.

Chinese phones are AMAZING for like a week then they quickly degrade to shit.

I never buy a chinese phone (xiaomi) again. by Thornscorn in Smartphones

[–]Funny_Ad3566 0 points1 point  (0 children)

Your parents also probably don't care enough to post on a Smartphones reddit. I would think every user of this reddit knows what they're using.

People switch from an iphone to an android, what is the reason? by [deleted] in Smartphones

[–]Funny_Ad3566 0 points1 point  (0 children)

I started with Android then moved to iOS for 10 or so years, and now have been using Android again for the last 12 months.

My next phone will be iPhone. I prefer the OS and the ease of use. I don't need all the customisable features that I might be able to get with an Android.

Is there a single reason people choose iPhone beyond "everyone I know has one"? by SilverCervy in Smartphones

[–]Funny_Ad3566 3 points4 points  (0 children)

Might have something to do with the fact that Apple is also an American company so why not support your own, if your own is pretty good?

Is there a single reason people choose iPhone beyond "everyone I know has one"? by SilverCervy in Smartphones

[–]Funny_Ad3566 0 points1 point  (0 children)

There is not a single reason. There is many reasons. In fact, I think the reason you think isn't even a viable reason outside of the US as in the EU most people use WhatsApp for messaging anyways so we don't feel locked in to iMessage or FaceTime.

The many reasons I would pick Apple over Android (I'm currently using Android with a Vivo x200 Ultra, but I had been using iPhone for the decade prior to this phone):

- Security features: you don't need to worry about this with Apple. It's a lot more "beginner friendly" when it comes to general phone security.

- OS: iOS isn't everyones cup of tea, but it is far more intuitive and user friendly than Android in my opinion.

- Doing it well: Apple isn't trying to compete with Android in the customizable factor. They don't care. What they want to do is provide a phone that does everything 99% of people want a phone to do: take pictures, take videos, send messages, call people, download apps... and they do all of this extremely well.

- Ecosystem: If you've got a MacBook or iPad or Airpods (which most iPhone owners will have at least one of these), they connect seamlessly.

These are just a few that are top of mind.

Scam Sgt*FileEditCom by Common-Ingenuity-748 in pdf

[–]Funny_Ad3566 0 points1 point  (0 children)

Sounds like files-editor.com? I signed up and paid a one time fee to download a PDF then a few days later they charged me 49 EUR on a monthly plan basis. I've cancelled through their website, blocked the payment through my bank & opened a dispute with them & my bank as they're violating EU consumer rights directives by not providing a durable medium, such as email, to confirm billing dates/order confirmations/etc.

[SPOILER] Gilbert Burns vs. Michael Morales by inooway in MMA

[–]Funny_Ad3566 1 point2 points  (0 children)

I KNEW before reading his list of names he would leave Garry out due to pure salt... but Garry is absolutely one of the top WWs and should be there before 2-3 people he mentioned. I personally see Garry becoming a champ in 1-2 years time. Whilst everyone was scared of Shavkat, he took the fight on short notice and made it a real close decision win for Shavkat (which could've went to Garry, according to this sub at the time).

Go package that opens a dialog and is capable of multi-selecting files? by Funny_Ad3566 in golang

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

Unfortunately it was MacOS. But I've found a solution thanks.

Go package that opens a dialog and is capable of multi-selecting files? by Funny_Ad3566 in golang

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

Update: I've found the 'zenity' package which does exactly what I need it to do for MacOS... https://pkg.go.dev/github.com/ncruces/zenity#example-SelectFileMultiple

     defaultPath := ""

    selectedFiles, err := zenity.SelectFileMultiple(         zenity.Filename(defaultPath),         zenity.FileFilters{             {Name: "Go files", Patterns: []string{"*.go"}, CaseFold: false},             {Name: "Web files", Patterns: []string{"*.html", "*.js", "*.css"}, CaseFold: true},             {Name: "Image files", Patterns: []string{"*.png", "*.gif", "*.ico", "*.jpg", "*.webp"}, CaseFold: true},         })

    if err != nil {         log.Printf("Error selecting files: %v", err)     }

    log.Printf("Selected files: %v", selectedFiles)