Duane Johnson

Results 121 issues of Duane Johnson

**The problem I am facing** It's a bit confusing that there is a `connection` key in various hook payloads that is either a `Connection` instance or a `ConnectionConfiguration` object. Both...

feature request
next-major

When I write a component such as the following, Webpack's scope hoisting can change the Component's name: ``` import { Component, BooleanType } from "hecs"; export class PointerPlane extends Component...

I added this to the SystemManager so that I could measure performance of each system individually: ``` update(delta) { for (let i = 0; i < this.systems.length; i++) { this.tick++...

Perhaps we could add a way to suppress these messages during tests? ``` console.log hecs: registered plugin 'root' at World.registerPlugin (../../tmp/hecs/packages/hecs/dist/hecs.js:1:24562) console.log hecs: using 0 bit archetype ids at ArchetypeManager.init...

Currently, there is no way to configure the renderer created in Presentation: ``` createRenderer() { const renderer = new THREE.WebGLRenderer({ antialias: true, }) ... ``` As far as I can...

Occasionally I do something dumb (ok, quite often) and end up in some code path that HECS didn't anticipate, throwing an error that is hard to debug. For example: Adding...

I'm seeing these yarn warnings when I install `hecs` along with `hecs-plugin-core` and `hecs-plugin-three` as dependencies: ``` warning " > [email protected]" has incorrect peer dependency "hecs@^0.13.0". warning " > [email protected]"...

bug

I have an update function that takes 0 or more parameters, and updates a table: ``` updateRelm: async (client, { relmName, isPublic, encryptedPassword, defaultEntryway, }) => { const updates =...

On the right-hand side of this powerlevel10k prompt, the curved lines don't line up (the left-hand side is rendered correctly): ![image](https://github.com/pop-os/cosmic-term/assets/129/04eecc50-5c24-4b95-a5d2-6eaf8345ef09) It doesn't seem to matter what font I choose...

I see the RXTX package is primarily for windows, and may also support Linux (http://fizzed.com/oss/rxtx-for-java). Is there a similar library for Mac OS X?