How to Use Obsidian: Unbelievable Daily Notes

Поделиться
HTML-код
  • Опубликовано: 24 янв 2025

Комментарии • 21

  • @texloch1401
    @texloch1401 15 дней назад +1

    Always love your content man. You have an underrated channel with a clear brand/vision.

    • @plus1creator
      @plus1creator  15 дней назад +1

      Thanks man, I appreciate that! 🙏

  • @DhavalPanchal-n6x
    @DhavalPanchal-n6x 15 дней назад +2

    This is absolutely fantastic! Thank you!

    • @plus1creator
      @plus1creator  15 дней назад +2

      Thanks for the love, Dhaval! ::high five::

  • @rafael_tg
    @rafael_tg 15 дней назад +2

    Thanks for sharing. I'll try it

    • @plus1creator
      @plus1creator  15 дней назад +1

      Right on; let me know how it goes.

  • @bailmdb
    @bailmdb 2 дня назад

    I'm finding this video at just the right time! Thanks for sharing. Unfortunately I'm on Windows and I'm not entirely sure how to get the Command part to work. I see someone else below has that issue, so hopefully someone here might be able to explain. I'll keep digging around too! Thanks again.

    • @bailmdb
      @bailmdb 2 дня назад

      Well, I posted the way to make this work on Windows, but either a bot or the OP deleted it. If you need help on Windows, lemme know.

    • @plus1creator
      @plus1creator  2 дня назад +1

      @ I'm seeing it come through; if it's not showing up for you, then it might be RUclips holding your comment awhile. Or, if you included a link, that gets automatically yanked due to the number of spam links and bad actors abusing the feature.

  • @mccinformatique
    @mccinformatique 2 дня назад

    thank's

  • @theewz
    @theewz 15 дней назад +2

    That's a great idea.
    I'm on a Windows machine not Mac, do you know how I could append the same way in the command prompt?

    • @plus1creator
      @plus1creator  15 дней назад +2

      Great question and I have no clue. That's a whole other ball of wax. The ideas are the same, but I have no idea what the command is. You want to search for the command to append the contents of a file (append.txt) to a directory of files (daily notes).

    • @theewz
      @theewz 15 дней назад

      Thanks I'll get poking around and doing some googling .​@@plus1creator

    • @GETJILTED
      @GETJILTED 5 дней назад

      @@theewz did you ever find a solution?

  • @jez4491
    @jez4491 15 дней назад

    You mention you were going to link a video about the power of the daily note. Am i missing it, because I dont seem to find a link for it.

    • @plus1creator
      @plus1creator  14 дней назад +1

      It's the video I link to at the end.

    • @jez4491
      @jez4491 14 дней назад +2

      @@plus1creator oh, hah, thanks for that. I missed it because a browser plugin I use to customize my YT experience removes those overlay links at the end, turned it off and there it was.
      Cheers

    • @plus1creator
      @plus1creator  14 дней назад

      TFW you protect yourself from the info you wanted. X^D

  • @skebi69
    @skebi69 15 дней назад +2

    For your command to copy your template into just the daily note files you can change it to "for f in $(ls 2025-??-??.md);do cat ~/append.txt >> "$f";done". This will remove the need to move files out of and into the daily directory. (in the 2025-??-??.md part of the command the ? is any single character). Thankfully all the month and days have the leading 0 to allow this to work.
    I believe for Windows the command would possibly be the same except change the 'ls' part to 'cat'. I am not a windows guy so I would suggest copying all the files to another directory and test it there.