Tim Janik

Results 70 comments of Tim Janik

> If I replace the label with just the property number (like "42") the issue goes away. So maybe I need to shorten the labels like clap does. For this...

> Anklang currently has a way to specify that you want to use something other than 4/4 as time signature for your song. However, doing so doesn't have any visible...

> When using `audiowmark` to watermark an MP3 file, it successfully reads the MP3, adds the watermark but outputs the result as a WAV file, regardless of the file extension...

Ffmpeg-6 deprecated av_get_channel_layout() and related functions, ffmpeg-7 removed it. Since Arch runs ffmpeg-7 which breaks the Audiowmark build, PR #68 ports audiowmark over to the ffmpeg-7 API, this should also...

For the record, colocated repositories do not have this problem: ```sh ⮞ git clone [email protected]:apache/druid.git git-druid ⮞ cd git-druid/ && git show-ref | grep refs/tags | wc -l 503 ⮞...

> Just spent a couple min trying to repeatedly `jj undo` to go back through the op log until I remembered that it was just going back and forth :)...

In the meantime, I have updated the jj-fzf undo implementation following @jennings suggestion to use a marker instead of the (slightly involved) procedure I described earlier: - Each time Alt+Z...

> I've recently learned that the operation log is not necessarily linear. For example, `jj new --at-op=@-` will create a merge operation with two parent operations. Anybody have some thoughts...

I am frequently switching between repos on the desktop and laptop, which leads to divergent revision more often that I'd like. Ideally, pushing between the repos would not create divergent...

> > As things currently stand, fixing up an entire branch with divergent change IDs is prohibitively involved (in case you _not_ simply want to abandon the entire branch). >...