This file contains hidden or 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
| function collapseAndAbbreviateNamespaceRefs() { | |
| const observer = new MutationObserver((mutationList) => { | |
| for (const mutation of mutationList) { | |
| for (const node of mutation.addedNodes) { | |
| if (!node.querySelectorAll) continue; | |
| const initialNamespaceRefs = node.querySelectorAll( | |
| '.ls-block a.page-ref[data-ref*="/"], .foldable-title [data-ref*="/"], li[title*="root/"] .page-title, a.tag[data-ref*="/"]' | |
| ); | |
| const pageTitleRefs = node.querySelectorAll('.page-title'); |
This file contains hidden or 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
| - ActiveLine.css | |
| - Callouts.css |
This file contains hidden or 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
| @echo off | |
| setlocal enabledelayedexpansion | |
| rem This script assumes that it's running in the obsidian configuration | |
| rem directory, which is usually at | |
| rem | |
| rem %USERPROFILE%\AppData\Roaming\obsidian | |
| rem | |
| rem Where %USERPROFILE% is your user name | |
| rem |
This file contains hidden or 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
| @echo off | |
| setlocal enabledelayedexpansion | |
| rem The following variables set up the environment | |
| set "work_drive=D:" | |
| set "dir_in=D:\<folder-to-process>" | |
| set "dir_out=D:\<processed-folder>" | |
| set "log_file=_import.log" |
This file contains hidden or 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
| /* | |
| * emv.js -- A simple "environment variable simulator" for Obsidian Templater | |
| * | |
| * To use this from inside an Obsidian Templater script, drop this into the | |
| * scripts folder (as defined in templater settings). Name it whatever you wish | |
| * (Obsidian doesn't "namespace" javascript by file, it's all one global space). | |
| * | |
| * Now, inside your templater script: | |
| * | |
| * value = tp.user.env({ key: "key_name" }); |
This file contains hidden or 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
| <%"---"%> | |
| created: <% tp.file.creation_date('YYYY-MM-DD HH:MM:ssSS') %> | |
| updated: <% tp.file.creation_date('YYYY-MM-DD HH:MM:ssSS') %> | |
| cloud_host: "pcloud" | |
| tags: | |
| - video | |
| - youtube | |
| <%* | |
| /* | |
| REMEMBER: Save this file as 'Video - YouTube.md' (strip the '.txt' extension) |
This file contains hidden or 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
| ; --------------------------------------------------------------------------------------------------------------------- | |
| ; Ctrl+Alt+SPECIAL+M --> Toggle Microphone | |
| ; | |
| ^!#m:: SoundSetMute !SoundGetMute(, "Microphone"),, "Microphone" | |
| ; --------------------------------------------------------------------------------------------------------------------- | |
| ; Ctrl+Alt+Shift+SPECIAL+M --> Turn Microphone OFF | |
| ; | |
| ^!+#M:: SoundSetMute true,, "Microphone" |
This file contains hidden or 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
| ; --------------------------------------------------------------------------------------------------------------------- | |
| ; Ctrl+Alt+SPECIAL+K --> Toggle Audio | |
| ; | |
| ^!#k:: SoundSetMute !SoundGetMute() | |
| ; --------------------------------------------------------------------------------------------------------------------- | |
| ; Ctrl+Alt+Shift+SPECIAL+K --> Turn Audio OFF | |
| ; | |
| ^!+#K:: SoundSetMute true |
This file contains hidden or 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
| --- | |
| Purchased: <% tp.date.now("YYYY-MM-DD") %> | |
| Price: | |
| URL: | |
| --- | |
| tags:: [[🛍️ Physical Objects MOC]] | |
| <% await tp.file.move("/Spaces/Physical Objects/" + tp.date.now("YYYY-MM-DD") + " " + tp.file.title) %> | |
| # [[<% tp.date.now("YYYY-MM-DD") + " " + tp.file.title %>]] | |
| # Specs |
This file contains hidden or 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
| \[[+Home]] %% tags:: #MOC %% | |
| # Physical Objects MOC | |
| ```meta-bind-button | |
| label: New Physical Object | |
| hidden: false | |
| class: "" | |
| tooltip: "" | |
| id: "" | |
| style: primary |