Fuxin Hao
Fuxin Hao
``` class User < ApplicationRecord has_many :books end class Book < ApplicationRecord belongs_to :user end ``` ``` > User.ransack({books_kind_eq: "novel"}).result.to_sql "SELECT \"users\".* from \"users\" LEFT OUTER JOIN \"books\" on \"books\".\"user_id\"...
I can provide you an example: ```go import "github.com/go-redis/redis" client := redis.NewClient(&redis.Options{Addr: "localhost:9851"}) cmd := redis.NewStringCmd("set", "fleet", "truck1", "point", 33.5123, -112.2693) client.Process(cmd) v, err := cmd.Result() if err != nil...
I got the following error after running few days. ``` 06:53:29 WARN PuppetPuppeteer initScanWatchdog() on(reset) lastFood: https://login.weixin.qq.com/l/wao-9aYzOw==, timePast: 120000 06:54:00 ERR PuppetPuppeteer initScanWatchdog() on(reset) exception: TimeoutError: Navigation Timeout Exceeded: 30000ms...
Since GPS is accurate enough, can we add a network provider to improve accuracy in case of GPS is unavailable?
Since `rand` returns a float that is ranged from [0, 1), the retry time varies greatly. Say we have the factor closer to 0, the retry time varies greatly. Conversely,...
I want to camelize field and argument names, I thought it was simple, just renaming the snake-style fields to camel-style. So I wrote a custom module as the following: ```...
Hi! Thank you so very kindly for the work! This is a tremendous piece of work! However, I'd one question regarding "production-ready" status of the project. Does graphql-weaver support Relay?
I'm using `Debezium PostgresConnector` and `JdbcSinkConnector` to migrate a Postgres database to a new one. But I found out there is a loss of precision when handling `numeric` type with...
I think this bug is a serious problem. every time `BatchLoader.for().batch` is called, a new object of `nil` will be returned by default. this can cause some weird bugs in...