Christian Pietsch
Christian Pietsch
How do you mean "BASE does not have consistent language information"? As far as I can remember, you never raised this issue with BASE, @pkraker. Please send me an e-mail...
How about this (culled from https://unix.stackexchange.com/questions/6516/filtering-invalid-utf8 )? ``` perl -l -ne '/ ^( ([\x00-\x7F]) # 1-byte pattern |([\xC2-\xDF][\x80-\xBF]) # 2-byte pattern |((([\xE0][\xA0-\xBF])|([\xED][\x80-\x9F])|([\xE1-\xEC\xEE-\xEF][\x80-\xBF]))([\x80-\xBF])) # 3-byte pattern |((([\xF0][\x90-\xBF])|([\xF1-\xF3][\x80-\xBF])|([\xF4][\x80-\x8F]))([\x80-\xBF]{2})) # 4-byte pattern )*$...
Will [Encode::Guess](http://perldoc.perl.org/Encode/Guess.html) perhaps do the job? On an openSUSE server, you have [/usr/bin/guess_encoding](https://gist.github.com/pietsch/9370278). It's a GPLv2 Perl script but weirdly I cannot find the code online, so I put it...
By all means, let's try the simple solution first. It might do the job. I think that this issue is not related to #106 because my use case is non-replies.
Silly me just had the same problem using Apache. Turns out I had forgotten to install PHP.
Preventing people from visiting other websites is surveillance capitalist thinking that should not creep into Mastodon.
Doubling the buffer size as suggested by @jaycci fixed the false positive in Rocky Linux 9.3 (Blue Onyx) for me. It's based on RHEL. My currently running kernel is called...
I think I am halfway there. Not being a Ruby person, I do not know where to put the pandoc template toc.html (it has to be file) which looks like...
Yes, I have been trying to include the template into the Ruby gem, but I am still mystified about Ruby infrastructure tools.
Sorry, I have not found the time to learn the Ruby toolchain.