~rwv

52°N, 5°E

https://floss.social/@rwv

Hello! I am Remco. I write software.

~rwv/public-inbox

Last active 1 year, 9 months ago

~rwv/dezhemini

Last active 2 years ago

~rwv/ring-middleware

Last active 3 years ago

~rwv/semira

Last active 3 years ago
View more

Recent activity

Re: Fastmail patches may be adding ^M 1 year, 6 months ago

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.

Re: misleading/incorrect file mode permissions in tree view 1 year, 10 months ago

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.

Can not delete a mailing list 2 years ago

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?

[PATCH proof-specs] Improve README with example output 2 years ago

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]

[PATCH proof-specs] Cleanup reporting 2 years ago

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]

[PATCH core.sr.ht] pagination: escape search keys 4 years ago

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]