~whynothugo

The Netherlands

https://whynothugo.nl

Trackers

~whynothugo/vdirsyncer-rs

Last active 13 days ago

~whynothugo/dotfiles

Last active 3 months ago

~whynothugo/shotman

Last active 4 months ago

~whynothugo/lsp_lines.nvim

Last active 4 months ago

~whynothugo/xendmail

Last active 1 year, 3 months ago

~whynothugo/systemd-lock-handler

Last active 1 year, 5 months ago

~whynothugo/docker-makepkg

Last active 1 year, 7 months ago

~whynothugo/clipmon

Last active 1 year, 8 months ago

~whynothugo/wdisplays-ng

Last active 2 years ago

~whynothugo/himitsu-mutt

Last active 2 years ago
View more

#72 Protection during collection reconfiguration 13 days ago

Comment by ~whynothugo on ~whynothugo/vdirsyncer-rs

#97 Use a default value for status_path 13 days ago

Comment by ~whynothugo on ~whynothugo/vdirsyncer-rs

Even with the above, we should probably only use a default if the default configuration path was used, to avoid accidental mix-ups.

#105 Flush stale collection mappings from the status DB 13 days ago

Ticket created by ~whynothugo on ~whynothugo/vdirsyncer-rs

When creating a plan, find any stale mappings and add actions to flush them.

#72 Protection during collection reconfiguration 13 days ago

Comment by ~whynothugo on ~whynothugo/vdirsyncer-rs

Hugo Osvaldo Barrera referenced this ticket in commit 92f2c19.

REPORTED RESOLVED FIXED

#101 Too slow in splitting webcal into iCalendar files 15 days ago

Comment by ~whynothugo on ~whynothugo/vdirsyncer-rs

Thanks for reporting this, it was a silly oversight.

#101 Too slow in splitting webcal into iCalendar files 15 days ago

Comment by ~whynothugo on ~whynothugo/vdirsyncer-rs

Hugo Osvaldo Barrera referenced this ticket in commit a8b9461.

REPORTED RESOLVED FIXED

#101 Too slow in splitting webcal into iCalendar files 15 days ago

Comment by ~whynothugo on ~whynothugo/vdirsyncer-rs

I have a fix, will push it later today / tomorrow.

#101 Too slow in splitting webcal into iCalendar files 15 days ago

Comment by ~whynothugo on ~whynothugo/vdirsyncer-rs

I found out the issue: when planning, we use get_many_items to fetch all items in a single HTTP request.

When actually executing the plan, items are fetched one by one, which results in one HTTP request for each item (but all requests re-fetch the same file).

I should keep the fetched data after planning and avoid re-fetching.

#101 Too slow in splitting webcal into iCalendar files 15 days ago

0:bug added by ~whynothugo on ~whynothugo/vdirsyncer-rs

#101 Too slow in splitting webcal into iCalendar files 15 days ago

Comment by ~whynothugo on ~whynothugo/vdirsyncer-rs

You're not using debug builds (which is the default, right?)