Igor Chubin
Igor Chubin
There are several problems related to complex scripts rendering: * [ ] Fix formatting issues in browser * [ ] Fix formatting issues in terminal * [ ] PNG rendering...
Current translation is available at: https://ar.wttr.in To do: * [X] Add initial translation to Arabic * [x] RTL-script support (in terminal) * [ ] RTL-script support (in browser) * [X]...
Translate: * header ("Weather report") * names of the time periods (morning, noon, evening, night) * error messages (https://github.com/chubin/wttr.in/blob/master/lib/translations.py) * help * weather condition names (https://github.com/chubin/wttr.in/tree/master/share/translations)
v3.wttr.in works, but it is the first, minimal viable implementation, and it has a lot of different bugs. All known bugs and feature requests should be gathered here.  Bugs:...
1. Automatically pass information about the terminal in HTTP headers It would be great (when some special key, something like -t) is specified, to pass information about the terminal (to...
(from email discussion with Jakub) 2. Magic mode (or busybox, or httpbox mode) If would be greate if it would be possible to add a new mode to HTTPie, that...
```python @app.route('/', defaults={'path': ''}, methods=['GET', 'POST']) def catch_all(path): session_id = 'tettris' if session_id not in sessions: session = Session() sessions[session_id] = session else: session = sessions[session_id] session.start() queue = register_queue()...
Very interesting project. I thought about writing something like this myself, but as you already wrote it, I can save some time :) Thank you very much for it. One...
Consider this Python 3 code: ``` # -*- coding: utf-8 -*- from __future__ import print_function, unicode_literals import pyte if __name__ == "__main__": emoji_string = "☁️" print(emoji_string.encode("utf-8").hex()) print("---") screen = pyte.Screen(80,...
I am not sure that it is a big, and I rather suppose that I am doing something wrong, but maybe you could help me with this. While signing a...