2021-07-17: Obsidian Mobile, Community Events & Graph Tips
I'm doing an AMA. There's a new plugin for better logseq/obsidian interoperability. QuickAdd macros are incredible. TTRPG stuff & new themes!
In The Community
- I’ll be joining Nick Milo for the inaugural LYT House feature, with a grand reveal of my (sanitized) vault for people to see. We’ll probably talk about managing writing projects and tasking, but the thing I’m most excited about is the 30-minute “Ask Me Anything” portion. It’ll be held on Zoom at 10AM PT (UTC-7) on Sunday, July 18th.
- If you have ideas to improve the Obsidian documentation, you can contribute to the process of documenting Obsidian on GitHub.
@nickmilo
shared this really heartwarming Love Letter to Obsidian that some Discord users recorded made them tear up a bit.- Paul Bricman is organizing a free one-day online “unconference” about building tools for thought. Participants host their own sessions. It’s on July 25th. Learn more here.
@Silverica
is looking for community members interested in contributing T-shirt designs for Obsidian merch 👀 Details on Discord.
Obsidian Updates
The big news this week is that obsidian for mobile has released! This brought a whole host of questions about best practices and methods for syncing files between different devices. I’ve put together a meta list of all the resources for sync and advice I was able to find.
Incidentally, if startup feels like it’s taking too long, try:
- lock the app so that it doesn’t get killed.
- let the app run in the background.
- check to see if your plugins are causing long load times.
- Make sure you don’t have any “markdown” files that are actually long files of another type, like xml. This can sometimes cause the parser to choke.
- Make sure you don’t have any illegal characters in your filenames. Different operating systems have different requirements, but
?
and%
have been common culprits.
Insiders will continue to get access to early beta builds and features.
Plugin News
New
This plugin makes Obsidian’s preview of LogSeq-flavored markdown more pleasant.
- The new Map View plugin is in the community plugins list. It’s a great way to work with notes on vacation notes, reflections on places you’ve visited, etc. Although by default it works with coordinates,
@Christian
put together a QuickAdd macro (seriously, QuickAdd is amazing) to find the longitude and latitude for the given address and creates a YAML property called location in the active file. - You can now easily open your vault in Visual Studio Code from a ribbon icon, which should make stuff like mass find&replace easier.
- The new obsidian timeline plugin looks incredible for having a timeline of stuff in one file. It uses codeblocks.
- Here’s a nifty way to paste a multi-line code block or blockquote to the level of indent you’re at.
Updates
- The Excalidraw plugin has a nice video walkthrough of the big 1.2.1 update: This is a major release moving Excalidraw to Markdown and implementing linking, transclusion, aliases, tagging, backlinking, etc. feature set into Excalidraw.
- Breadcrumbs 0.8.15 now has a grid view and is in the community plugins list now after getting through code review. I am very excited to start using this to mimic folgezettels, personally.
- File Tree Alternative version v.1.2.7allows users to use keyword
all:
which helps with searching all files under the vault rather than the currently active folder. - Imgur Plugin 2.0 now allowed users to authenticate and upload images tied to their account.
- QuickAdd 0.3.5 adds support for inline JavaScript execution. It also supports syntax highlighting out of the box.
- Advanced-URI now supports opening files by UUID.
- Version 0.3.0 of Amazing Marvin plugin adds a ribbon, more support for bringing tasks into your daily notes in Obsidian, and more customizations.
- the Obsidian Initiative Tracker plugin lets you add players, create homebrew creatures, and run a combat from within Obsidian, and includes the full 5e SRD creature list.
- Linux-only: The Ulauncher plugin for obsidian now supports direct access to Daily Note and Quick Capturing.
Under The Radar
- For those who have gotten used to the handy way that the mobile toolbar can cycle between
-
and- [ ]
and- [x]
don’t forget that Hotkey++ exists and lets you do something similar on desktop.
For Developers
- Obsidian will be adding a native bypass for
navigator.clipboard.readText/writeText
on mobile to make it work; the bypass itself just replacesreadText/writeText
so no new API will be introduced. - There’s a lengthy discussion over on the GitHub repo for Obsidian Git about the challenges of getting obsidian git working on mobile. If anybody has any insight or wants to help out, I think it would be appreciated by a lot of people.
- The developer of the better word count plugin is a bit swamped by the issues facing their home country and requested that if anyone is able to submit a pull request to help with the issue where wordcounts are unusually high, they do so.
- Obsimian is an Obsidian simulation framework for integration testing Obsidian plugins without an actual Obsidian App instance.
- If you’re trying to debug Obsidian plugins on Android you can use Android Debug Bridge.
Workflow Stuff
- Here’s an explanation for how to add shortcuts to notes to your Android homescreen.
@viticci
is sharing his Obsidian workflow in his (paid, but longstanding and quite popular) Club Macstories newsletter. He also discusses the release of the mobile app on Connected at 14:54.- Here’s a great thread about how to use Logseq as your outliner for Obsidian.
@Christian
the developer of QuickAdd and MetaEdit shared how he semi-automatically imports literature notes to his Obsidian vault and his workflow for processing them into atomic, evergreen notes. He also shared how he captures what he wants to include in his newsletter.@Christian
also helpfully put together a “how-to” guide for my Zettelizer workflow with QuickAdd which I use to automatically create atomic notes from source notes using descriptive headers.- This QuickAdd script to quickly capture a task and add it to a kanban is also pretty nifty.
- Effective Remote Work has a new video about how effective Obsidian is for productivity and task management.
- Folks using Obsidian for TTRPG games should check out this detailed discussion post on the Obsidian Leaflet plugin GitHub repository. It makes image maps easier to work with. It also discusses parameters you can use to automatically place markers defined in your notes, and a discussion of how to use GeoJSON to create features on your map.
- If you're looking to organize a TTRPG campaign, this video is useful. For an example of campaign notes from a player perspective, check out the newest mod
@Leah
's vault There’s also this excellent D&D Reference for Obsidian and a great discussion about how to use collapsible admonitions for branching choices. @hstagner
shared their workflow for getting emails into your vault using Zapier.@alex_the_glad_stork
shared a workflow for managing meeting notes and using anki flashcards in documents on Discord.
Appearance
- The new Illusion Theme (optimized for light mode) is absolutely gorgeous. Its primary benefit is that things are a bit bigger with better contrast.
- California Coast got some major updates including better mobile support.
- A couple of people have asked for a “Getting Started” guide for making CSS themes for Obsidian. Reggie has one over on Publish.
@mgmeyers
shared a method to define the shape of icons using css andweb-mask-image
that will work a bit better thanaria-label
s to replace svgs. This lets theme developers swap out icons without needing users to download the icon swapper plugin and download icon files, which should let theme developers do more with icons on mobile too.- If you want a custom font on mobile, you can Base64 encode the font into your theme. You can't refer to other files from css snippets directly - relative links won't work there because the files are loaded as a blob instead. Once you’ve encoded the font, copy it into the theme file and change fonts wherever you want either in the theme file itself or through one of the plugins.
@chetachi
shared a neat way to highlight the active line of a bullet point list using relationship lines.- the Everforest theme has been updated
- There’s a new theme called darkyan.
Knowledge Management
- I thought you guys might enjoy this piece from r/askHistorians about the history of notetaking How far we’ve come!
@Calhistorian
shared this Loom prototyping a method for organizing a Zettelkasten in Obsidian that demonstrates the utility of the graph view for more than just a "map" of your Vault. It impressed a lot of prominent thinkers. It’s meant as a demonstration to show how a linear exploration might occur through a note sequence: you might follow different branches of the note sequence by following tags and folgezettels, and related notes.@Cat
(who put together the directions for the Zotero/MDNotes workflow) shared a snapshot of their indicies and metadata.- There was a nice discussion of why atomic notes are helpful in the Discord.
Ancillary Tools
- Several people asked about tools for sharing and collaboratively editing and commenting on markdown files. HackMD is a Collaborative Markdown Knowledge Base and HedgeDoc is an open-source alternative.
Housekeeping
- I am still sorting through the survey stuff. It's been a heck of a week. I'm really sorry if you didn't get an email about the mobile release on Monday and you wanted one. I really wasn't expecting that whole process to go quite as badly as it did, and I couldn't bring myself to send a third email. This has definitely been a learning experience for me 😅 Thanks for bearing with me!
Note: There are a couple of affiliate links & codes scattered around, but these always come from links I was already recommending and usually I share them because they benefit you too (i.e. getting you extra time on trials).
🌠 Recipe importing & Linting improvements
New themes, productivity Shortcuts for mac, and systems for pairing digital & analogue.
🌠 Conference Videos, Dendron support, & Improved Reference Counting
Showcasing teachers, authors, medical students, people impacted by LLMs, gardeners, and mathematicians.
🌠 PDF improvements & More AI Options
Check out some great guides on how to create folder and tag systems, and how to use the Strange New Worlds & bookmarks plugin!