Kim Tore Jensen

Results 47 comments of Kim Tore Jensen

The design of this feature irks me, because I don't think the options should be so tightly coupled with MPD. Closing this five years after the fact. :man_shrugging:

@AlkaidChan I'm having the same issue, did you come up with a solution?

This is the data, simply a struct that can have its own datatype as children. ``` type Post struct { ID uuid.UUID Children []*Post Message *string } ``` Template code:...

Eventually, my program crashes: ``` runtime: goroutine stack exceeds 1000000000-byte limit runtime: sp=0xc072a80380 stack=[0xc072a80000, 0xc092a80000] fatal error: stack overflow runtime stack: runtime.throw({0xc3383f?, 0x1193d40?}) /usr/lib/go/src/runtime/panic.go:1047 +0x5d fp=0x7f8a5fffeca0 sp=0x7f8a5fffec70 pc=0x43993d runtime.newstack() /usr/lib/go/src/runtime/stack.go:1105...

@flosch did you have a chance to take a look at this, and perhaps reproduce? Recursion is a must for me here, I'd really rather not have to write a...

This is such a great project that has been useful to me for so many years, I really hope to see bullseye support soon. Cheers :+1:

I came here looking for alternating row colors and ultimately found this little CSS trick that solves my problem: ``` tr:nth-child(even) {background: #CCC} tr:nth-child(odd) {background: #FFF} ```