From Valdemar Erk to ~kevinschoon/ayllu-dev
--- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 810ac35..74f230e 100644 --- a/README.md +++ b/README.md @@ -86,10 +86,10 @@ compiler to build the project. Additionally you also must have Installed on your system. For syntax highlighting to work you must have [tree-sitter-amalagamation](https://ayllu-forge.org/projects/tree-sitter-amalgamation) For syntax highlighting to work you must have [tree-sitter-amalagamation](https://ayllu-forge.org/attic/tree-sitter-amalgamation)[message trimmed]
From Valdemar Erk to ~kevinschoon/ayllu-dev
Just a small patch to fix the two dead links in the README.md file. Valdemar Erk (1): fix(docs): fix dead links in the readme README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) base-commit: f411141775b5000c04d94636ab54bb6719d59fc8 -- 2.44.0
From Valdemar Erk to ~laumann/cph-rs
> I couldn’t find the date or a link to an event in the email below. On the website <https://cph.rs/> the date is noted to be Thursday, 25 May.
From Valdemar Erk to ~sircmpwn/sr.ht-discuss
Hello, I have observed that on lists.sr.ht the site will report DKIM as missing if it is only signed with a 3rd party signature. 3rd party signature is if the `header.d` field in `Authentication-Results` has a different host part compared to the email address in the `From` header. This is allowed rfc5863, [0] but as it also says in it the value of such 3rd party domains is often heavily debated. A example of when 3rd party domains is used is if you are sending a mail from google and you have not set up DKIM for your domain Google will sign it with the domain <host>.<numbers>.gappssmtp.com, [1] where host is the host part of the from email and numbers are some date.
From Valdemar Erk to ~erk/inbox
I think it would be cleaner to make get_count return None instead of doing it inside of the match branch.
From Valdemar Erk to ~erk/inbox
Thanks for the PR, I have merged it in, I made a additional commit that implemented Deref for Context to ContextRef, such that we don't need to write ctx.0.* everywhere, but just ctx.*.
From Valdemar Erk to ~erk/inbox
On Wed, 01 Jul 2020 01:15:52 +0200, Ken Swenson wrote: > @@ -16,9 +16,9 @@ pub struct ThemeClient { > > impl ThemeClient { > pub fn new_rwc(rwc: ReqwestClient) -> GarfieldResult<Self> { > - let count_re = Regex::new(r#"<span class="pull-right">(?:\d+) of (\d+)</span>"#)?; > + let count_re = Regex::new(r#"(\d.*) Results for Garfield"#)?; > let comic_re = Regex::new( > - r#"src="https://d1ejxu6vysztl5.cloudfront.net/comics/garfield/[0-9]{4}/([0-9]{4}-[0-9]{2}-[0-9]{2}).gif"#, > + r#"src="<a itemprop='image' class=\"\" href=\"/garfield/([0-9]+/[0-9]+/[0-9]+)""#, > )?; > Ok(Self { > rwc,
From Valdemar Erk to ~erk/inbox
This is where the program hangs: > let comic_re = Regex::new( > - r#"src="https://d1ejxu6vysztl5.cloudfront.net/comics/garfield/[0-9]{4}/([0-9]{4}-[0-9]{2}-[0-9]{2}).gif"#, > + r#"src="<a itemprop='image' class=\"\" href=\"/garfield/([0-9]+/[0-9]+/[0-9]+)""#, > )?; I am not sure why `async_main` is not correctly terminated. The proper regex would be something along the lines of: > r#"src="<a itemprop='image' class="" href="/garfield/([0-9]+/[0-9]+/[0-9]+)""#, But changing it to that does not make it work.
From to ~sircmpwn/public-inbox
Hi Vince, Another licence I have been looking at recently have some of the same ideas behind as the MPL. I am talking about the European Union Public Licence (EUPL), it was designed to be used under the laws of the European union so how things are defined in it depends on the copyright rules of the EU. https://joinup.ec.europa.eu/collection/eupl/introduction-eupl-licence A thing I find nice about this licence is that it is only one I know of that have been translated into
From to ~erk/inbox
This is just an email to test the list and make sure that it works