Dmitry Iv.

Results 308 issues of Dmitry Iv.

```js 'use strict' const regl = require('regl')() let draw = regl({ vert: ` attribute float c; void main() { gl_Position = vec4(c,0,0,1); gl_PointSize = 100.; } `, frag: ` void...

```js //we create texture with per-pixel data let t = regl.texture({ type: 'uint8', format: 'rgba', shape: [2, 1], data: [[0,0,0,0], [0,0,0,0]] }) //updating it same way raises an error of...

Following the docs: ``` {{ section }} ``` Getting the error from the title: `Uncaught (in promise) TypeError: _b.call is not a function at Proxy.render (vue-slicksort.umd.js:1110)`

Based on @subzey [dict-tempering](https://github.com/subzey/dict-tempering). There's a method of minimizing JSONs compressed size by reordering props, provided in the mentioned tool. There's a PR to [color-name](https://github.com/colorjs/color-name/pull/17) package, practically demonstrating 5-8% better...

Tried to run the readme example with simple browserify setup: ```js // server.js import { createServer } from 'service-mocker/server'; const { router } = createServer(); // or you can use...

Now blotter package doesn't have materials in npm https://npmfs.com/package/blotter.js/0.1.0/, only a single build. That makes impossible to use it via unpkg CDN: ```html console.dir(Blotter) ``` Can you please possibly publish...

Just installed weightless, getting that error: ```js C:\projects\wishbox\node_modules\weightless\behavior\overlay\overlay-behavior.js:10:39: Cannot resolve dependency 'tslib' ```

I noticed that ```js let { component, useState, useEffect, State } = await import("haunted") let state = new State(() => { update(); }); function update() { state.run(() => { useEffect(()...

bug

With native node ESM modules support https://nodejs.org/api/esm.html, node recognizes _haunted_ as `module` during `import`. That causes problem that `haunted` is impossible to be imported via `require('haunted')`. That's possibly fine with...

This updates [_subscript_](https://github.com/spectjs/subscript) and adds [_spect_](https://github.com/spectjs/spect) and [_templize_](https://github.com/spectjs/templize) micro libraries.