Jan Max Meyer
Jan Max Meyer
Currently, `1 2 3 $1 + $3` produces `(1, 2, 3, 4)`, but it should be `(2, 4)` because `2` is not touched and `4` is calculated by `$1 +...
A unified syntax highlighting for Tokay's `.tok`-files should be made available for major editors. There had already been efforts for a simple syntax highlighting for [hljs](https://github.com/tokay-lang/tokay-docs/blob/main/tokay-highlight/tokay.js) and [sublime](https://github.com/tokay-lang/tokay-lang.github.io/blob/main/syntax/tokay.sublime-syntax). IMHO, there...
Hi there! I've started to port the current state of proSoar to Python 3.11 and already got that far, that I was able to build and run it locally. -...
A special ``-Tag could be used to identify the current html5.Widget-subclass. ```python class MyText(html5.Span): def __init__(self): super().__init__( """ Hello My Text """ ``` would result in ```html Hello My Text...
This is a feature-request for implementing slots. To implement such components ```html edit leave delete ``` It would be nice to have slots, where the content of the popout will...
Hi there! I just installed epymc on a Raspberry Pi (Arch Linux ARM) and I'm really impressed about the cool look and usability, also because I use Enlightenmnet as desktop...
Hi there, I've added support for images provided as StringIO objects to fpdf. Maybe it is useful to others. It was required by a cloud-based solution we created.
UniCC currently does *not* accept UTF-8 in its own input files! The stuff in README.md is a lie...this is awkward and crazy, and I wasn't rightly aware this is such...
Let's make a unicc target for Rust! This could be included into a v1.7 unicc version.
This issue resulted from further investigation into #127, when using the `Self` reference. ```tokay # Problem: XAssignment defaults to Self, which becomes __main__, but should be XAssignment XAssignment : @...