Liam Keegan

Results 10 comments of Liam Keegan

Maybe you don't have the `de_DE.UTF-8` locale on your system? (I think an invalid setlocale call is just silently ignored) Here is a fork with the extra line: https://github.com/symengine/symengine/compare/master...lkeegan:master and...

This is a dependency missing from wxPython: https://github.com/wxWidgets/Phoenix/issues/2225

- std::from_chars is significantly faster than strtod: https://quick-bench.com/q/sBL71XcFMu2N8MGvh5s_GoNHxD8 - this gives ~20% reduction in overall parse time in the benchmarks of expressions with many doubles

> `std::from_chars` has the potential of being the fastest possible parsing function. If I remember correctly the implementation of this in `libstdc++` was very delayed or even never implemented. I...

So it seems that just checking for c++17 at compile time was not sufficient as standard library support for `from_chars` (including parsing floating point values) is incomplete for: - libstdc++...

@isuruf would you have time to take a look at this at some point? It would be nice to resolve #1566

@tillea I've made an initial attempt at this in #41 if helpful for you I don't actually use this software directly so haven't been able to test it, but at...

@tillea thanks for testing - I didn't notice the tests folder! [1c872fa10](https://github.com/seqan/flexbar/pull/41/commits/1c872fa10d474f090633fc95d409aa60607a3f96) should fix the endless loop and another issue that came up with the pipeline changes, and now the...

@isuruf `sysctl -n machdep.cpu.brand_string` gives `Intel(R) Xeon(R) CPU E5-1650 v2` these are quite old cpus that don't have support for instruction sets such as `avx2`, maybe the CRAN version of...

Example of use: `jupyter nbconvert tests/files/notebook1.ipynb --to slides --execute --SlidesExporter.reveal_header="Here is the header" --SlidesExporter.reveal_backimage="https://images.pexels.com/photos/255379/pexels-photo-255379.jpeg" --SlidesExporter.reveal_footer="Here is the footer"` ![image](https://github.com/jupyter/nbconvert/assets/12845624/52230819-1e51-4db0-a43b-a83fcf60843f)