i used AI but it's something like this:
add the Calendar service
function addRoomWithoutNotification() {
var calendarId = 'me@google-workspace.com';
var locationsToMatch = ['room.com', 'same-room.com', 'same.com/room'];i used AI but it's something like this:
add the Calendar service
function addRoomWithoutNotification() {
var calendarId = 'me@google-workspace.com';
var locationsToMatch = ['room.com', 'same-room.com', 'same.com/room'];| #!/bin/bash | |
| # usage: throttle.sh FILENAME THROTTLE_SECONDS CMD [ARGS...] | |
| # example usage: while sleep .1; do throttle.sh /tmp/date 1 date +%s.%N; done | |
| FILENAME=$1 | |
| THROTTLE_SECONDS=$2 | |
| shift 2 | |
| last_called=$(<$FILENAME) |