David Konsumer

Results 457 comments of David Konsumer

Ok, updated [the generator](https://github.com/konsumer/quickray/blob/main/generate-raylib.js). I basically found all the unique types for input/output and made little template functions. I still need to finish how structs work, and there are some...

Wow! I wish I had seen that before I made this. Seems like a much better way to do it than fragile regexes. If they keep [this](https://github.com/raysan5/raylib/blob/master/parser/raylib_api.json) up-to-date, it would...

I dunno, I need to think about git sub-modules a bit. I like how I can lock in a specific version, and I could build a "raylib game bundle" that...

I made some progress, I think, using the JSON. I have all the enums (so we don't need a separate js file) and a decent system in place for templating...

I have same issue with filter of `US:`. I get a single `undefined` channel. large channel-lists makes plex error (I think it has an issue with >300 channels) so I...

[Here](https://gist.github.com/konsumer/76aa10c8da44a4477c7a03002c804336) is the current script I have. I will tune it and test further.

This works for me: ```js var blessed = require('blessed') var contrib = require('blessed-contrib') var screen = blessed.screen() var table = contrib.table({ keys: true, vi: true, fg: 'white', selectedFg: 'white', selectedBg:...

I have an issue that I think is related: I am using firebase, and they have a nice local emulator for database/files/etc, and I got proxying setup with parcel: ```js...

As a hacky workaround, specific to react, I can use `Suspense` with fetch & eval, with above proxy: ```js /* global fetch */ import React, { Suspense } from 'react'...

I am trying to get started with aleph, and follow the advice here. My goal is to put all the version-lockin stuff in a Makefile, so we have a known-working...