Recent activity

Re: Pinging several sr.ht-container-compose patches 14 hours ago

From Hugo Osvaldo Barrera to ~whynothugo/public-inbox

 On Wed, 8 Oct 2025, at 16:24, Simon Martin wrote: > Hi, > > I'd like to ping a few patches I sent in the last few weeks, and that I > believe would be valuable to the community. > > Required for services to work @ master: > - https://lists.sr.ht/~whynothugo/public-inbox/patches/62026 > - https://lists.sr.ht/~whynothugo/public-inbox/patches/62231 > - https://lists.sr.ht/~whynothugo/public-inbox/patches/62385 > - https://lists.sr.ht/~whynothugo/public-inbox/patches/62631 > - https://lists.sr.ht/~whynothugo/public-inbox/patches/62635 >

Re: [PATCH sr.ht-container-compose v2] Setup adminer 14 hours ago

From Hugo Osvaldo Barrera to ~whynothugo/public-inbox

On 2025-06-05 07:01, Simon Martin wrote: > It's currently quite painful to access the database to peek / debug into > it, and it does not have to be this way. >  > This simply sets up adminer, that provides a web interface over the > Postgres database. >  I'd prefer to expose Postgres' port and allow any tool to connect to it from the host. -- Hugo

Re: [PATCH sr.ht-container-compose] Use unbuffered I/O for Python services 14 hours ago

From Hugo Osvaldo Barrera to ~whynothugo/public-inbox

On 2025-10-03 13:02, Simon Martin wrote: > We currently barely see any logs for Python services, because they log > to stdout, and writes there are buffered. >  > This changes them to unbuffered, and makes investigating Python services > actually possible. >  > Signed-off-by: Simon Martin <simon@nasilyan.com> > --- > compose.yaml | 2 ++ > 1 file changed, 2 insertions(+) >  > diff --git a/compose.yaml b/compose.yaml > index 20876500b542..f1ed250f4788 100644

Re: [PATCH] vstorage: Fix mime type: `CALENDAR` -> `ADDRESSBOOK` a day ago

From Hugo Osvaldo Barrera to ~whynothugo/vdirsyncer-devel

 On Thu, 9 Oct 2025, at 01:16, Jeremy Fleischman wrote: > Fastmail was rejecting pimsync's `PUT` requests with a HTTP 403 because > the request headers had `content-type: text/calendar` rather than the > expected `content-type: text/vcard`. > > Now things work! > --- > src/carddav.rs | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/src/carddav.rs b/src/carddav.rs > index 2f55f2b..633263a 100644 > --- a/src/carddav.rs

Re: [PATCH 1/2] himitsud: use hare-ev for main loop 2 days ago

From Hugo Osvaldo Barrera to ~sircmpwn/himitsu-devel

Okay, apparently all my testing was with /usr/bin/himitsud and this never worked. Sorry for the noise. On Wed, 8 Oct 2025, at 00:51, Hugo Osvaldo Barrera wrote: > Hang on, I seem to have broken this during a late refactor. > Will send an updated version later. > > On Wed, 8 Oct 2025, at 00:50, Hugo Osvaldo Barrera wrote: >> --- >> cmd/himitsud/client.ha | 37 +++++--- >> cmd/himitsud/cmd.ha | 1 - >> cmd/himitsud/main.ha | 51 +++++++---- >> cmd/himitsud/socket.ha | 194 ++++++++++++++++++----------------------- >> 4 files changed, 143 insertions(+), 140 deletions(-)

Re: [PATCH 1/2] himitsud: use hare-ev for main loop 2 days ago

From Hugo Osvaldo Barrera to ~sircmpwn/himitsu-devel

Hang on, I seem to have broken this during a late refactor. Will send an updated version later. On Wed, 8 Oct 2025, at 00:50, Hugo Osvaldo Barrera wrote: > --- > cmd/himitsud/client.ha | 37 +++++--- > cmd/himitsud/cmd.ha | 1 - > cmd/himitsud/main.ha | 51 +++++++---- > cmd/himitsud/socket.ha | 194 ++++++++++++++++++----------------------- > 4 files changed, 143 insertions(+), 140 deletions(-) > > diff --git a/cmd/himitsud/client.ha b/cmd/himitsud/client.ha > index c4afb16..e7556bc 100644 > --- a/cmd/himitsud/client.ha

[PATCH 2/2] Fix misleading error message 2 days ago

From Hugo Osvaldo Barrera to ~sircmpwn/himitsu-devel

--- cmd/himitsud/socket.ha | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/himitsud/socket.ha b/cmd/himitsud/socket.ha index 8b35c50..c7e75df 100644 --- a/cmd/himitsud/socket.ha +++ b/cmd/himitsud/socket.ha @@ -38,7 +38,7 @@ fn bind( ) (server | nomem | net::error | errors::error) = { const statedir = match (dirs::runtime()) { case let err: fs::error => fmt::fatalf("Unable to initialize socket: {}", fs::strerror(err)); fmt::fatalf("Unable to initialize runtime directory: {}", fs::strerror(err)); [message trimmed]

[PATCH 1/2] himitsud: use hare-ev for main loop 2 days ago

From Hugo Osvaldo Barrera to ~sircmpwn/himitsu-devel

--- cmd/himitsud/client.ha | 37 +++++--- cmd/himitsud/cmd.ha | 1 - cmd/himitsud/main.ha | 51 +++++++---- cmd/himitsud/socket.ha | 194 ++++++++++++++++++----------------------- 4 files changed, 143 insertions(+), 140 deletions(-) diff --git a/cmd/himitsud/client.ha b/cmd/himitsud/client.ha index c4afb16..e7556bc 100644 --- a/cmd/himitsud/client.ha +++ b/cmd/himitsud/client.ha @@ -1,11 +1,12 @@ use bytes; use encoding::utf8; [message trimmed]

[PATCH harelang.org 2/2] project-library: add hare-dbus 2 days ago

From Hugo Osvaldo Barrera to ~sircmpwn/hare-dev

--- content/project-library.md | 1 + 1 file changed, 1 insertion(+) diff --git a/content/project-library.md b/content/project-library.md index c09d7f6..9243526 100644 --- a/content/project-library.md +++ b/content/project-library.md @@ -94,6 +94,7 @@ free to submit your own by sending a patch to  ## IPC  * [~whynothugo/hare-dbus](https://sr.ht/~whynothugo/hare-dbus): D-Bus client implementation * [~bitfehler/hare-netlink](https://git.sr.ht/~bitfehler/hare-netlink): Native Hare access to the Linux netlink API [message trimmed]

[PATCH harelang.org 1/2] project-library: move netlink and sdnotify into IPC 2 days ago

From Hugo Osvaldo Barrera to ~sircmpwn/hare-dev

--- content/project-library.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/content/project-library.md b/content/project-library.md index 19b9dde..c09d7f6 100644 --- a/content/project-library.md +++ b/content/project-library.md @@ -92,6 +92,11 @@ free to submit your own by sending a patch to * [~jfreymuth/hare-ls](https://git.sr.ht/~jfreymuth/hare-ls): hare-ls is a language server for Hare * [~tomleb/harepls](https://sr.ht/~tomleb/harepls/): A LSP server for the Hare language  ## IPC  [message trimmed]