Pierre Neidhardt
Pierre Neidhardt
https://github.com/Shinmera/feeder is a good option for RSS / Atom parsing _and_ serializing. I haven't compared it with https://github.com/ruricolist/cl-feedparser.
I haven't tested though.
I find hu.dwim.defclass-star to be one of the most convenient defclass wrapper. It adds a very useful `:export` keyword to slots as well as class options such as functions to...
I just realized that v2 seems to completely ignore softbreaks: http://spec.commonmark.org/0.26/#soft-line-breaks. Is it intentional or shall we implement it? We could solve that together with the linebreak consistency issue: #313
I tried using the following snippet: ``` (require 'cl-lib) (require 'color) (cl-loop for index from 1 to rainbow-delimiters-max-face-count do (let ((face (intern (format "rainbow-delimiters-depth-%d-face" index)))) (cl-callf color-saturate-name (face-foreground face) 30)))...
Please include it in the repository.
(Sorry, clicked the wrong button.) When starting the launcher, I get ```sh $ autorandr-launcher --verbose Connected to server Waiting for event Waiting for event ... ``` And it waits for...
In launcher's code: ```c static int ar_launch() { pid_t pid = fork(); if (pid == 0) { static char *argv[] = { "/usr/bin/autorandr", "--change", "--default", "default", NULL }; execve(argv[0], argv,...
This should be fixed: ``` # github.com/wtolson/go-taglib src/github.com/wtolson/go-taglib/taglib_test.go:258: T.Errorf format %d has arg year of wrong type string src/github.com/wtolson/go-taglib/taglib_test.go:262: T.Errorf format %d has arg track of wrong type string FAIL...
I haven't investigated into TagLib at all, just asking: is it possible to implement a function for writing arbitrary tags? Or at least the ones listed there: http://taglib.github.io/api/classTagLib_1_1PropertyMap.html? If not...