Stan Hu

Results 227 comments of Stan Hu

We ran into this in https://github.com/floraison/et-orbi/issues/23 as well. I think these lines are questionable: https://github.com/mojombo/chronic/blob/2b1eae7ec440d767c09e0b1a7f0e9bcf30ce1d6c/lib/chronic/repeaters/repeater_time.rb#L81-L96 Try passing in `Chronic.parse('2020-11-01 00:00:00')` on a system that has daylight savings: ```ruby Time.parse('2020-11-01 00:00:00')...

I think https://github.com/mojombo/chronic/pull/396 fixes this problem.

@leejarvis Are you still maintaining this gem? If so, would you mind reviewing and pushing out an update? This bug causes a number of issues on gems that depend on...

If you have built libicu with the `--with-data-packaging=files`configuration option, you may need to set the `ICU_DATA` environment variable. See http://userguide.icu-project.org/icudata for more details. We ran into the same issue at...

@phillipp What platform are you using? On Ubuntu 16.04, I see it in `/usr/lib/x86_64-linux-gnu`: ``` $ dpkg -L libicu55 /. /usr /usr/share /usr/share/lintian /usr/share/lintian/overrides /usr/share/lintian/overrides/libicu55 /usr/share/doc /usr/share/doc/libicu55 /usr/share/doc/libicu55/copyright /usr/share/doc/libicu55/changelog.Debian.gz /usr/share/doc/libicu55/NEWS.Debian.gz...

A few users of GitLab are running into this issue while trying to get OpenID working with a self-signed certificate. Could we get this branch merged and released?

Thanks, this was helpful! @gimite Can this be merged?

With v3.0.5, I got shared drives to work. Currently it doesn't work because the drive ID is hard-coded to `root` here: https://github.com/gimite/google-drive-ruby/blob/264a0001c1896dcf92d0227bf66e75eb1909448c/lib/google_drive/session.rb#L414 I monkey patched this to the following: ```ruby...

I think `SIGINFO` is a BSD construct, so this would only be supported in macOS or FreeBSD. Using signals in general isn't the most cross-platform friendly way of doing monitoring.

In this case, I think that is more complex because now you need to have a separate process that determines whether the process is alive. HTTP liveness probes are a...