Jan Vladimir Mostert

Results 4 comments of Jan Vladimir Mostert

snake_case.split("_").map { it.capitalize() }.joinToString("") // outputs camelcase On 2020/10/11 21:59, Marc Knaup wrote: > > What's the use case for |uppercase/lowercaseFirst|? > > — > You are receiving this because...

Capitalize is quite useful when doing code translation and translating someone's variable names from snake case (Python to Kotlin translation or in one case, i parsed somebody's ANTLR file and...

I can reproduce this issue even with built-in pipes, this works and correctly uppercases the output: ``` This works: {{ 'blah1' | RandomPipe10 | uppercase }} ``` This throws the...

Simple script to snapshot and restore broken toolbox ``` podman container export dev -o dev.tar podman import dev.tar dev toolbox rm dev toolbox create --image dev ``` and then the...