mirabilos
mirabilos
> my honest answer is that I don't really see a point of using Simplebar in 2025 (or any other custom scrollbar libraries). I think most browser/OS now support scrollbar...
Almost ;-) > It up to the webapps developers to decide whether the app renders custom or native scrollbars It very much is not. This is an accessibility issue.
> Please visit the following pages and confirm the expected behavior: > > - https://kingsora.github.io/OverlayScrollbars/ In your case you should see only the native system scrollbars here For the few...
Weāre all standing on the shoulders of giants. Iāll have to see when I can invest some more (work) time into this, but so far itās working well, thanks for...
Hugo dixit: >The date for each event is included with: > > khal list --json=title --json start-date Is that not included in --json all? The start date is NOT necessarily...
PoC (definitely not PR-worthy, inlines Unicode): ``` --- khalendar/event.py~ 2025-08-12 17:35:27.202768626 +0200 +++ khalendar/event.py 2025-08-12 17:38:21.466616269 +0200 @@ -706,6 +706,13 @@ else: attributes['start-end-time-style'] = '' + attributes['start-end-time-style-indented'] = attributes['start-end-time-style'] +...
PoC for the line wrapping (I didnāt add the option because I donāt have the time to learn about `click` right now, but if you like my PoCs I can...
I guess one alternative would be to output to JSON and then format that myself.
(ignore the above spam comment from a scam account) Even within Python3, the escaped form is emitted: ``` >>> us = b"\xF0\x9F\x90\x88".decode("UTF-8") >>> us 'š' >>> print(json.dumps(us)) "\ud83d\udc08" ``` The...
Albirew dixit: >On this example, data are from a csv with values taken every 15mn and >rollperiod is set at 90, which is approximately a day (24*4=96 datas a >day)....