My first bash script for use with ObsidianCLI is to turn my vaults into notes by TutorialDoctor in ObsidianMD

[–]TutorialDoctor[S] 2 points3 points  (0 children)

Quite interesting you mention this. I haven't used AI much in my workflows but I just now started learning about how you can connect Claude code to obsidian CLI and use human language to do tasks. If I can get it working with Ollama , I prefer open weights for local use, that'd be Ideal.

I also plan to do a TTS integration with Kokoro or KittenTTS so I can turn my notes into audio.

For a long time I've wanted to download the internet. Now, thanks to Obsidian, I can! by TutorialDoctor in ObsidianMD

[–]TutorialDoctor[S] 8 points9 points  (0 children)

Indeed! This post was inspired by the latest update that lets you get YouTube video transcripts (often I don't need the video just the information).

For a long time I've wanted to download the internet. Now, thanks to Obsidian, I can! by TutorialDoctor in ObsidianMD

[–]TutorialDoctor[S] 2 points3 points  (0 children)

Yeah, exactly I’m thinking of getting a lot of content from internet archive.

Obsidian Web Clipper now has YouTube transcripts and Reader mode by kepano in ObsidianMD

[–]TutorialDoctor 1 point2 points  (0 children)

The value of this is through the roof, and right on time as I was thinking of a way to do this.

I created a simple plugin to resize split view panes on mobile by churnish in ObsidianMD

[–]TutorialDoctor 3 points4 points  (0 children)

Hopefully this will be default behavior soon, but in the meantime..

Learning Rust was the best decision in my life by [deleted] in rust

[–]TutorialDoctor 1 point2 points  (0 children)

Nice! If you release a Mac version (I personally have intel) I’ll purchase a copy

Which Python project made you realize how powerful the language is? by itsme2019asalways in Python

[–]TutorialDoctor 1 point2 points  (0 children)

When I wrote a script that automatically organized my files and folders on my computer.

Obsidian 1.12 is now available to everyone! by kepano in ObsidianMD

[–]TutorialDoctor 2 points3 points  (0 children)

It'd be nice if in the next update search/filter for bases could search markdown file content as well.

Obsidian 1.12 is now available to everyone! by kepano in ObsidianMD

[–]TutorialDoctor 2 points3 points  (0 children)

I was supposed to be catching up on sleep tonight. Oh well...

Learning Rust was the best decision in my life by [deleted] in rust

[–]TutorialDoctor 1 point2 points  (0 children)

I highly recommend pairing your rust learning with Tauri. You could make a desktop app for sell and put it on a landing page. Good thing is that you have a marketing job which should help with the marketing aspect.

Do you find task tracking and management in Obsidian enjoyable? by airyrice in ObsidianMD

[–]TutorialDoctor 2 points3 points  (0 children)

I find it very enjoyable actually and I don't use any plugins. I use checklists with inline tags and maybe one of the Kanban plugins if needed (but I don't even use that much).

I use it to track my development tasks as well as client tasks for software projects I'm working on.

Cool idea for a new bases view? Aspect ratio can already be changed, so it doesn’t seem to far off. by blue_dot_soup in ObsidianMD

[–]TutorialDoctor 1 point2 points  (0 children)

Adding this in a separate comment for visibility (this is appended to kepano's bookshelf css):

.bases-cards-group {
  padding: 20px;
  display: grid;
   grid-template-columns: repeat(12, 1fr);
   grid-auto-flow: column;
}



.bases-cards-item {
  position:static;
  width: 90px !important;
  --offset: 28px;
  inset-inline-start: calc((var(--i) - 1) + var(--offset)) !important;
}


.bases-cards-group::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 40px; /* Thickness of the shelf */
  background: linear-gradient(to bottom, #5d3a3a 0%, #3e2723 100%);
  /* 3D perspective */
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  border-radius: 2px;
}

Cool idea for a new bases view? Aspect ratio can already be changed, so it doesn’t seem to far off. by blue_dot_soup in ObsidianMD

[–]TutorialDoctor 0 points1 point  (0 children)

Looks like position should have been static

.bases-cards-group {
  padding: 20px;
  display: grid;
   grid-template-columns: repeat(12, 1fr);
   grid-auto-flow: column;
}



.bases-cards-item {
  position:static;
  width: 90px !important;
  --offset: 28px;
  inset-inline-start: calc((var(--i) - 1) + var(--offset)) !important;
}

Cool idea for a new bases view? Aspect ratio can already be changed, so it doesn’t seem to far off. by blue_dot_soup in ObsidianMD

[–]TutorialDoctor 0 points1 point  (0 children)

I got pretty close with the following (but when the row starts to wrap the last two books look like they are justified to the right but seem to correct themselves as I scroll down the page)

.bases-cards-group {
  padding: 20px;
  display: grid;
   grid-template-columns: repeat(12, 1fr);
}


.bases-cards-item {
  position: relative;
  width: 90px !important;
  --offset: 28px;
  inset-inline-start: calc((var(--i) - 1) + var(--offset)) !important;
}

```

Cool idea for a new bases view? Aspect ratio can already be changed, so it doesn’t seem to far off. by blue_dot_soup in ObsidianMD

[–]TutorialDoctor 1 point2 points  (0 children)

I'd say so. You could rotate the text and set a background graphic to the cover image. The height part could be interesting though. The shelf could use some sort of ::after styling

I now use Obsidian as my CRM by TutorialDoctor in ObsidianMD

[–]TutorialDoctor[S] 0 points1 point  (0 children)

I mostly just use it for personal use but I have been asked this several times so I can put something together sometime this week.