This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- 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 |
OlderNewer