Eugene
Eugene
### prototool.yaml ``` protoc: version: 3.11.0 lint: group: google rules: remove: - SERVICE_NAMES_API_SUFFIX - SERVICE_NAMES_MATCH_FILE_NAME - REQUEST_RESPONSE_TYPES_ONLY_IN_FILE generate: plugins: - name: js output: ./gen/js flags: import_style=commonjs,binary - name: gogo type:...
On the newer kernels ( 5.3.7 at least ) the compilation fails with ``` spi-ch341-usb/spi-ch341-usb.c:623:45: error: implicit declaration of function ‘SPI_BIT_MASK’; did you mean ‘SPI_BPW_MASK’? [-Werror=implicit-function-declaration] ```
Would be very helpful to get some instructions on how to build the driver for Arch linux. The kernel source layout seems to be different: ``` linux-headers /usr/lib/modules/4.15.5-1-ARCH/ ``` and...
The flag `-p` shall instruct `repull` to generate the command line for `docker` command that will create the container with the same mount points, network configuration and links to other...
As suggested by @appjaws it would be helpful to have the functionality to disable the password storage once the RFID key is removed, so it would be possible to keep...
When used with Windows host, the HID interface is recognized properly, however network interface isn't recognized by OS. The possible cause is that the OTG mode is built with CDC/RDDIS...
``` package testing import ( "database/sql" "fmt" "testing" sq "github.com/Masterminds/squirrel" _ "github.com/lib/pq" "github.com/stretchr/testify/require" ) var psql = sq.StatementBuilder.PlaceholderFormat(sq.Dollar) func TestInsertSelect(t *testing.T) { driver, path := "postgres", "host=localhost sslmode=disable port=5432 user=postgres...
I need to "embed" some key/value data into my go app ( packr/rice etc ). The database is to be used for prefix lookups, **read-only**. Bbolt does require to have...