Skip to content

Instantly share code, notes, and snippets.

View alexander-yu-shamin's full-sized avatar

Alexander Shamin alexander-yu-shamin

View GitHub Profile
@HananoshikaYomaru
HananoshikaYomaru / fix.css
Last active January 27, 2026 18:31
life calendar in obsidian using dataview js
/* wide */
.wide .markdown-preview-sizer {
max-width: unset !important;
}
.life-calendar p a.internal-link {
display: inline-block;
}
@Gvozd
Gvozd / Notifications.gs
Last active March 27, 2024 10:44
Birthday Notifications in google calendar
function createTrigger() {
ScriptApp.newTrigger('main')
.timeBased()
.everyDays(1)
.create();
}
function main() {
const {tmp, from, to} = getCalendars();
const syncedEvents = getEvents(to)