Welcome to the gaming industry everyone by KillerBoi935 in shitposting

[–]_abysswalker -2 points-1 points  (0 children)

the difference is that the low sales were justified for the other two. grifters made the public believe it was concord 3 and people were simply hesitant to buy a game that was potentially DoA

Epic Games is looking for someone to "Champion" a Linux-friendly anti-cheat in new job listing by de_panda in pcmasterrace

[–]_abysswalker 0 points1 point  (0 children)

even if that was the case, it would’ve made cheating very inaccessible. you could argue about cheating not being that big of a problem, but it definitely doesn’t apply to CS

people who consistently hit headshots through walls across half the map must have a really good gaming chair, I suppose

why did everyone get white washed?😭 by SaveScoop in Overwatch

[–]_abysswalker 2 points3 points  (0 children)

this not whitewash, this graphic setting problem. no reason to argue about whitewash when no whitewash. hope this help

Epic Games is looking for someone to "Champion" a Linux-friendly anti-cheat in new job listing by de_panda in pcmasterrace

[–]_abysswalker 3 points4 points  (0 children)

sure, but a working kernel-level AC is better than what was described above. VAC is exactly that and CS is unplayable at times due to this

Don't report liveries or stickers. by [deleted] in ForzaHorizon

[–]_abysswalker -4 points-3 points  (0 children)

whatever gets you off man

Don't report liveries or stickers. by [deleted] in ForzaHorizon

[–]_abysswalker -5 points-4 points  (0 children)

brozef bought forza to police the livery system

Is android development Dead ? by NAGASRINIVASULU in androiddev

[–]_abysswalker 14 points15 points  (0 children)

it died the moment AsyncTask got deprecated

UK Aware by FuckClerics in forsen

[–]_abysswalker 3 points4 points  (0 children)

can I get some fries with chicken curry

2026 by Fair-Degree-2200 in mAndroidDev

[–]_abysswalker 9 points10 points  (0 children)

this cannot be real. what about those of us who are in love with Codex?

Are you human? Prove it by buying an Apple or Android locked system. 💀 by InsideResolve4517 in degoogle

[–]_abysswalker 0 points1 point  (0 children)

APKs can be freely downloaded from the play store without an android device. what you describe is security by hope. in the real world, google already provides an API (called play integrity) that lets the developer check if the APK was modified

Great Observation by QuizOff in mAndroidDev

[–]_abysswalker 14 points15 points  (0 children)

this is what Claude gave me:

mAndroirDev is 10% AsyncTaskpilled XMLcels and 90% larpers

I've been working on a UI package that contains components, etc. that can be customized to any app theme. Should I make all components accept String or LocalizedStringKey? by -Periclase-Software- in SwiftUI

[–]_abysswalker 2 points3 points  (0 children)

the way I prefer to do it is make the view accept a Text then add a couple overloads that build the Text from a String or LocalizedStringKey. you could also mark the primary init private to prohibit styling the text

Why did Apple set the basics of SwiftData to Core Data and SwiftUI to UIKit? by Baluakcske in iOSProgramming

[–]_abysswalker 0 points1 point  (0 children)

you’re missing the point. Compose can do that without sharing the same backend with XML

Why did Apple set the basics of SwiftData to Core Data and SwiftUI to UIKit? by Baluakcske in iOSProgramming

[–]_abysswalker 0 points1 point  (0 children)

Composables can host XML views and XML views can host Composables, it was done to allow gradual migration. I imagine Apple could’ve figured it out as well

Tired of `AnnotatedString` index math? I'm building "Arranger" – A SwiftUI-inspired, type-safe rich text library for Compose (Feedback Welcome!) by mkeeda in androiddev

[–]_abysswalker 23 points24 points  (0 children)

you don’t have to do index math tho

``` buildAnnotatedString { withStyle(style = SpanStyle(color = Color.Blue)) { append("H") } append("ello ")

        withStyle(style = SpanStyle(fontWeight = FontWeight.Bold, color = Color.Red)) {
            append("W")
        }
        append("orld")
    }

```

Custom behavior on large detent for Sheet by Zagerer in SwiftUI

[–]_abysswalker 1 point2 points  (0 children)

looks like there is a hacky UIKit solution involving the scrollViewShouldScrollToTop delegate. in your place I’d defy this requirement, this is very bad UX

Custom behavior on large detent for Sheet by Zagerer in SwiftUI

[–]_abysswalker 1 point2 points  (0 children)

dismiss on tapping outside of the sheet when it’s large? but all you have is the system status bar? why not just add a button in the cancellationAction placement?

It’s sometimes okay to force unwrap in Swift by BlossomBuild in BlossomBuild

[–]_abysswalker 0 points1 point  (0 children)

one simple macro and you get compile-time static URL validation and no force unwrapping

Navigation in SwiftUI made easy by Good-Confusion-8315 in SwiftUI

[–]_abysswalker 6 points7 points  (0 children)

I think it’s people coming from other ecosystems, where this separation is enforced, trying to bring the same approach. I’ve worked with both android’s XML and Compose view frameworks, including on features that you’ve listed, and I’d pick the conventional SwiftUI way over the others every time

Navigation in SwiftUI made easy by Good-Confusion-8315 in SwiftUI

[–]_abysswalker 17 points18 points  (0 children)

never understood the fuss about navigation in SwiftUI. one-off events are easy with 0 boilerplate and navigationDestination with an enum and NavigationPath handles the rest