concepts
- forward and backward propagation
- vanishing gradient
- image convolution operation
- feature map, filter/kernel
- receptive field
- embedding
- translation invariance
| package demo.cont; | |
| import java.lang.invoke.MethodHandle; | |
| import java.lang.invoke.MethodHandles; | |
| import java.lang.invoke.MethodType; | |
| import java.util.function.Consumer; | |
| public final class Continuation { | |
| private final Object delegate; |
Here is the best setup (I think so :D) for K-series Keychron keyboards on Linux.
Note: many newer Keychron keyboards use QMK as firmware and most tips here do not apply to them. Maybe the ones related to Bluetooth can be useful, but everything related to Apple's keyboard module (hid_apple) on Linux, won't work. As far as I know, all QMK-based boards use the hid_generic module instead. Examples of QMK-based boards are: Q, Q-Pro, V, K-Pro, etc.
Most of these commands have been tested on Ubuntu 20.04 and should also work on most Debian-based distributions. If a command happens not to work for you, take a look in the comment section.
Older Keychron keyboards (those not based on QMK) use the hid_apple driver on Linux, even in the Windows/Android mode, both in Bluetooth and Wired modes.
Kafka 0.11.0.0 (Confluent 3.3.0) added support to manipulate offsets for a consumer group via cli kafka-consumer-groups command.
kafka-consumer-groups --bootstrap-server <kafkahost:port> --group <group_id> --describeNote the values under "CURRENT-OFFSET" and "LOG-END-OFFSET". "CURRENT-OFFSET" is the offset where this consumer group is currently at in each of the partitions.
| #' @title Geolocate IP Addresses Through ip-api.com | |
| #' @description | |
| #' \code{geolocate} consumes a vector of IP addresses and geolocates them via | |
| #' \href{http://ip-api.com}{ip-api.com}. | |
| #' @param ip a character vector of IP addresses. | |
| #' @param lang a string to specify an output localisation language. | |
| #' Allowed values: en, de, es, pt-BR, fr, ja, zh-CN, ru. | |
| #' @param fields a string to specify which fields to return. | |
| #' @param delay a logical to whether or not to delay each request by 400ms. | |
| #' ip-api.com has a maximum threshold of 150 requests a minute. Disable it for |
bin/kafka-topics.sh --zookeeper localhost:2181 --list
bin/kafka-topics.sh --zookeeper localhost:2181 --describe --topic mytopic
bin/kafka-topics.sh --zookeeper localhost:2181 --alter --topic mytopic --config retention.ms=1000
... wait a minute ...
Picking the right architecture = Picking the right battles + Managing trade-offs