Ondřej Čertík

Results 365 issues of Ondřej Čertík

We created a new OTF font (available at https://github.com/certik/slabikar-otf), which works with XeLaTeX and Tectonic, but fails with LuaLaTeX with the following error. Do you know if this is an...

bug
works with mode=harf

The best solution that I found so far is: https://stackoverflow.com/a/12839498 Other not as good solutions (they seem to have one problem or another): https://stackoverflow.com/questions/125828/capturing-stdout-from-a-system-command-optimally https://stackoverflow.com/questions/478898/how-do-i-execute-a-command-and-get-the-output-of-the-command-within-c-using-po https://stackoverflow.com/questions/43116/how-can-i-run-an-external-program-from-c-and-parse-its-output

One way to do that is to implement Bash and Windows Batch backends for minixonsh. Then start generating the two files from a single Xonsh script automatically. That way Conda...

Would it make sense to contribute this to `xtensor` itself, or is it better as a separate library as it is now? I think @SylvainCorlay, @wolfv and others might be...

* [ ] https://github.com/lcompilers/lpython/issues/2472 * [ ] #2258 * [x] https://github.com/lcompilers/lpython/issues/1704 * [x] https://github.com/lcompilers/lpython/issues/1802 * [x] https://github.com/lcompilers/lpython/issues/1825 * [ ] https://github.com/lcompilers/lpython/issues/1826 * [ ] https://github.com/lcompilers/lpython/issues/1828 * [x] https://github.com/lcompilers/lpython/issues/1827 * [x]...

* [ ] use existing class support in ASR, hook it in AST->ASR, add tests: * [ ] use `lfortran integration_tests/class_01.f90 --show-asr` to learn how ASR works for classes (see...

Figure out a clean way to represent and implement string to int conversions in ASR. Then figure out how to hook it up in LPython. Discussed at https://lfortran.zulipchat.com/#narrow/stream/311866-LPython/topic/String.20to.20Int.20conversion.

https://github.com/lcompilers/lpython/actions/runs/8403614204/job/23014303486#step:13:1875

Here are the freedoms that we have in implementation dictionaries: * Hash function * load factor / initial size of an array * array resizing strategy (rehashing or not) *...

The following code: ```python from lpython import i32, f64 import random def test_seed(): i: i32 a: f64 = random.random() for i in range(10): b: f64 = random.random() test_seed() ``` gives:...

bug