notEvil
notEvil
Hi, I did some surface and line plots recently and found the amount of aliasing rather distracting. Then I discovered SMAA and SSAA postprocessing in three.js and tried to add...
Hi, the following code ``` import ipyvolume import pythreejs import sys figure = ipyvolume.figure() controls = pythreejs.OrbitControls(controlling=figure.camera) if False: controls.maxAzimuthAngle = sys.float_info.max controls.maxDistance = sys.float_info.max controls.maxZoom = sys.float_info.max controls.minAzimuthAngle =...
Hi, a couple months ago I started using grocy and I like the app a lot! There is one thing that could make a big difference for me: In the...
Hi, when I run `python -c "import jnius; import time; print('here'); time.sleep(100)"` and interrupt it with Ctrl-C it doesn't raise the usual KeyboardInterrupt exception. Can you reproduce this, and is...
Hi, I implemented a custom renderer you might be interested in: https://gitlab.com/notEvil/mt-pango If you are and don't mind the extra dependencies, feel free to integrate it into mistletoe. mistletoe is...
Consider the following ``` KERNEL_PATH = '/opt/Mathematica/bin/WolframKernel' import wolframclient.evaluation as w_evaluation _ = 'Times[Exp[Times[Global`thetarho12, Plus[Times[0.5, Global`thetarho12, Plus[Power[Quantile[NormalDistribution[0, 1], Plus[1., Times[-1, CDF[NormalDistribution[Times[Plus[Exp[Times[-1, Global`thetatheta1, Global`thetax]], Times[-1, Exp[Times[-1, Global`thetatheta2, Global`thetax]]]], Global`thetatheta1, Power[Plus[Global`thetatheta2, Times[-1,...
imho it seems odd to get an f if a t,T or F follows an initial f. this patch disables the memory of the previous map and updates the character...
Hi, I'm wondering why the fan pwm -> rpm curve isn't* used for control curves. It would be nice to set (temperature, rpm) steps instead of (temperature, pwm). As a...
This adds an option specific to win32 which introduces a new filter. The existing filter either suppresses the event early in case of `raise ...`, or ignores the event and...
Hi, currently `__init__` (and `__new__`) and upper case function calls match to `@constructor`. It would be nice to have them match to separate targets imo. What about `@constructor.call`?