jojo

Results 22 comments of jojo

@tdmalone I think this implementation is just an example, not implementing everything. Also, it's on nodejs, I think we could do it in Python. @Naramsim would be awesome indeed, but...

There's [this Firefox extension](https://github.com/FilipePS/Traduzir-paginas-web) which translates pages using Google Translate or Yandex. Would be nice to extend it to use a LibreTranslate backend.

Hey there, I agree with both. I opened #923 to add a warning in the tutorial. Can you take a look and see if that's good? Thanks!

Hey @DevanB, do you need any help on this one? Count on me!

Cool @d4vidB! I'm not an Ember dev, so I can't help you on that :( but I can go through it to test the whole thing once u are done,...

Hi there people, how are you doing? I'm sad that the project is a bit stale. I've become a maintainer not long ago, to review and merge just quick fixes...

Here is my `tmux.conf`. ``` bash # Plugins set -g @plugin 'tmux-plugins/tpm' set -g @plugin 'tmux-plugins/tmux-resurrect' set -g @plugin 'tmux-plugins/tmux-continuum' set -g @plugin 'tmux-plugins/tmux-urlview' # Set prefix unbind C-b set...

You could use external-dns annotations: ```yaml apiVersion: openfaas.com/v1alpha2 kind: FunctionIngress metadata: name: nodeinfo namespace: openfaas annotations: external-dns.alpha.kubernetes.io/hostname: example.com external-dns.alpha.kubernetes.io/ttl: "120" #optional spec: domain: "nodeinfo.myfaas.club" function: "nodeinfo" ingressType: "nginx" ``` Or...

Wow, that's cool! Personally, I prefer the first one, but if there's demand for a custom flag we can implement it. I'll test the `external-dns` and let you know. As...