Yuchen Ying

Results 51 comments of Yuchen Ying

Actually I just realized it's simply a wrapper around libcurl. I guess that means we need to update the base image to something like `ubuntu:22.04`?

Hmm, I'm very interested to use the part that uses sqlite3 as database. Would it be possible to split that part into a separate PR? Thank you!

Hmm this also happens to me. It's really frustrating that there's no other way to debug this issue. A test URL is https://www.costco.com/warehouse-locations/san-francisco-ca-144.html

Hmm, I'm starting to think this is some underlying issue with the Faraday library that huginn use to handle HTTP requests. This is a minimum repro for the timeout issue:...

Ah I think I finally figured it out. I think Tesco and Costco are using the same vendor for anti-scrapping support on their website. If you send the request in...

Tried every combination but adding the `X-Forwarded-Host: DOMAIN` is the one that finally fixed the issue for me. In my case it's even more mysterious because I can login from...

It's probably easy for dns-over-https and Pomerium since they are written in Go. I'm not familiar with cross compile options for other C based projects. Also I recently switched the...

Building an image for Go binary targeting ARM should be trivial, I believe you can grab my Docker file [here](https://github.com/yegle/dns-over-https-docker/blob/master/Dockerfile), changing `RUN CGO_ENABLED=0 go build .` to `RUN CGO_ENABLED=0 GOARCH=arm...

I'm working on using CoreDNS+Pihole to replace the previous setup. CoreDNS provides ARM images so it should allow you to run the full stack on a RasPi.

Hi, DNAT is how you do port forwarding if your gateway is a Linux server. This is simply "get your router to forward TCP port 443 and 853 to your...