Matt Kirk
Matt Kirk
When you run `yarn build` using NODE_ENV=development it will package it up using an eval in webpack. If you try `NODE_ENV=production yarn build` and remove the unsafe eval it should...
I know of a few people wanting anomaly detection but it can be a slippery road too. :wink: Also one more idea would be to introduce stdev to the statistics...
Yea my main fear is I don't want to try and recreate skylight or newrelic either. They do what they do well. As for the second concern. Assuming you have...
Updated thanks @PikachuEXE
well 💩 I'll look at it
It appears that sassc/sass has changed how line_comments show up relative to this test. It was reporting: `test/dummy/app/assets/stylesheets/css_scss_handler.css.scss` but the spec was asking for `/.+\/sassc-rails\/test\/dummy\/app\/assets\/stylesheets\/css_scss_handler.css.scss/` I did fix it as...
Hey there, so I've been working up some errata changes for the second pressing of the book. Is there anything specific that you can identify or is it a general...
hey @saun4app what version of python are you using? I've only tested this on 2.7 and have been planning on updating things to work on 3.5 for the reprint. Also...
``` df = (df - df.mean()) / (df.max() - df.min()) # this is a pandas dataframe self.df = df # dataframe # this is also a dataframe ``` df.mean() df.max()...
Also where did you get the code for the naive bayesian part? In this repo I see: ```python def body(self): payload = self.mail.get_payload() parts = [] if self.mail.is_multipart(): parts =...