Michael Ebert

Results 11 issues of Michael Ebert

https://github.com/jonschlinkert/remarkable Remarkable allows to add language extensions via plugins. This would be a desirable feature. Additionally, remarkables option would be also a idea.

I've some data series which look like this: ``` javascript let series = [{ name: 'test', values: [{date: new Date(), count: 3}] }]; ``` I forked the LineChart Fiddle to...

bug

Hi, we are currently evaluating humhub as a replaced for Liferay and wonder if it is possible to enable WEBDav for the files in the spaces. Regards Michael

enhancement

Meta issue - the following list contains possible functions that may be implemented in the near future. ## Array Functions - [x] numpy.transpose(axes) [use existing numpy.ndarray.tranpose()] - [ ] numpy.add...

meta

Implement numpy.abs / numpy.absolute. See [source](https://github.com/numpy/numpy/blob/0b0206c1617841ed2e5324de752ee8ede2cce791/numpy/core/src/multiarray/number.c#L595).

numpy.function

Currently, we have some bottlenecks in the implementation: - [ ] `PyArray_FromAny` seems to use significant time in the array creation process - [ ] `MatrixProduct2` uses time in calling...

enhancement

Implement http://docs.scipy.org/doc/numpy/reference/generated/numpy.mean.html Parameters: - [x] x - [ ] axis - [ ] dtype - [ ] out - [ ] keepDim ToDo: - [ ] call PyArray_FromAny - [...

numpy.function

see: https://github.com/numpy/numpy/blob/v1.9.1/numpy/core/arrayprint.py#L465

enhancement

Numpy uses its own unit test framework with some special assert functions. There are already a couple of tests in the test dir. - [ ] implement `assert_almost_close` - [...

See if slices with tuples are working. ``` python import numpy as np a = np.arange(3*4*5*6).reshape((3,4,5,6)) b = np.arange(3*4*5*6)[::-1].reshape((5,4,6,3)) c = np.dot(a, b) print(c.shape) c = c[2,3,2,1,2,2] print(c) # 499128...