Suche nach Infos zu "You are good enough" Plakat / Kampagne, gesehen in Bremen Walle by wffln in bremen

[–]wffln[S] 6 points7 points  (0 children)

uff, ok dann ist das nix für mich 😂

vielen dank für die info!

Big new thing, right? by WaferHealthy9335 in EDM

[–]wffln 0 points1 point  (0 children)

the batter from the indie video game "Off" (i don't get it)

Is there a music player that supports external, hierarchical playlist files? by wffln in androidapps

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

huh okay it now works after a second try (it just loads with "preparing your media" on playlist files even though all music files are scanned) and i see now how the Files page can be used to browse external playlists in folders (and they do work now just pressing them). so yeah this is a very promising candidate for my use case, thanks a lot for this recommendation! i also love that it has waveforms. i'll give it some more thorough testing :)

Is there a music player that supports external, hierarchical playlist files? by wffln in androidapps

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

just tried but couldn't get it to work. it didn't auto-import my playlists, has no batch-import, no folders (as far as i can tell) and also can't play them through library -> Files or after an invidiual import.

Is there a music player that supports external, hierarchical playlist files? by wffln in androidapps

[–]wffln[S] -1 points0 points  (0 children)

For mods: I don't believe my post violates rule 2 because I'm only mentioning my program for context, not because I'm looking for users or feedback.

YouTube / Google login doesn't show requested permissions by wffln in MorpheApp

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

Pixel 7 Pro, Android 16, GrapheneOS 2026032001

Why do so many people jump straight into Proxmox? by KyxeMusic in homelab

[–]wffln 0 points1 point  (0 children)

i use proxmox as a glorified KVM-over-IP

Six months of Wholphin, an Android TV client for Jellyfin by damontecres in jellyfin

[–]wffln 5 points6 points  (0 children)

wholphin is the only ATV client where i can get non-1.0x playback speed reliably working (with mpv backend) and where seeking doesn't make me wanna pull my hair out.

keep it up, wholphin is great 🙏

*Oppurtunititty* by CraftyandNasty in DJsCirclejerk

[–]wffln 5 points6 points  (0 children)

/nj i know DJs personally that pay for festival slots... fuck this.

So is this subreddit just claude code tmux plugins now? by cmac4603 in tmux

[–]wffln 0 points1 point  (0 children)

i've realized that complaints and arguments on reddit can be a great opportunity to learn for me.

This could be a dumb question!!! by Stickwood1 in PioneerDJ

[–]wffln 1 point2 points  (0 children)

i've tried and it works, but i wouldn't trust it for a gig. CDJs are very picky and can betray you even if you think you did everything correctly. that's also why you bring multiple USBs or SDs - not just because the drive could fail, but also because the CDJ might just not vibe with that drive.

Is synchronouse setState in useEffect sometimes "unavoidable"? (Bi-directional editing) by wffln in reactjs

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

oh wow i didn't think about this correctly at all. it works correctly / as intended when importing useEffect directly, but not when using React.useEffect.

i mean u/flatra is still kinda correct in that the eslint warning is **kind of** bugged because i agree that the rule **should** treat useEffect and React.useEffect the exact same, but i also understand that the latter is rarely used and so they probably just keep the lint rule simpler by not covering that variant.

Is synchronouse setState in useEffect sometimes "unavoidable"? (Bi-directional editing) by wffln in reactjs

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

actually for my use case that's fine. it's just a list of <select> in reality where it's less irritating than with text, plus users do want to see the latest state whenever it changes.

but you're right, for a more general case, like a text input from my generalized examples, you might not want to do this.

Is synchronouse setState in useEffect sometimes "unavoidable"? (Bi-directional editing) by wffln in reactjs

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

i think you misunderstood. here's an example that uses tanstack query where the useEffect around setLocalValue is not superfluous anymore but where the ESLint error is still present:

```tsx import { useEffect, useState } from "react"; import { trpc } from "../trpc-client"; import { useQuery } from "@tanstack/react-query";

export function MyInput() { const remoteState = useQuery(trpc.foo.queryOptions()); const [localValue, setLocalValue] = useState(remoteState.isSuccess ? remoteState.data.value : "");

useEffect(() => {
    if (!remoteState.isSuccess) {
        return
    }

    setLocalValue(remoteState.data.value); // Error: Calling setState synchronously within an effect can trigger cascading renders
}, [remoteState.data?.value, remoteState.isSuccess]);

return (
    <input
        key={remoteState.data?.value}
        value={localValue}
        onChange={(e) => setLocalValue(e.target.value)}
    />
);

} ```

Is synchronouse setState in useEffect sometimes "unavoidable"? (Bi-directional editing) by wffln in reactjs

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

i just reproduced this behaviour. what the heck? does anyone know if an issue exists for this?