home.social

#elfeed — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #elfeed, aggregated by home.social.

fetched live
  1. I've implemented some great performance improvements in #Elfeed, the Atom/RSS feed reader for #Emacs.

    - Save database when idle to avoid pauses.
    - Use libxml for feed parsing by default instead of xml.el.
    - Truncate the search list for faster display, with a button to show more.
    - Header line caching for faster redisplay.

  2. I've implemented some great performance improvements in #Elfeed, the Atom/RSS feed reader for #Emacs.

    - Save database when idle to avoid pauses.
    - Use libxml for feed parsing by default instead of xml.el.
    - Truncate the search list for faster display, with a button to show more.
    - Header line caching for faster redisplay.

  3. I've implemented some great performance improvements in #Elfeed, the Atom/RSS feed reader for #Emacs.

    - Save database when idle to avoid pauses.
    - Use libxml for feed parsing by default instead of xml.el.
    - Truncate the search list for faster display, with a button to show more.
    - Header line caching for faster redisplay.

  4. I've implemented some great performance improvements in #Elfeed, the Atom/RSS feed reader for #Emacs.

    - Save database when idle to avoid pauses.
    - Use libxml for feed parsing by default instead of xml.el.
    - Truncate the search list for faster display, with a button to show more.
    - Header line caching for faster redisplay.

  5. I've implemented some great performance improvements in #Elfeed, the Atom/RSS feed reader for #Emacs.

    - Save database when idle to avoid pauses.
    - Use libxml for feed parsing by default instead of xml.el.
    - Truncate the search list for faster display, with a button to show more.
    - Header line caching for faster redisplay.

  6. Trying to set up #elfeed (rss reader in #emacs). Key requirement was to sync with something that can also sync to my phone — no problem, I thought, there’s an extension for that (elfeed-protocol).

    It doesn’t support Feedbin, which is what I currently use; but I’m not committed to Feedbin, would use any supported by netnewswire. Newsblur, TheOldReader, etc all seemed like options — or even selfhosting miniflux.

    Except it turns out they don’t support syncing the read status, so if I read on my phone (or web), it won’t be reflected in emacs. None of the workarounds seem to actually… work. Back to the drawing board.

  7. Trying to set up #elfeed (rss reader in #emacs). Key requirement was to sync with something that can also sync to my phone — no problem, I thought, there’s an extension for that (elfeed-protocol).

    It doesn’t support Feedbin, which is what I currently use; but I’m not committed to Feedbin, would use any supported by netnewswire. Newsblur, TheOldReader, etc all seemed like options — or even selfhosting miniflux.

    Except it turns out they don’t support syncing the read status, so if I read on my phone (or web), it won’t be reflected in emacs. None of the workarounds seem to actually… work. Back to the drawing board.

  8. ben @benjamineskola ·

    Trying to set up (rss reader in ). Key requirement was to sync with something that can also sync to my phone — no problem, I thought, there’s an extension for that (elfeed-protocol).

    It doesn’t support Feedbin, which is what I currently use; but I’m not committed to Feedbin, would use any supported by netnewswire. Newsblur, TheOldReader, etc all seemed like options — or even selfhosting miniflux.

    Except it turns out they don’t support syncing the read status, so if I read on my phone (or web), it won’t be reflected in emacs. None of the workarounds seem to actually… work. Back to the drawing board.

  9. Trying to set up #elfeed (rss reader in #emacs). Key requirement was to sync with something that can also sync to my phone — no problem, I thought, there’s an extension for that (elfeed-protocol).

    It doesn’t support Feedbin, which is what I currently use; but I’m not committed to Feedbin, would use any supported by netnewswire. Newsblur, TheOldReader, etc all seemed like options — or even selfhosting miniflux.

    Except it turns out they don’t support syncing the read status, so if I read on my phone (or web), it won’t be reflected in emacs. None of the workarounds seem to actually… work. Back to the drawing board.

  10. Trying to set up #elfeed (rss reader in #emacs). Key requirement was to sync with something that can also sync to my phone — no problem, I thought, there’s an extension for that (elfeed-protocol).

    It doesn’t support Feedbin, which is what I currently use; but I’m not committed to Feedbin, would use any supported by netnewswire. Newsblur, TheOldReader, etc all seemed like options — or even selfhosting miniflux.

    Except it turns out they don’t support syncing the read status, so if I read on my phone (or web), it won’t be reflected in emacs. None of the workarounds seem to actually… work. Back to the drawing board.

  11. This is an interesting example of a subtle package interaction of two unrelated packages. Since Elfeed used find-file-noselect (instead of the more appropriate insert-file-contents) to load the database, Hywiki started to scan the buffer. The consequence was that database loading took five minutes for a 65M database.

    github.com/emacs-elfeed/elfeed

    #emacs #elfeed

  12. This is an interesting example of a subtle package interaction of two unrelated packages. Since Elfeed used find-file-noselect (instead of the more appropriate insert-file-contents) to load the database, Hywiki started to scan the buffer. The consequence was that database loading took five minutes for a 65M database.

    github.com/emacs-elfeed/elfeed

    #emacs #elfeed

  13. This is an interesting example of a subtle package interaction of two unrelated packages. Since Elfeed used find-file-noselect (instead of the more appropriate insert-file-contents) to load the database, Hywiki started to scan the buffer. The consequence was that database loading took five minutes for a 65M database.

    github.com/emacs-elfeed/elfeed

    #emacs #elfeed

  14. This is an interesting example of a subtle package interaction of two unrelated packages. Since Elfeed used find-file-noselect (instead of the more appropriate insert-file-contents) to load the database, Hywiki started to scan the buffer. The consequence was that database loading took five minutes for a 65M database.

    github.com/emacs-elfeed/elfeed

    #emacs #elfeed

  15. This is an interesting example of a subtle package interaction of two unrelated packages. Since Elfeed used find-file-noselect (instead of the more appropriate insert-file-contents) to load the database, Hywiki started to scan the buffer. The consequence was that database loading took five minutes for a 65M database.

    github.com/emacs-elfeed/elfeed

    #emacs #elfeed

  16. Turns out the old Elfeed database-loading code left much to be desired:

    github.com/emacs-elfeed/elfeed

    Instead of find-file-noselect one should better use insert-file-contents. Interestingly, the problem was uncovered by an interaction with @rsw's Hywiki from the Hyperbole package.

    #emacs #elfeed

  17. Turns out the old Elfeed database-loading code left much to be desired:

    github.com/emacs-elfeed/elfeed

    Instead of find-file-noselect one should better use insert-file-contents. Interestingly, the problem was uncovered by an interaction with @rsw's Hywiki from the Hyperbole package.

    #emacs #elfeed

  18. Turns out the old Elfeed database-loading code left much to be desired:

    github.com/emacs-elfeed/elfeed

    Instead of find-file-noselect one should better use insert-file-contents. Interestingly, the problem was uncovered by an interaction with @rsw's Hywiki from the Hyperbole package.

    #emacs #elfeed

  19. Turns out the old Elfeed database-loading code left much to be desired:

    github.com/emacs-elfeed/elfeed

    Instead of find-file-noselect one should better use insert-file-contents. Interestingly, the problem was uncovered by an interaction with @rsw's Hywiki from the Hyperbole package.

    #emacs #elfeed

  20. Turns out the old Elfeed database-loading code left much to be desired:

    github.com/emacs-elfeed/elfeed

    Instead of find-file-noselect one should better use insert-file-contents. Interestingly, the problem was uncovered by an interaction with @rsw's Hywiki from the Hyperbole package.

    #emacs #elfeed

  21. As an #Emacs user who reads #Atom and #RSS feeds since the 90s on a daily basis to all users of #elfeed:

    If you're using elfeed non exclusively, how do you sync the read-status of your feed subscriptions?

    If elfeed exclusively: why aren't you reading feeds on mobile/tablet? At least for me, mobile is my main feed consumption platform.

    I read feeds...

  22. As an #Emacs user who reads #Atom and #RSS feeds since the 90s on a daily basis to all users of #elfeed:

    If you're using elfeed non exclusively, how do you sync the read-status of your feed subscriptions?

    If elfeed exclusively: why aren't you reading feeds on mobile/tablet? At least for me, mobile is my main feed consumption platform.

    I read feeds...

  23. As an #Emacs user who reads #Atom and #RSS feeds since the 90s on a daily basis to all users of #elfeed:

    If you're using elfeed non exclusively, how do you sync the read-status of your feed subscriptions?

    If elfeed exclusively: why aren't you reading feeds on mobile/tablet? At least for me, mobile is my main feed consumption platform.

    I read feeds...

  24. As an #Emacs user who reads #Atom and #RSS feeds since the 90s on a daily basis to all users of #elfeed:

    If you're using elfeed non exclusively, how do you sync the read-status of your feed subscriptions?

    If elfeed exclusively: why aren't you reading feeds on mobile/tablet? At least for me, mobile is my main feed consumption platform.

    I read feeds...

  25. As an #Emacs user who reads #Atom and #RSS feeds since the 90s on a daily basis to all users of #elfeed:

    If you're using elfeed non exclusively, how do you sync the read-status of your feed subscriptions?

    If elfeed exclusively: why aren't you reading feeds on mobile/tablet? At least for me, mobile is my main feed consumption platform.

    I read feeds...

  26. Today I have released version 4.0.0 of Elfeed, the Emacs feed reader.

    The release includes many new features, bug fixes and improvements across all parts of the package. Take a look at the extensive changelog:

    github.com/emacs-elfeed/elfeed

    The commit:
    github.com/emacs-elfeed/elfeed

    ELPA:
    elpa.nongnu.org/nongnu/elfeed.

    #elfeed #emacs #rss #atom

  27. Today I have released version 4.0.0 of Elfeed, the Emacs feed reader.

    The release includes many new features, bug fixes and improvements across all parts of the package. Take a look at the extensive changelog:

    github.com/emacs-elfeed/elfeed

    The commit:
    github.com/emacs-elfeed/elfeed

    ELPA:
    elpa.nongnu.org/nongnu/elfeed.

    #elfeed #emacs #rss #atom

  28. Today I have released version 4.0.0 of Elfeed, the Emacs feed reader.

    The release includes many new features, bug fixes and improvements across all parts of the package. Take a look at the extensive changelog:

    github.com/emacs-elfeed/elfeed

    The commit:
    github.com/emacs-elfeed/elfeed

    ELPA:
    elpa.nongnu.org/nongnu/elfeed.

    #elfeed #emacs #rss #atom

  29. Today I have released version 4.0.0 of Elfeed, the Emacs feed reader.

    The release includes many new features, bug fixes and improvements across all parts of the package. Take a look at the extensive changelog:

    github.com/emacs-elfeed/elfeed

    The commit:
    github.com/emacs-elfeed/elfeed

    ELPA:
    elpa.nongnu.org/nongnu/elfeed.

    #elfeed #emacs #rss #atom

  30. Today I have released version 4.0.0 of Elfeed, the Emacs feed reader.

    The release includes many new features, bug fixes and improvements across all parts of the package. Take a look at the extensive changelog:

    github.com/emacs-elfeed/elfeed

    The commit:
    github.com/emacs-elfeed/elfeed

    ELPA:
    elpa.nongnu.org/nongnu/elfeed.

    #elfeed #emacs #rss #atom

  31. J'ai essayé de mettre un flux rss dans #elfeed, ça veut pas, le message d'erreur ne dit pas pourquoi. Qui a donc pondu ça sans le recouvrir ?

    #feedbackBienveillant

  32. J'ai essayé de mettre un flux rss dans #elfeed, ça veut pas, le message d'erreur ne dit pas pourquoi. Qui a donc pondu ça sans le recouvrir ?

    #feedbackBienveillant

  33. J'ai essayé de mettre un flux rss dans #elfeed, ça veut pas, le message d'erreur ne dit pas pourquoi. Qui a donc pondu ça sans le recouvrir ?

    #feedbackBienveillant

  34. J'ai essayé de mettre un flux rss dans #elfeed, ça veut pas, le message d'erreur ne dit pas pourquoi. Qui a donc pondu ça sans le recouvrir ?

    #feedbackBienveillant

  35. J'ai essayé de mettre un flux rss dans #elfeed, ça veut pas, le message d'erreur ne dit pas pourquoi. Qui a donc pondu ça sans le recouvrir ?

    #feedbackBienveillant

  36. My first commit to Elfeed happened on April 30, so about a month ago. Clearly the current burst of activity is coming to an end. It is time for Elfeed 4.0 soon.

    github.com/emacs-elfeed/elfeed

    #emacs #elfeed

  37. My first commit to Elfeed happened on April 30, so about a month ago. Clearly the current burst of activity is coming to an end. It is time for Elfeed 4.0 soon.

    github.com/emacs-elfeed/elfeed

    #emacs #elfeed

  38. My first commit to Elfeed happened on April 30, so about a month ago. Clearly the current burst of activity is coming to an end. It is time for Elfeed 4.0 soon.

    github.com/emacs-elfeed/elfeed

    #emacs #elfeed

  39. My first commit to Elfeed happened on April 30, so about a month ago. Clearly the current burst of activity is coming to an end. It is time for Elfeed 4.0 soon.

    github.com/emacs-elfeed/elfeed

    #emacs #elfeed

  40. My first commit to Elfeed happened on April 30, so about a month ago. Clearly the current burst of activity is coming to an end. It is time for Elfeed 4.0 soon.

    github.com/emacs-elfeed/elfeed

    #emacs #elfeed

  41. Elfeed 4.0 is going to be a big release.

    In the last month there have been 448 commits by 17 developers, with 4499 additions and 2665 deletions. 175 issues have been closed and 18 PRs have been merged.

    github.com/emacs-elfeed/elfeed

    #emacs #elfeed

  42. Elfeed 4.0 is going to be a big release.

    In the last month there have been 448 commits by 17 developers, with 4499 additions and 2665 deletions. 175 issues have been closed and 18 PRs have been merged.

    github.com/emacs-elfeed/elfeed

    #emacs #elfeed

  43. Elfeed 4.0 is going to be a big release.

    In the last month there have been 448 commits by 17 developers, with 4499 additions and 2665 deletions. 175 issues have been closed and 18 PRs have been merged.

    github.com/emacs-elfeed/elfeed

    #emacs #elfeed

  44. Elfeed 4.0 is going to be a big release.

    In the last month there have been 448 commits by 17 developers, with 4499 additions and 2665 deletions. 175 issues have been closed and 18 PRs have been merged.

    github.com/emacs-elfeed/elfeed

    #emacs #elfeed

  45. Elfeed 4.0 is going to be a big release.

    In the last month there have been 448 commits by 17 developers, with 4499 additions and 2665 deletions. 175 issues have been closed and 18 PRs have been merged.

    github.com/emacs-elfeed/elfeed

    #emacs #elfeed

  46. I plan to release a new version of Elfeed soon. Version 4.0.0 will include many fixes, functional improvements and new features. Please let us know if you have found issues that should be fixed.

    The changelog:

    github.com/emacs-elfeed/elfeed

    #emacs #elfeed

    @karthink @yantar92

  47. I plan to release a new version of Elfeed soon. Version 4.0.0 will include many fixes, functional improvements and new features. Please let us know if you have found issues that should be fixed.

    The changelog:

    github.com/emacs-elfeed/elfeed

    #emacs #elfeed

    @karthink @yantar92

  48. I plan to release a new version of Elfeed soon. Version 4.0.0 will include many fixes, functional improvements and new features. Please let us know if you have found issues that should be fixed.

    The changelog:

    github.com/emacs-elfeed/elfeed

    #emacs #elfeed

    @karthink @yantar92

  49. I plan to release a new version of Elfeed soon. Version 4.0.0 will include many fixes, functional improvements and new features. Please let us know if you have found issues that should be fixed.

    The changelog:

    github.com/emacs-elfeed/elfeed

    #emacs #elfeed

    @karthink @yantar92

  50. I plan to release a new version of Elfeed soon. Version 4.0.0 will include many fixes, functional improvements and new features. Please let us know if you have found issues that should be fixed.

    The changelog:

    github.com/emacs-elfeed/elfeed

    #emacs #elfeed

    @karthink @yantar92

  51. This is why free software maintenance sucks:

    github.com/emacs-elfeed/elfeed

    This is the first thing I see today on the issue tracker. The code the user is worried about fits on two a4 pages, including the elfeed-dashboard.

    But yes, we can just stop updating anything.

    #emacs #elfeed

  52. This is why free software maintenance sucks:

    github.com/emacs-elfeed/elfeed

    This is the first thing I see today on the issue tracker. The code the user is worried about fits on two a4 pages, including the elfeed-dashboard.

    But yes, we can just stop updating anything.

    #emacs #elfeed

  53. This is why free software maintenance sucks:

    github.com/emacs-elfeed/elfeed

    This is the first thing I see today on the issue tracker. The code the user is worried about fits on two a4 pages, including the elfeed-dashboard.

    But yes, we can just stop updating anything.

    #emacs #elfeed

  54. This is why free software maintenance sucks:

    github.com/emacs-elfeed/elfeed

    This is the first thing I see today on the issue tracker. The code the user is worried about fits on two a4 pages, including the elfeed-dashboard.

    But yes, we can just stop updating anything.

    #emacs #elfeed

  55. This is why free software maintenance sucks:

    github.com/emacs-elfeed/elfeed

    This is the first thing I see today on the issue tracker. The code the user is worried about fits on two a4 pages, including the elfeed-dashboard.

    But yes, we can just stop updating anything.

    #emacs #elfeed

  56. Daily Elfeed service post ;)

    [error]: matem.unam.mx/~omar/apropos-em: "HTTP 404"

    @oantolin

    Do you see a problem on your side? Server down?

    #emacs #elfeed

  57. Daily Elfeed service post ;)

    [error]: matem.unam.mx/~omar/apropos-em: "HTTP 404"

    @oantolin

    Do you see a problem on your side? Server down?

    #emacs #elfeed

  58. Daily Elfeed service post ;)

    [error]: matem.unam.mx/~omar/apropos-em: "HTTP 404"

    @oantolin

    Do you see a problem on your side? Server down?

    #emacs #elfeed

  59. Daily Elfeed service post ;)

    [error]: matem.unam.mx/~omar/apropos-em: "HTTP 404"

    @oantolin

    Do you see a problem on your side? Server down?

    #emacs #elfeed

  60. Daily Elfeed service post ;)

    [error]: matem.unam.mx/~omar/apropos-em: "HTTP 404"

    @oantolin

    Do you see a problem on your side? Server down?

    #emacs #elfeed