52°N, 5°E
Hello! I am Remco. I write software.
From Remco van 't Veer to ~sircmpwn/sr.ht-discuss
I can confirm using git-send-email and fastmail works fine. My setup for receiving patches is through fastmail, mbsync and mu4e. For sending patches I use msmtp configured to use fastmail.
From Remco van 't Veer to ~sircmpwn/sr.ht-discuss
Why not go for drwx? Seems familiar enough, makes clear distinction between [d]irectory and e[x]ecutable and takes up less space. Other option, don't show the "file permissions" column when screen is not wide enough using a css media selector. The information is still available on the file detail page.
From Remco van 't Veer to ~sircmpwn/sr.ht-discuss
Hi, I'm rying to delete ~rwv/straatnaam mailing list but it won't go away. First time I tried it was a couple of weeks ago and when nothing happened after "a few minutes", I decided to check it the day after but forgot, now I see it's still here and I tried again, waited a few minutes and it's still there. Seems related to: https://lists.sr.ht/~sircmpwn/sr.ht-discuss/%3C63138eef-efa5-0f5d-11bd-abf65d430db8%40proton.me%3E Can somebody have a look?
From Remco van 't Veer to ~jomco/public-inbox
--- README.md | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 56 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3343fa8..cddd758 100644 --- a/README.md +++ b/README.md @@ -41,9 +41,40 @@ given errors. (proof-specs :num-vals 10 :include-regexps [#"your.ns.*"]) :include-regexps [#"nl.jomco.*"])[message trimmed]
From Remco van 't Veer to ~jomco/public-inbox
--- src/nl/jomco/proof_specs.clj | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/nl/jomco/proof_specs.clj b/src/nl/jomco/proof_specs.clj index 1e4297d..4302b6e 100644 --- a/src/nl/jomco/proof_specs.clj +++ b/src/nl/jomco/proof_specs.clj @@ -151,11 +151,11 @@ [k v])) (partition 2 args)) {:keys [specs problems]} (apply proof-specs opts)] (when problems (println "Problems generating data for" (count problems) "out of" (count specs) "specs:")[message trimmed]
From Remco van 't Veer to ~sircmpwn/sr.ht-dev
Fix for paging through, for instance, hashtag searches. --- srht/flask.py | 1 + 1 file changed, 1 insertion(+) diff --git a/srht/flask.py b/srht/flask.py index 3d17e57..74dd13e 100644 --- a/srht/flask.py +++ b/srht/flask.py @@ -112,6 +112,7 @@ def coalesce_search_terms(context): for key in ["search"] + (context.get("search_keys") or []): val = context.get(key) if val: val = quote_plus(val)[message trimmed]