The Moon
See website for bio
From Sashanoraa to ~mtxyz/pronouns-inbox
This patch allows for users to create custom pronoun sets while keeping the site entirely static by using JS. I don't love JS so I'm not 100% happy with this, but I think it's the best way to go. Signed-off-by: Sashanoraa <sasha@noraa.gay> --- Oops, forgot to remove my debug log messages :p pronouns.py | 10 ++++++ templates/custom.html | 69 ++++++++++++++++++++++++++++++++++++ templates/custom_output.html | 68 +++++++++++++++++++++++++++++++++++ templates/index.html | 1 + 4 files changed, 148 insertions(+) create mode 100644 templates/custom.html create mode 100644 templates/custom_output.html [message trimmed]
From Sashanoraa to ~mtxyz/pronouns-inbox
Signed-off-by: Sashanoraa <sasha@noraa.gay> --- Noticed it was missing while developing other stuff templates/index.html | 1 + templates/pronouns.html | 1 + 2 files changed, 2 insertions(+) diff --git a/templates/index.html b/templates/index.html index fb43473..df4c566 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1,3 +1,4 @@ <!DOCTYPE html> <html> [message trimmed]
From Sashanoraa to ~mtxyz/pronouns-inbox
This patch allows for users to create custom pronoun sets while keeping the site entirely static by using JS. I don't love JS so I'm not 100% happy with this, but I think it's the best way to go. Signed-off-by: Sashanoraa <sasha@noraa.gay> --- I'm totally open to feedback on this/ I just whipped it up in an hour for fun so no pressure to merge it. pronouns.py | 10 ++++++ templates/custom.html | 69 +++++++++++++++++++++++++++++++++++ templates/custom_output.html | 70 ++++++++++++++++++++++++++++++++++++ templates/index.html | 1 + 4 files changed, 150 insertions(+) create mode 100644 templates/custom.html [message trimmed]
From Sashanoraa to ~mtxyz/pronouns-inbox
Signed-off-by: Sashanoraa <sasha@noraa.gay> --- templates/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/index.html b/templates/index.html index fb43473..8cf0588 100644 --- a/templates/index.html +++ b/templates/index.html @@ -4,7 +4,7 @@ <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>List of Pronouns</title>[message trimmed]
From Sashanoraa to ~kota/gemgen
Hello! I'd like to be able to point gemgen at a directory of markdown files and have it generate gemtext files for all of them in a different directory. While preserving the directory structure of the input directories. I would also like it to copy other files it finds to the output directory. And possible ignore certain files. For instance, my site looks like this: ├── faering-report │ ├── fig1.png │ ├── fig2.png │ ├── fig3.png
From Sashanoraa to ~sircmpwn/email-test-drive
Signed-off-by: Sashanoraa <sasha@noraa.gay> --- zethra | 1 + 1 file changed, 1 insertion(+) create mode 100644 zethra diff --git a/zethra b/zethra new file mode 100644 index 0000000..66cb3d4 --- /dev/null +++ b/zethra @@ -0,0 +1 @@ -- I have successfully used git send-email![message trimmed]
From Sashanoraa to ~sircmpwn/email-test-drive
Signed-off-by: Sashanoraa <sasha@noraa.gay> --- zethra | 1 + 1 file changed, 1 insertion(+) create mode 100644 zethra diff --git a/zethra b/zethra new file mode 100644 index 0000000..6d0ecfd --- /dev/null +++ b/zethra @@ -0,0 +1 @@ -- I'm about to try git send-email[message trimmed]
From Ben Goldberg to ~zethra/public-inbox
Thanks! Patch has been added. FYI I released a new version 2.6.1 today. Fixed an error in the WTPL license.
From Ben Goldberg to ~zethra/public-inbox
On 11/18/21 01:44, Billy Stevens wrote: > + meta = with lib; { > + description = "A fast line-oriented regex search tool, similar to ag and ack"; > + homepage = "https://git.sr.ht/~zethra/license"; > + license = licenses.mpl20; > + }; > +} > Looks like you forgot to change the package description.
From Ben Aaron Goldberg to ~kota/gemgen
This allows users/packages to add additional compiler flags Signed-off-by: Ben Aaron Goldberg <ben@benaaron.dev> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b689b9c..2acad9a 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ include config.mk all: clean build [message trimmed]