obsidianmd

This magazine is from a federated server and may be incomplete. Browse more on the original instance.

asap, in a workflow for organising "people"
@asap@lemmy.world avatar

I use this script: forum.obsidian.md/t/…/43

There are some other good solutions in that thread also if that one doesn’t suit.

another_kbin_addict,

Thank you kindly, this looks great. 👌

spencerwi, in What apps do you use in conjunction with Obsidian?

I mostly just use Syncthing for syncing the files, and otherwise I let Obsidian do the driving.

nightscout,
@nightscout@lemmy.world avatar

I’m fine with Obsidian on desktop and I love that they have a fully-featured app, but the experience on mobile and iPad with the obsidian app is not the best UI experience. I also find it to be a bit buggy at times.

laroquephoto,
@laroquephoto@mstdn.social avatar

@nightscout @spencerwi
IA Writer works very nicely with Obsidian. The styling looks different, YAML is visible, and anything outside markdown won't be rendered, but it reads and writes perfectly (although I rarely find a need for it anymore). The iPad app has come a long way but yeah, it's not perfect yet.

nightscout,
@nightscout@lemmy.world avatar

That’s one app I really wanted to try to use but they don’t yet have a trial or monthly subscription option for iOS (supposed to release one). I didn’t want to pay $50 for it just yet.

EpiphanicSynchronicity,
@EpiphanicSynchronicity@pkm.social avatar

@nightscout @laroquephoto At $50, the mobile version of iA Writer has become way overpriced, especially if you’re only going to use it on an iPhone. Imo 1Writer is pretty much equally good (I own both) and last I looked it only costs $5. Fwiw, you can also sign into Dropbox with it, which you can’t do with iA Writer.

redsol2, in What do you use Obsidian for?

I fill it with article notes, journal entries, and project plans that I’ll never look at again for the rest of my life.

coderofhonor,

Relatable. One of my fears is that this content that I’m devoting a lot of time towards writing and curating will never be helpful to me or read by me a second time.

cosmicrose, in What do you use Obsidian for?
@cosmicrose@lemmy.world avatar

I use it to organize my notes for the Dungeons and Dragons game I’m playing in. It’s fabulous for linking NPCs and locations with my notes for each session.

coderofhonor,

This is a wonderful idea. I don’t play DnD personally, but this example gives me some ideas. Essentially what you’ve done is organize creative works by breaking them down into bite sized interconnected pieces.

posthumouspoet, in What are your thoughts about Obsidian not being Open Source?

I would prefer it to be open-source, but at least the data format (markdown) is ubiquitous and stored wherever I want it to be stored.

redsol2,

This is how I’ve been thinking of it too. If an equivalent open-source solution comes out, it’ll be really easy to switch to, but right now Obsidian is just unbeatable.

Pencilnoob, in What are your thoughts about Obsidian not being Open Source?

For me, knowing that it’s basically a text editor that has neat features, I’m not super concerned. If they ever shut down Obsidian, I’ll switch to LogSeq or one of the Emacs modes that does the same thing, maybe I’ll have to run a converter over the files, but that’s not a huge deal for me

Edo78, in Looking for a URL Bookmarking Solution with Obsidian

I use a self hosted Wallabag but I still have to test the Obsidian plug in github.com/huseyz/obsidian-wallabag

Kassan6ra, in What is the main thing you write on your Obsidian Vault?
@Kassan6ra@lemmy.world avatar

I use mine as a dream diary mostly. I can make links with different dreams having similar vibes and taking place in the same fictional places.

SamXavia,
@SamXavia@kbin.run avatar

That sounds really nice. Glad you found a unique use for your Obsidian

fhein, in What is the main thing you write on your Obsidian Vault?

I wouldn’t say I have any “main thing”, it’s split fairly evenly between archiving information (recipes, articles, etc.) to have everything in one place, writing down random things to avoid forgetting them, and making kanban boards for my hobby programming projects.

DrakeRichards, in Using Pandoc to export to Obsidian markdown?

I got this mostly working, but it was not easy. Not only does Obsidian have a few peculiarities that make it less compatible with standard Markdown, but Word also does a few funny things.

Here’s the config.yaml I used for Pandoc:


<span style="color:#63a35c;">from</span><span style="color:#323232;">: </span><span style="color:#183691;">docx
</span><span style="color:#63a35c;">to</span><span style="color:#323232;">: </span><span style="color:#183691;">markdown-smart-simple_tables-multiline_tables-grid_tables+pipe_tables+yaml_metadata_block-superscript-subscript-bracketed_spans-native_spans-link_attributes-raw_html+rebase_relative_paths+four_space_rule
</span><span style="color:#63a35c;">extract-media</span><span style="color:#323232;">: </span><span style="color:#183691;">"./"
</span><span style="color:#63a35c;">wrap</span><span style="color:#323232;">: </span><span style="color:#183691;">preserve
</span><span style="color:#63a35c;">markdown-headings</span><span style="color:#323232;">: </span><span style="color:#183691;">atx
</span><span style="color:#63a35c;">tab-stop</span><span style="color:#323232;">: </span><span style="color:#0086b3;">2
</span><span style="color:#63a35c;">shift-heading-level-by</span><span style="color:#323232;">: </span><span style="color:#0086b3;">1
</span><span style="color:#63a35c;">standalone</span><span style="color:#323232;">: </span><span style="color:#0086b3;">true
</span><span style="color:#63a35c;">template</span><span style="color:#323232;">: </span><span style="color:#183691;">obsidian.md
</span><span style="color:#63a35c;">filters</span><span style="color:#323232;">:
</span><span style="color:#323232;">  - </span><span style="color:#183691;">compact-list.lua
</span><span style="color:#323232;">  - </span><span style="color:#183691;">remove-single-characters.py
</span><span style="color:#323232;">  - </span><span style="color:#183691;">remove-extra-linebreaks.py
</span><span style="color:#63a35c;">metadata</span><span style="color:#323232;">:
</span><span style="color:#323232;">  </span><span style="color:#63a35c;">tags</span><span style="color:#323232;">: </span><span style="color:#183691;">"tags/go/here"
</span>

The three filters:

  • Removed extra linebreaks added between bulleted lists to make them more compact.
  • Removed lines with only a single character in them. Usually an invisible character like nbsp, which made Pandoc’s linter not remove them automatically.
  • Removes linebreaks enclosed in Strong tags. This is an artifact from Word where a line is bolded but has no content: technically the line break is bolded.

I then ran the resulting file through a RegExp replacement to change the superscript carats into HTML sup tags.

Even after all this, I still have to go through with an Obsidian plugin to convert the standard Markdown links and embeds into [[Wikilink]] style, since Obsidian will only do one or the other throughout your whole vault.

metis_seeker, in How do you personally use Obsidian?

I use the Supercharged Links Obsidian Plugin (alongside Style Settings Obsidian Plugin to break down my links into multiple different types with symbology for each so that at a glance I know what type of note I’m looking at

  • Literature note: 📔
  • Book: 📚
  • People: 🧑
  • Permanent note: 🗒️
  • Low-quality note: Link turns red
  • Medium-quality note: Link turns an orange

So e.g. A link to a book will look like 📚Building A Second Brain

DmMacniel, in Simultaneous device use-case sync question.
@DmMacniel@feddit.de avatar

I use git to synchronise and versionise my notes across my desktop pc and laptop. If I need access to the notes away from those two I simply access my git repository I self-hosted via gitea. Sure it has not the linking features of obsidian, but I still can read and edit the markdown files :)

My use case by the way is world building for a literature project and running Pathfinder Role-playing games.

displaced_city_mouse,

I do the same thing, using a home-grown Git sync solution to keep my vault synced between my desktop, laptop, and Android phone. Free, and easy to setup on the computers, needed some additional SW on the Android side to get the sync to work.

coffeewithalex, in How do you personally use Obsidian?

I have a work environment, which has a symlink to my private notes. Then I use it for some other stuff too with separate, tinier vaults, but I found that unless it’s accessible in my primary vault, it will be ignored and forgotten.

But it does get annoying when is search I find both Linux notes, interview notes, and D&D notes.

drdabbles, in Restructuring Old Notes
@drdabbles@lemmy.world avatar

For some types of metadata, I’ve used dataview to make a list of notes missing the key fields I want, then I can go back from time to time when I’m bored, and add the new data.

I also use this to summarize things like meeting notes after a day or so to digest what I heard.

pbsds, in Obsidian: Syncing Your Thinking with Syncthing
@pbsds@lemmy.ml avatar

I just use obsidian git

biscotty666,

There are many ways. Git based solutions, or any repo based solutions,don’t give instantaneous synchronization though.

coffee_poops,

They do if your repo is on github

biscotty666,

But that’s the point. In device to device sync there’s no repository.

  • All
  • Subscribed
  • Moderated
  • Favorites
  • random
  • uselessserver093
  • Food
  • aaaaaaacccccccce
  • [email protected]
  • test
  • CafeMeta
  • testmag
  • MUD
  • RhythmGameZone
  • RSS
  • dabs
  • Socialism
  • KbinCafe
  • TheResearchGuardian
  • Ask_kbincafe
  • oklahoma
  • feritale
  • SuperSentai
  • KamenRider
  • All magazines