Michal

Results 63 issues of Michal

Hey Eric! I've been reading through the code of `make-things-less-complicated` and there's a part that didn't make sense to me. On [line 384](https://github.com/ericman314/UnitMath/blob/make-things-less-complicated/src/Unit.js#L384) of `Unit.ts` there is this code: ```javascript...

If I try the basic example from [Usage](https://svelte-grid.vercel.app/usage), I get a type error: ```svelte import Grid from "svelte-grid"; import gridHelp from "svelte-grid/build/helper/index.mjs"; const id = () => "_" + Math.random().toString(36).substr(2,...

I'm working on [this PR](https://github.com/josdejong/mathjs/pull/1743) and the current dependency system of math.js seems really frustrating to me. ![image](https://user-images.githubusercontent.com/1671665/94343894-ab1f3c00-001b-11eb-8eef-9290906ac2ca.png) ^^ the first lines of a more complicated script look like this...

design decision

[WebAssembly](https://en.wikipedia.org/wiki/WebAssembly) is a mature technology by now, which provides a significant performance boost to many web-based applications. Although a major undertaking, it might be beneficial to implement a WASM acceleration...

feature
design decision
category:numerical

Right now, there's no `subtractScalar` method and `subtract` has `matrix` as a dependency. This way, it's impossible to make a custom bundle which only contains units and not matrices (which...

help wanted
category:units
category:numerical

The functions * [`add`](https://github.com/josdejong/mathjs/blob/develop/types/index.d.ts#L770) * [`subtract`](https://github.com/josdejong/mathjs/blob/develop/types/index.d.ts#L1119) * [`dotDivide`, `dotMultiply`, `dotPow` etc.](https://github.com/josdejong/mathjs/blob/develop/types/index.d.ts#L837) lack sufficiently fine-grained type definitions. In particular, this produces an error: ```typescript math.add([1, 2], [3, 4])[0]; // Element implicitly...

help wanted
typescript

I have borrowed an *Oculus Gear: Innovator Edition for S6* and it doesn't connect to the OpenHMD. I know about issue #167 but I decided to open a fresh one....

Visual Studio 2015 throws this error: `Could not install package 'VirtualDesktop 1.0.3'. You are trying to install this package into a project that targets '.NETFramework,Version=v4.5.2', but the package does not...

The rule `brace-style` does not affect the braces around the class body – see the fixed bug at eslint/eslint#7608. **How to reproduce** ```typescript /* tslint brace-style: ["error", "allman"] */ class...

I'm frequently working with symbolic mathematical expressions. Sadly, JavaScript doesn't support operator overloading, so I have to write a lot of ugly code like `add(u, mul(2, v))`. I would love...