Rob Landers

Results 541 comments of Rob Landers

Props to @photz-insify to give me the idea of a generic unix-time-exporter vs. trying to deal with various integer formats. This is much cleaner than the original.

> This also means that the range for serializing to milliseconds or microseconds is limited to a smaller range. It should cover most of current usage eras, but far-future values...

haha, I literally came here to ask the exact same question! Personally, I'd prefer a way to generically set CFLAGS and CXXFLAGS. I haven't confirmed this is the cause, but...

It's not connected to Loft at all. I'll get those agent logs and see what is up. Thinking about it now, it's possible Longhorn deploys pods to the namespace to...

@dunglas the following Docker file (props @cdaguerre in #374) appears to "fix" fibers. At least for this reproducer with manual testing. It needs more testing: ```docker FROM dunglas/frankenphp:latest-builder-php8.3-alpine AS builder...

I'll do some proper testing by Monday (by updating the fiber branch), but I haven't seen a crash yet via manual testing.

It doesn't fix it, per se, more-or-less just reduces the probability of a crash. Edit to add: the best way to prevent a crash is to just not output anything...

I started working on a cgo library several weeks ago to allow output from c to go without calling go. It's still a wip: https://github.com/withinboredom/cgoc There's a segfault once the...

@dunglas I highly doubt it will ever be fixable, for very valid reasons. The reason it is failing boils down to the following: 1. C creates a new thread 2....

One way to fix it might be to have `go_handle_request` return a pointer that we can continue with (making ncgo = 0), then continuing in C to `frankenphp_execute_script`, so if...