Skip to content

Instantly share code, notes, and snippets.

View ewerybody's full-sized avatar
👾

Eric Werner ewerybody

👾
View GitHub Profile
@ewerybody
ewerybody / open_filebrowser.inx
Created April 2, 2026 08:42
Open File Browser - InkScape Extension to show current SVG document in Nemo, Explorer, Finder ...
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
<name>Open File Browser</name>
<id>org.inkscape.effect.open_filebrowser</id>
<effect>
<object-type>all</object-type>
<effects-menu>
<submenu name="Document"/>
</effects-menu>
@ewerybody
ewerybody / selectiveCalendarSync.gs
Last active August 3, 2026 14:19
selectiveCalendarSync - Google App Script
function selectiveCalendarSync() {
const startTime = Date.now();
// Number of days to include in the sync:
const NUM_DAYS = 14;
// Lower case exclude trigger strings to keep matching events from being synced:
const EXCLUDE = ["focus time", "home", "bob ooo", "alice pto"];
// Universal name for synced events? Make it empty to use original event name:
const NEW_NAME = "";
// Also sync whole day events without start and end time?:
const FULL_DAY_EVENTS = false;