Skip to content

Instantly share code, notes, and snippets.

@victortrac
victortrac / bq.sql
Last active August 18, 2022 15:30
BigQuery to find changelog updates to GCP services ordered by last update
SELECT max(published_at) as last_update,
min(published_at) as first_update,
DATE_DIFF(max(published_at),min(published_at),DAY) as age_days,
product_name FROM `bigquery-public-data.google_cloud_release_notes.release_notes`
GROUP BY product_name
ORDER BY last_update asc
--- a/examples/Devices/Keyboardio/Model100/Model100.ino
+++ b/examples/Devices/Keyboardio/Model100/Model100.ino
@@ -100,6 +100,9 @@
// Support for the GeminiPR Stenography protocol
#include "Kaleidoscope-Steno.h"
+// Support for Autoshifting
+#include <Kaleidoscope-AutoShift.h>
+
/** This 'enum' is a list of all the macros used by the Model 100's firmware