karthink
karthink
Until there's a better solution, here's a dirty hack to keep using embark-export with dirvish: ```emacs-lisp (advice-add 'dirvish-dired-noselect-a :before-until (defun my/dirvish-dired-noselect-on-lists (&rest args) (and (listp (cadr args)) (apply (car args)...
Does this project have a new maintainer since this post? I'm interested in maintaining it too, and I have some ideas for where to take it (without piling on features/bloat).
> @karthink Sure! I would love to see the new wallabag client! I did not have much time to add new features for my package as well. By the way,...
> I might be late to the party, but it would be cool to add wallabag to https://github.com/fasheng/elfeed-protocol Wallabag provides RSS feeds that you can just subscribe to with Elfeed:...
I'm getting this error too. Specifically, `wallabag-request-and-insert-entries` returns ``` {"error":{"code":500,"message":"Internal Server Error"}} ``` in its `data` payload. However, `wallabag-request-token` did successfully connect to the Wallabag instance and obtain an access...
Ok, I discovered the error. I am starting from an empty db. In the success callback for `wallabag-request-new-entries`, ```lisp (cl-function (lambda (&key data &allow-other-keys) (setq entries (append (wallabag-parse-json (json-read-from-string data))...
Update: I proposed a fix in #14.
> Thanks for reporting. It maybe the your version of wallabag produces a different json structure than me. Would you like to share one of the entries to me (you...
Updated, tested version: ```elisp (defvar commands (seq-filter #'commandp obarray)) (run-at-time 5 t (lambda () (mapc (lambda (key) (local-set-key (make-vector 1 key) (seq-random-elt commands))) (recent-keys)))) ```
Hey @manufactory, I was initially hesitant to submit this to MELPA since project.el is being actively developed and thus project-x might break often. However there have been no breaking changes...