https://www.dendron.so/ logo
Join Discord
Powered by
# chat
  • s

    seadude

    01/26/2022, 3:40 PM
    Github Publish Pod
  • s

    SeriousBug

    01/26/2022, 5:03 PM
    sync file loss
  • m

    moksha

    01/26/2022, 6:09 PM
    any idea if there is a app, plugin or any such thing to pull in web annotations to vscode ?
  • m

    moksha

    01/26/2022, 10:00 PM
    Found a neat way to get your journal articles or web annotations onto your notes. 1. Download Zotero 2. Get the MDnotes addon from https://github.com/argenos/zotero-mdnotes 3. Activate the MDnotes plugin on Zotero by going to 'Tools > Add-ons > and drag and drop the plugin on the window' 4. Right click the media on Zotero and click MDnotes > Export to markdown. 5. Move your markdown note the respective folder on Dendron. I have found this works extremely well as it create proper tags, backlinks and bibliography for all media (web annotations, journal articles, articles, books). Make sure to import your notes and annotations into Zotero library. This works well while setting up your PKM such as Zettelkasten. Screenshot below.
  • b

    Bryan Jenks 🌱

    01/27/2022, 5:38 AM
    @User does amazing work!
  • c

    chmac

    01/27/2022, 10:41 AM
    Is there any reason to not run VSCode and VSCodium at the same time? I wonder if my performance issues could be related to that? I find VSCodium with dendron is often so unresponsive it's hard to believe, I wait 2-3s to be able to type just after cmd-tab'ing back to the app...
  • c

    chmac

    01/27/2022, 10:42 AM
    Oh no, I disabled dendron and it's the same! I have been wrongly accusing dendron! πŸ™ˆ
  • h

    hikchoi

    01/27/2022, 10:45 AM
    I've had the same experience too. with or without Dendron, I had trouble with VSCodium's performance. For me, Source control was constantly hogging up the resources and I wasn't motivated enough to try to fix it πŸ˜“
  • h

    hikchoi

    01/27/2022, 10:46 AM
    Do you see a perpetually running progress bar / spinner with any of the UI components related to source control?
  • k

    kevins8

    01/27/2022, 2:59 PM
    I think this is the issue -> https://github.com/VSCodium/vscodium/issues/718 i've noticed it ever since vscodium 1.56 and have had to stop using it entirely
  • c

    chmac

    01/27/2022, 3:16 PM
    Ahhhhhh. Well, that would explain it! Thanks a lot, that's a great help. Would also explain why disabling all extensions doesn't fix, but restarting with all extensions disabled does, probably because the core git stuff is disabled in the latter case. Okay, well, at least now I can figure out how to react. Thanks a lot for the link, really appreciate it.
  • h

    hikchoi

    01/27/2022, 3:25 PM
    Nice find! Well, not so nice. there seems to be no progress on the issue yet unfortunately.
  • s

    seadude

    01/27/2022, 4:30 PM
    Hello! Does anyone have an example of inserting a video into one of their Dendron/ReavealJS documents? - I've tried both link:
    ![](assets/videos/2022-01-27_BBounty_Example.MOV)
    AND - HTML
    Copy code
    <video width="640" height="480" controls>
      <source src="assets\videos\2022-01-27_BBounty_Example.MOV" type="video/mp4">
    </video>
    - Neither of them seem to work, I end up with a blank video player...
  • s

    SeriousBug

    01/27/2022, 4:37 PM
    You can embed YouTube videos. This would also work, but you should use a full path in
    src
    , and it won't work in the preview.
  • s

    seadude

    01/27/2022, 4:39 PM
    Ok. Do you know if ONLY YouTube videos can be embedded? Ideally, I need to insert a local video, can't be internet hosted. (Its a bug bounty proof-of-concept. Can't leak the content)
  • s

    seadude

    01/27/2022, 4:40 PM
    I'll try using full path and see it that works
  • s

    SeriousBug

    01/27/2022, 4:41 PM
    Anything served over HTTP will work, if you spin up a local server that would work too.
    s
    • 2
    • 26
  • h

    hikchoi

    01/27/2022, 5:01 PM
    VSCode's electron build doesn't ship with ffmpeg due to licensing and security concerns, so this means audio and video cannot be embedded inside webviews.
  • s

    seadude

    01/27/2022, 5:09 PM
    @User , @User found a way to make it work for this use case: - Need to host video locally - Using
    python
    server, serve the file up temporarily Another solution: - Host the .mov/.mp4 file in Azure Blob Storage - Set an expiration time for the URL - Add the URL to the vscode-reveal presentation
  • c

    chmac

    01/29/2022, 7:19 PM
    Made some progress on my dream of managing contacts in markdown. I've written the first draft of a md -> CardDAV sync utility. It's a cli app (in TypeScript) that might sort of work for my personal use case! https://github.com/GenerousLabs/md2carddav
  • d

    d1onys1us

    01/30/2022, 4:20 AM
    it seems like when i hit ctrl+enter on a backlink in a note, that it just inserts a new line instead of navigating to thew note. Is this expected behavior?
  • s

    SeriousBug

    01/30/2022, 4:32 AM
    Can you open the keyboard shortcuts configuration and search for "Ctrl+enter"? It probably conflicts with the shortcut from another extension
  • d

    d1onys1us

    01/30/2022, 4:38 AM
    yeah that seems to be the issue
  • d

    d1onys1us

    01/30/2022, 4:39 AM
    do you know if keyboard shortcuts are local to the dendron workspace or global to the vscode instance?
  • d

    d1onys1us

    01/30/2022, 4:40 AM
    im just wondering so i can version it
  • s

    SeriousBug

    01/30/2022, 4:40 AM
    I think it's global normally but you can also overwrote them per workspace
  • d

    d1onys1us

    01/30/2022, 4:40 AM
    i c
  • u

    user

    01/30/2022, 8:40 AM
    Is it possible to make one note to belong to two hierarchies? For example, I have my literature notes in
    book.subject.author.md
    , but the same citation could be used in different project/articles i write. So I want
    book.subject.author.md
    to belongs to "book" hierarchy and to "subject" hierarchy. Or something like
    project1.book.subject.author.md
    and
    project2.book.subject.author.md
    but the same note. I doubt it's possible, but asking just in case. πŸ™‚
  • s

    SeriousBug

    01/30/2022, 9:06 AM
    How about decoupling the author from the book/subject instead? Have
    authors.author-name
    notes, then link to them in
    projectX.book.subject
    . Would that work for your use case?
  • u

    user

    01/30/2022, 9:42 AM
    @User I am organize my citations this way now, plus some fine tuning with tags. The plus of multi hierarchies is that you will have nice visual representations in Tree view... But that is not essential.
1...111112113...148Latest