Skip Navigation

Search

  • @farcaller @twistypencil @logseq just switched to Logseq after some time, tested Capacities, but I prefer outlining and ordering contents while tagging and linking...maybe a bit "anarchic" but enough for me.

  • @joseamastodon @twistypencil @logseq I’m aware of syncthing. That said, I moved back to obsidian a while ago and had a total of zero sync issues since :-)

    I do miss the outliner.

  • @farcaller @twistypencil @logseq try Syncthing, I have on mac, linux, android and iphone without problems. If you
    don't know syncthing do some tests before using with your real data.

  • Logseq @lemmy.ml
    logseq @clj.social
    BOT

    Logseq DB - Changelog

    Logseq DB - Changelog

    https://discuss.logseq.com/t/logseq-db-changelog/30013

    Changelog from: 2024-10-27 to: 2024-11-16 Enhancements Plugin Enhancements Enhanced block properties related APIs for plugins. [897d18f52] UI Enhancements Polish to select component [3da57d0ee], block control arrow [a4df98903], and classic...

    logseq #pkm [email protected] @[email protected]

    Logseq @lemmy.ml
    logseq @clj.social
    BOT

    Logseq DB Version Release Schedule?

    Logseq DB Version Release Schedule?

    https://discuss.logseq.com/t/logseq-db-version-release-schedule/29668

    Is it possible to know even an approximate schedule for when the Logseq DB version will be released as an installable version not web version? With a major feature overhaul progressing, it seems challenging to recommend the current version to...

    logseq #pkm [email protected] @[email protected]

    Logseq @lemmy.ml
    logseq @clj.social
    BOT

    What if I you had to move to Obsidian?

    What if I you had to move to Obsidian?

    https://discuss.logseq.com/t/what-if-i-you-had-to-move-to-obsidian/20733

    I recently asked myself how easy it would be to migrate to Obsidian if I had to stop using Logseq for some reason? I’m happy with Logseq, but like to know that I could switch if I had to - it gives me peace of mind about my data. The question is...

    logseq #pkm [email protected] @[email protected]

    Logseq @lemmy.ml
    Kai Klostermann @floss.social

    Just submitted a #Gruvbox theme to 😬😁

    Logseq @lemmy.ml
    farcaller @hdev.im

    @twistypencil I've a mix of windows, mac and iphone. Git is regularly screwed up on the windows box.

    @twistypencil @logseq I've a mix of windows, mac and iphone. Git is regularly screwed up on the windows box.

    Logseq @lemmy.ml
    farcaller @hdev.im

    I think I'm (sadly) done with . It corrupted some data again and when I went to pull the stuff from git I figured it corrupted the .git/config even earlier than that. So now I have to pull the

    I think I'm (sadly) done with @logseq. It corrupted some data again and when I went to pull the stuff from git I figured it corrupted the .git/config even earlier than that. So now I have to pull the correct content from an old windows backup, ffs. What if I didn't have a full disk backup?

    I like the idea of block references, I love the query engine and the simple UI. But data safety comes first, really. Logseq is a forever beta at this point.

    I really like the concepts behind the logseq db version but @obsidian doesn't fuck with my data and you can see good iterative progress of its development. Yeah, it's not opensource. It's open data format, though, something logseq db will have to figure out eventually anyway.

  • I hope this helps, I'm not entirely sure what/how you want to search on the all quotes page, but there seems to be enough power with advanced queries to get you there.

    I tinkered a bit and seem to have found a way, but not sure how powerful the searching needs to be. The rule is overboard as it is showing some techniques for grabbing the data, transforming it and making a custom view. There are extra fields that aren't used, but might be easier to update the :view to include extra fields as needed.

     clojure
        
    #+BEGIN_QUERY
    {
      :title [:h3 "Author Quotes"]
        :inputs ["Anotherauthor"]          ; could be set to :current-page if included on the Authors page
        :query [
        :find (pull ?b [*]) ?p ?author ?rating ?topics ?pagecount
          :in $ ?authorquery            ; name of the input
          :keys block book author rating topics pagecount 
          :where 
          [?t :block/name "quote"]      ; id of [[Quote]]
          [?b :block/refs ?t ]          ; block referencing [[Quote]]
            [?b :block/page ?p]         ; get id of page
              [?b :block/page ?page]
                [?p :block/properties ?pageprops]
                  [(get ?pageprops :type) ?pagetype]
                    (or [(= ?pagetype "Book")] [(contains? ?pagetype "Book")])         ; is this a Book?
                      [(get ?pageprops :author) ?author]
                    (or [(= ?author ?authorquery)] [(contains? ?author ?authorquery)]) ; is this by input Author? -- comment out line to make all books
                      [(get ?pageprops :topics) ?topics]
                      [(get ?pageprops :pages) ?pagecount]
                      [(get ?pageprops :rating) ?rating]
        ]
          :result-transform (fn [result] 
              (for [row (sort-by :date result)] 
               (let [block-map (get row :block)
                current-properties (:block/properties block-map)
                block-page (:block/page block-map)
                book (:block/original-name block-page)
                authors (:author row)
                updated-properties (assoc current-properties   ; attach book properties to block
                  :booktitle book
                  :topics (:topics row)
                  :pagecount (:pagecount row) 
                  :rating (:rating row)
                  :author authors
                  )]
                (assoc block-map :block/properties updated-properties)
               ) ;end let
              ) ;end for
              ) ;end fn
          ;:view :pprint   ; raw data view for debugging
          :view (fn [rows] [:table   ; uncomment lines below to include author column
              [:thead [:tr 
              [:th "💬Quote"]
              [:th "📖Book"]
    ;          [:th "✏️Author"] 
              ]] [:tbody (for [r rows] [:tr
                [:td [:a 
                    {:href (str "#/page/" (get-in r [:block/uuid]))} 
                    (clojure.string/replace (get-in r [:block/content]) "#Quote" "")
                ]]
                [:td [:a 
                    {:href (str "#/page/" (clojure.string/replace (get-in (get-in r [:block/properties]) [:booktitle]) "/" "%2F"))} 
                    (clojure.string/replace (get-in (get-in r [:block/properties]) [:booktitle]) "Book/" "")
                ]]
    ;            [:td (for [author (get-in (get-in r [:block/properties]) [:author])]
    ;              [:span [:a 
    ;                {:href (str "#/page/" (clojure.string/replace (str author) "/" "%2F"))} 
    ;                (clojure.string/replace (str author) "Author/" ""
    ;                )] 
    ;                (if-not (= author (last (get-in (get-in r [:block/properties]) [:author]))) ", ")]
    ;            )]
              ])]
          ])
    }
    #+END_QUERY
    
    
      
  • Logseq @lemmy.ml
    Brayd @discuss.tchncs.de

    Quotes and books in Logseq - My way off from Notion and Obsidian?

    Hello all, I am donating to Logseq since some time to support the development. However I am not actively using it and are still stuck with Obsidian and/or Notion since I am missing a good structure to organize my books and quotes.

    I really want to switch but I can't figure this out. For storing books that's fine. I can create a page per book and give it some metadata that I can then use to filter and search. Like that:

    Now however as you can see I'm writing quotes (Zitate in German) and my opinion on them (Meinung in German) in the book's page.

    And here comes the tricky part:

    • I want a general overview of all quotes that I can search
    • I want an overview of quotes per author (the author is in the page properties so it has to basically do something like `"select all pages of typ = book where autor = author and collect all quotes on them (pag
    Logseq @lemmy.ml
    Tim Abell @mastodon.social

    Essential tools for retaining sanity and productivity between contracts:

    Essential tools for retaining sanity and productivity between contracts:
    sunsama daily planning
    trello + #GTD method
    @logseq for notes & journalling

    Trello+GTD info here: https://timwise.co.uk/2020/09/15/effective-gtd-with-trello/

    Logseq @lemmy.ml
    Weiming Hu @mapstodon.space

    Question on Logseq advanced query. Can anybody help here? 😩

    Logseq @lemmy.ml
    Ken Oh @lemm.ee

    Is there a way to add multiple templates to the daily journal?

    Hi all, I've been getting into logseq over the past month, and it's what I've always wanted for many reasons.

    For my work instance, I would really like to have it just pop up with this in the morning 2024-04-15

    • [[project a]]
    • [[project b]]
    • [[project c]] etc...

    But, I've looked at config.edn to find :default-templates {:journals "project a"}

    Which works, but I can't figure out if it's possible to add multiple. I've tried spaces, commas, multiple lines, and it all kicks back errors. Anyone have any idea?

    Logseq @lemmy.ml
    Alex @mastodon.social

    Been trying trying out . I love that I can just dump everything and it will organize it for me! What I like: #notes are stored locally in markdown files (can backup w github), #orgmode

    Been trying trying out @logseq. I love that I can just dump everything and it will organize it for me! What I like: #notes are stored locally in markdown files (can backup w github), #orgmode compatibility, and ofc #foss. Althought I'd love to see a #vim editing plugin :) https://logseq.com/

    Logseq @lemmy.ml
    jeff @friendica.opensocial.space

    EN: A question for the LogSeq experts: is it possible to design the different graphs differently? I always have several graphs open at the same time and would like to recognise immediately which graph

    EN: A question for the LogSeq experts: is it possible to design the different graphs differently? I always have several graphs open at the same time and would like to recognise immediately which graph I am in.
    --
    DE: Eine Frage an die LogSeq-Experten: gibt es die Möglichkeit, die verschiedenen Graphen optisch unterschiedlich zu gestalten? Ich habe ständig mehrere Graphen parallel offen und möchte sofort erkennen, in welchem Graphen ich mich befinde.

    LogSeq

    Logseq @lemmy.ml
    holodigital /virpeen @mastodon.social
    Logseq @lemmy.ml
    Robin Opletal @mastodon.social

    Hm, (https://lemmy.ml/c/logseq) requires a contributors license agreement (CLA (https://mastodon.social/tags/cla) ) to sign over all contributor's code to the company, so does the [@jop

    Hm, @logseq requires a contributors license agreement (CLA #cla ) to sign over all contributor's code to the company, so does the @joplinapp, with @joplinapp also having the server component source-available.

    @obsidian is closed-source, wants $50/yr for a commercial license, paired with their $10/mo for sync - that's a lot of dollars for note taking.

    Alternatives, anyone? Ideally open source to which I can contribute financially, without a CLA that will inevitably mean a change in licensing.

    Logseq @lemmy.ml
    Hendrik Bunke @openbiblio.social

    (https://lemmy.ml/c/logseq) is incredibly good. Just sayin'.

    @logseq is incredibly good. Just sayin'.

    logseq #enthusiastic

    Logseq @lemmy.ml
    Ted M. Young @sfba.social

    Ugh. So frustrated with iClouds unreliable syncing across devices. I use @logseq, but it relies on iCloud doing its job. Which it ain't.

    Looks like I'll have to move to Dropbox for syncing, which means reinstalling it everywhere since there's no config setting (that I can find) to tell it where to look for its files.

    Logseq @lemmy.ml
    alexanderniki @techhub.social

    I'been using (https://lemmy.ml/c/logseq) for a couple of weeks. In the beginning it was kind of unusual. Then, I got used to it and now I feel myself comfortable. I love notetaking again.

    I'been using @logseq for a couple of weeks. In the beginning it was kind of unusual. Then, I got used to it and now I feel myself comfortable. I love notetaking again.

    Logseq @lemmy.ml
    André Claaßen @ruhr.social

    Liebe (https://lemmy.ml/c/logseq) , weil ich damit so schön YouTube Videos kommentieren kann. Cooles Tool.

    Liebe @logseq , weil ich damit so schön YouTube Videos kommentieren kann. Cooles Tool.

    Logseq @lemmy.ml
    Europeo @mastodon.uno

    (https://lemmy.ml/c/logseq) hi guys, when will we see the implementation of the new logo?

    @logseq hi guys, when will we see the implementation of the new logo?