maffe
maffe
> Would it be simpler to simply change your SQL to emit an array? > ```select id, array[server1, server2] from servers...``` That looks great, but it seems our DBMS (Sybase...
I’ve seen the `sleep` call in proposed solutions, but I don’t want to introduce arbitrary delays, in my tests it worked without it.
I tried that, but it doesn’t affect the media keys. It toggles between specific and more generic events for some keys, for example, left Ctrl key generates `Keyboard.LCtrl` or `Keyboard.Ctrl`...
> I never tried it, but maybe you can get an event for them using the HID plugin. Interesting, with the HID plugin I get events for the media keys....
> However, you can maybe work around it with two macros; macro one is triggered my the shift key and enables macro two, macro two is triggered by your volume...
I think your local Maven installation queries Central only once a day for known artifacts. Try deleting the data in your local repository.
To fix this, [`org.eclipse.persistence.internal.jpa.modelgen.visitors.ElementVisitor`](https://github.com/eclipse-ee4j/eclipselink/blob/master/jpa/org.eclipse.persistence.jpa.modelgen/src/main/java/org/eclipse/persistence/internal/jpa/modelgen/visitors/ElementVisitor.java) has to override the default implementation of [`visitRecordComponent(RecordComponentElement e, P p)`](https://docs.oracle.com/en/java/javase/16/docs/api/java.compiler/javax/lang/model/element/ElementVisitor.html#visitRecordComponent(javax.lang.model.element.RecordComponentElement,P)). As a first step, I think it should suffice to simply `return null;`. This should...
> I also realized that if someone is deploying their own wireguard, they might as well implement DIY blocking on the server, using the same lists and strategy you use....
You can build a very basic API to send commands from one container to another without the need for `/var/run/docker.sock` using Ncat and GNU sed, see [this StackOverflow answer](https://stackoverflow.com/questions/59035543/how-to-execute-command-from-one-docker-container-to-another/78123322#78123322).
As a workaround, I tried using scripts (both `.cmd` and `.sh` for Git Bash) which change the working directory before running `klink.exe`, but with that approach `Ctrl+C` stops the script,...