David Konsumer

Results 457 comments of David Konsumer

Also, if you know of another way to beat-analyze mic input, I'm not stuck on this method. Basically, I am trying to accomplish "fire my callback when a beat is...

I am using `react-live@latest` and get the same error with these versions (with fresh node_modules): ``` "next": "^11.1.2", "react": "^17.0.2", "react-dom": "^17.0.2", "react-live": "^2.3.0" ``` testing with this react: ```jsx...

I can't seem to reproduce on [codesandbox](https://codesandbox.io/s/empty-leftpad-qx053), so it might be something with my UI lib (rsuite.) I noticed I get the same issue if I put `padding` on the...

Yep, I figured it out. I think rsuite was setting a height for `.token` or something. I noticed that `.token.plain` (which seems to make the newlines) were 0-height. In my...

Feel free to close this. As a sidenote, great lib! Super-useful for our styleguide.

I don't have a windows box around to test, but this should be resolved.

As an example, we could have demos that look like this (just name file .mjs): ```js import { BeginDrawing, InitWindow, BeginDrawing, ClearBackground, DrawText, EndDrawing, RAYWHITE, LIGHTGRAY } from 'raylib' import...

> ES6 also supports the following too... Yep, and you can also additionally export a default object to keep the same code-style, and other things won't inline that in user's...

Looks like we already have some CI in place. I am going to do some local testing with [act](https://github.com/nektos/act) to see if I can improve it, and get it building...

I started work on this with a fancier build-matrix. I also merged test & build to optimize cacheing, and set it to run on every push/PR, so we have a...