tormodatt

Results 5 comments of tormodatt

similarly for macOS: ```zsh function zvm_vi_yank() { zvm_yank echo ${CUTBUFFER} | pbcopy zvm_exit_visual_mode } ``` (printf also works)

I'm having the same issue. When I run it as a non-daemon (`spotifyd --no-daemon`) when this happens, and I try to stop it with CTRL + C, it will still...

thanks for the quick reply! 😃 didn't know about jetty-examples. great resource! I forgot to mention that the issue is only when packaging it to a shaded uber jar. I...

full path: ``` 2024-11-01 08:42:46.053:WARN :oejes.ServletContextHandler:main: BaseResource jar:file:/Users/tormodatt/github/others/jetty/jetty-examples/embedded/ee10-uber-jar/target/ee10-uber-jar-12.0.x.jar!/webroot/ is aliased to jar:file:///Users/tormodatt/github/others/jetty/jetty-examples/embedded/ee10-uber-jar/target/ee10-uber-jar-12.0.x.jar!/webroot in oeje10s.ServletContextHandler@7c7b252e{ROOT,/,b=jar:file:/Users/tormodatt/github/others/jetty/jetty-examples/embedded/ee10-uber-jar/target/ee10-uber-jar-12.0.x.jar!/webroot/,a=STOPPED,h=oeje10s.ServletHandler@4d5d943d{STOPPED}}. May not be supported in future releases. 2024-11-01 08:42:46.081:WARN :oejsh.ContextHandler:main: Base Resource should not be an...

interesting. the ee10-uber-jar example already sends it as a java.net.URI to `resourceFactory.newResource` but maybe it is something with my local filesystem then. changed that example to `newClassLoaderResource`, which is what...