(draft; work in progress)
See also:
- Compilers
- Program analysis:
- Dynamic analysis - instrumentation, translation, sanitizers
| -- Global variable to store the initial state of night color | |
| local night_color_was_enabled = false | |
| local was_paused = false | |
| -- Function to execute shell commands and capture output | |
| local function execute_command(cmd) | |
| local handle = io.popen(cmd) | |
| local result = handle:read("*a") | |
| handle:close() | |
| return result:match("^%s*(.-)%s*$") -- Trim whitespace |
| /*** Publishing: Hide things that aren't very useful for a read-only view */ | |
| /** Hide page properties (public pages will always have public: true) */ | |
| .content .pre-block { display: none; } | |
| /** Title */ | |
| /* Make title non-editable */ | |
| #main-container .page-title { pointer-events: none; } | |
| /** Hide useless sidebar stuff */ |
(draft; work in progress)
See also:
Given a subscribed calendar with a url like
https://example.com/example.ics
To force Google Calendar to refresh and reload the contents right now, unsubscribe from the calendar and subscribe to a new calendar with a URL like
https://example.com/example.ics#1
Adding the anchor tag will force Google Calendar to think of it as a new calendar