kwangkim

Results 5 comments of kwangkim

It is a bug in `sage`. Currently, `sage` cannot handle a path with spaces.

I still do not understand a precision 10 after rounding causes an incorrect answer. ```python from decimal import Decimal, getcontext getcontext().prec = 3 a=Decimal("-5.48") b=Decimal("-4.67") ra=round(a,1) rb=round(b,1) print(ra,rb,ra+rb) ``` gives...

I see. It seems that `Float` is a base 2 number and `Decimal` is a base 10 number. So `round` may not work properly with a base 2 number. I...

Your [contribution page](https://github.com/facebookincubator/exerslide/blob/master/CONTRIBUTING.md) does not explain how to test locally. Definitely, >npm test does not work. >npm install does not seem to install all packages for each package. Could you...

No.(Not yet. I may need to modify webpack.config for video.) I just modified ``` index.html exerslide-config.js presentation.js ReactFence.js (I remove div>p) ``` I also added a couple of js files(react...