Nico Schlömer

Results 536 comments of Nico Schlömer

Yeah, tiptop isn't really made for dynamically choosing a network interface yet. I improved autoselection a bit (https://github.com/nschloe/tiptop/pull/83) so you get en0 by default. If that doesn't work, you can...

Sure! Pull requests welcome.

At first I thought: Why map the interval at all? Real-valued plots simply take the min and max values of the function on the plotted domain and identify those values...

One nice property of ``` x***alpha / (x**alpha + 1) ``` is that ``` f(x) = 1 - f(1/x) ``` This makes sure that when comparing inverses, e.g., `tan(z)` and...

I'm getting the same error when adding the calendar from freedom: ![freedom](https://cloud.githubusercontent.com/assets/181628/7765924/09ff667c-0064-11e5-962a-e839f507c64c.png) ``` Settings error: Could not fetch the url. ```

This issue prompted me to write my own MathJax extension, [Green Pi](https://github.com/nschloe/green-pi). It uses teh new MathJax and you can use it on all domains (GitHub and GitLab are the...

You could also just cache the uv cache directory, e.g., ```yaml - uses: actions/cache@v4 id: cache-uv with: path: ~/.cache/uv key: ${{ runner.os }}-python-${{ matrix.python-version }}-uv ```

What do you mean by "support"?

Yeah, I mean, it'd be great to have bifurcation point detection + branch switching. That's a challenging topic, but I've also been wanting to look into this for a while.

Oh man, I'd love to see a simple Python FEM package without C++ (beyond those in numpy/scipy). Anyway, this seems a little too specific with all the input argument. You'd...