crypto_monad

Results 11 comments of crypto_monad

This is probably an issue with your terminal/stdout not being set up to support unicode characters. This is more an issue of the environment; although I think that using unicode...

``` octave:8> output_precision(1) octave:9> A=[-1,1,0,0,0,0,0,0,1,1;1,-1,0,0,0,0,1,0,1,1;1,1,-1,0,0,0,0,1,0,1;0,0,1,-1,0,0,0,0,0,1;0,0,0,1,-1,1,0,0,0,1;0,0,0,0,0,-1,1,0,0,1;0,0,0,0,0,0,-1,0,1,1;0,0,0,0,0,0,0,-1,0,1;0,0,0,0,0,0,0,0,-1,1] A = -1 1 0 0 0 0 0 0 1 1 1 -1 0 0 0 0 1 0 1 1 1 1 -1...

Happens when running against `twschiller/open-synthesis`: ``` $ python --version Python 3.6.7 $ pip show python-taint Name: python-taint Version: 0.42 Summary: Find security vulnerabilities in Python web applications using static analysis....

@KevinHock sadly I was so far unable to fix this for the moment. I'll try to look into this after #177 and #180.

Looking forward to it, @lutzmor so far, the wifi adapter always gives me trouble either after a while or after suspend.

@lutzmor I have turned on most possible energy optimisations, and wifi is one of the big drains. I just plugged out my laptop with browser and terminal open, and medium...

I think it comes down to personal preference. Myself, I'm not a fan of implicit string to number conversions as I believe the time that is lost by hunting down...

While we're at it, `{{ True }}` gives null instead of `True`. Jinja2 accepts both, `true` and `True` as truthy values. Also, for the implementation of `not`, consider the following:...

Ah yes. With the above comment I wanted to make sure `not` behaves with non-boolens consistently; it wasn't about the output. Also, take care of operation ordering: functions (filters,tests) have...

A similar problem as with `not` also exists for `-` and `+`: Jinja2: ``` >>> Template('{{ - (22) }}').render() '-22' ``` Ginger: ``` echo "{{ -(22) }}" | stack exec...