Re: Non-recurring Events in calendar(1)

2025-05-27 Thread Richard Ulmer
> 05/27/2025 test > May 27 test2 > > There a tab between the dates and the text. "May 27 2025" works, too. I'm afraid they don't work for me. While the dates in your suggested formats are displayed correctly this year, they are also displayed for next year (calenda -t 20260527). The

Non-recurring Events in calendar(1)

2025-05-27 Thread Richard Ulmer
Hi all, I've just discovered calendar(1) and am thinking about using it as an upgrade to my plain text ToDo list. The tool seems nice and simple, but I don't understand how non-recurring events can be represented in it. I see that I can define events that occur every week, every month or every year

Re: Sleep induces acpi0 interrupt storm

2023-10-25 Thread Richard Ulmer
Mike Larkin wrote: > check the lists; this was reported lots of times. I think it was some > thunderbolt related thing in the BIOS. Ah, I missed the right threads when searching previously. Apparently I wasn't specific enough. Now I found the message you mentioned: https://marc.info/?l=openbsd-mi

Sleep induces acpi0 interrupt storm

2023-10-25 Thread Richard Ulmer
Hi all, I've just set up a new T480 ThinkPad with OpenBSD 7.4. I have noticed that after sleeping (by closing and opening the lid of the laptop) my fan turns up and one of my CPU cores is fully loaded. `top -U -S root` and `systat vmstat` tell me, that acpi0 is generating a lot of interrupts, close

Re: less prints superfluous characters with --no-init

2022-11-18 Thread Richard Ulmer
"Richard Ulmer" wrote: > Hi all, > I find this behaviour unexpected: > > $ printf foo | less --no-init | xxd > : 666f 6f1b 5b41 1b5b 4b foo.[A.[K > > less prints ANSI escape codes for 'cursor up' and 'erase in line' at

less prints superfluous characters with --no-init

2022-11-18 Thread Richard Ulmer
Hi all, I find this behaviour unexpected: $ printf foo | less --no-init | xxd : 666f 6f1b 5b41 1b5b 4b foo.[A.[K less prints ANSI escape codes for 'cursor up' and 'erase in line' at the end of my message. Interestingly, when doing the same within tmux, the result is diff

Re: Many video frames dropped unless sound is muted

2022-10-28 Thread Richard Ulmer
Hi again, > As a side note: After upgrading from 7.0 to 7.1 I experienced a > significant increase in audio stutter. Sometimes (I think when a > "hiccup" became too big) YouTube would even pause a video on it's own or > mpd(1) would stop playback. As a workaround I increased the buffer size > with

Re: Many video frames dropped unless sound is muted

2022-10-23 Thread Richard Ulmer
Hi Maurice, Maurice McCarthy wrote: > I too have had poorer video performance too since 7.1 Not _certain > of the cause but since 7.1 one of my pair of 2-core cpu is always > offline. I suspect this may be to do with the deliberate removal of > hyper-threading support. (Yet this happened in 201

Weird file(1) behaviour with multiple matching tests

2020-12-25 Thread Richard Ulmer
#!/usr/bin/env a >15 string >\0 %s script text executable Greetings, Richard Ulmer

Re: athn on APU2

2020-06-06 Thread Richard Ulmer
> None of the clients gets more than cca 1.5MB/s from that, alone. > Is that to be expected with 11g? (Not that I expect the 54 Mbit/s) I faced the same problem with my new APU2 just yesterday and found more info here: https://marc.info/?l=openbsd-misc&m=158680303103003&w=2 It seems like 11a is r

Re: How do I set up a Wi-Fi access point (using APU2)?

2020-06-05 Thread Richard Ulmer
infoomatic wrote: > it seems you skipped the firewall part of the document you were > referring, you need NAT connections. Indeed I did, because I thought if I said `pass in log (all)`, all traffic would be allowed to pass. It seems like I have a lot to learn... With this pf.conf I can reach the i

How do I set up a Wi-Fi access point (using APU2)?

2020-06-05 Thread Richard Ulmer
subnet 192.168.3.0 netmask 255.255.255.0 { option routers 192.168.3.1; option domain-name-servers 192.168.178.1; range 192.168.3.20 192.168.3.100; } I'm an absolute noob when it comes to network configuration, so the problem is probably something really stupid, but I c

Re: less --no-init and multiline $PS1

2020-01-21 Thread Richard Ulmer
olution which doesn't violate any layers and came up with something much simpler: I will replace my less with a script similar to this: /usr/bin/less $@ for arg in "$@"; do test "$arg" = '--no-init' -o "$arg" = '-X' && tput up el && exit done Thanks for making me re-think the problem! Best regards, Richard Ulmer

less --no-init and multiline $PS1

2020-01-19 Thread Richard Ulmer
Hi, when using a $PS1, which has more than one line, `less --no-init` cuts of some lines at the top, when it quits. This is especially annyoing when using `git diff` and `git show`. For example, `echo "foo\nbar" | less --no-init --quit-if-one-screen` with a two-line $PS1 leads to terminal content l

Re: [sh] Single quote in comment withing subshell buggy

2019-12-14 Thread Richard Ulmer
Hi Matthew, I'm unable to judge the patch, but appreciate your quick fix. Thanks a lot! I'm looking forward to the next release, in which it is contained. I just occurred to me, that the problem also exists for ". Is this covered with your patch as well? Richard cho...@jtan.com w

[sh] Single quote in comment withing subshell buggy

2019-12-14 Thread Richard Ulmer
untered this as a real world problem in a project on GitHub [1]. With best regards, Richard Ulmer [1] https://github.com/mawww/kakoune/pull/2943

Re: 4GB RAM too little for Firefox?

2019-07-06 Thread Richard Ulmer
Hi Dumitru, Dumitru Moldovan wrote: > On Fri, Jul 05, 2019 at 01:25:10PM +0200, Richard Ulmer wrote: > >Hi all, > >after having Firefox running for some time (ca. 30min to 2h) my > >system seems to become slow. I get frequent freezes for several > >seconds, mpv i

4GB RAM too little for Firefox?

2019-07-05 Thread Richard Ulmer
idn't have this problem under Linux. Has anyone had similar experieces and noticed an improvement after a RAM upgrade? Greetings Richard Ulmer

Putting fifos in subshells into the background

2019-06-12 Thread Richard Ulmer
> /dev/null 2>&1 & printf 'testfifo' )" I can make it work for all the mentioned shells like this: mkfifo 'testfifo' cat "$( ( ( printf 'foo\n' > testfifo 2>&1 ) & ) > /dev/null 2>&1 printf 'testfifo