Tomáš Karela Procházka

Results 58 comments of Tomáš Karela Procházka

Tak snad si kluci nějak navzájem poradili. Netuším

You could be looking for this: https://pkg.go.dev/os#Getpid

Tohle asi může být podobný problém, co myslíš? https://github.com/kardianos/service/issues/264

This could work. ``` package main import "os" func main() { parentPid := os.Getppid() parent, _ := os.FindProcess(parentPid) _ = parent.Kill() } ```

Hi, I have noticed you closed PR related to this issue https://github.com/bufbuild/buf/pull/1701 We are still at the beginning of gRPC adoption on PHP side, but we're again struggling with the...

Some kind of wildcard/globbing support would make my life a bit nicer tho ```yaml managed: override: PHP_NAMESPACE: companyXYZ/v1/*.proto: Company\gRPC\v1 PHP_METADATA_NAMESPACE: companyXYZ/v1/*.proto: Company\gRPC\v1\Metadata ```

Does the new v2 `buf.gen.yaml` work this way? after running `buf config migrate` all my overrides was changed to ``` version: v2 managed: enabled: true override: - file_option: php_metadata_namespace path:...

It is [my implementation](https://github.com/goh-chunlin/go-onedrive/issues/17#issuecomment-1197795393), but I take the thanks. You welcome. But could you @goh-chunlin bump the version up? So we can finally stop using my fork.

Did you also consider using `retract` go.mod directive? I know that these things happen, but the retract directive could help module users identify the root cause much faster. https://go.dev/ref/mod#go-mod-file-retract

Do you use SysVinit, right? https://github.com/kardianos/service/blob/master/service_sysv_linux.go https://trac.gateworks.com/wiki/OpenWrt/init ``` The OpenWrt Linux Distro uses an init system **similar** to sysvinit common on most Linux Distros. ``` The word similar may be...