Ben Schattinger

Results 70 comments of Ben Schattinger

I'd like to see these constants namespaced, either by prefixing them with `NEO_` or doing something like this: namespace NeoColors { const uint32_t BLACK = 0x000000 const uint32_t NAVY =...

I did consider that when making this, but your caveat was all I experienced: no platform I tested had that behavior by default. What fonts support this?

Interesting. iOS mail + whatever font iOS Firefox picks don't.On Sep 4, 2024, at 11:25 PM, Chris Petersen ***@***.***> wrote: What fonts support this? I think most standard web/document fonts...

At the minimum, the asserts should be converted to Python exceptions. I set one field of a `Vector3` to 0, and got this error: ``` python3: ./.obj-x86_64-linux-gnu/rosidl_generator_py/geometry_msgs/msg/_vector3_s.c:76: geometry_msgs__msg__vector3__convert_from_py: Assertion `PyFloat_Check(field)'...

Changing the delay to 20ms worked great!

Just ran into this! It's a problem with Orama's bundler. `beforeSearch` is an async function: https://github.com/oramasearch/orama/blob/c8051ce183d3628519fe61d07b9f6ff561b21465/packages/plugin-embeddings/src/index.ts#L62 Orama switches into a special mode when it detects that hook as an async...

As a workaround, you can do this: ``` pluginEmbeddings({ embeddings: { // Property used to store generated embeddings. Must be defined in the schema. defaultProperty: 'embeddings', onInsert: { // Generate...

Async functions are part of ES7, and your bundler [tsup](https://tsup.egoist.dev/#target-environment) reads tsconfig.json so it should be as simple as changing this line to ES7: https://github.com/oramasearch/orama/blob/c8051ce183d3628519fe61d07b9f6ff561b21465/packages/plugin-embeddings/tsconfig.json#L4 You'll also need to add...

It seems to just *work*. I needed to add esbuild as a dependency for vite-plugin-electron-renderer, but otherwise no problems.

Note that [Unity 2022 and later now stores](https://docs.unity3d.com/6000.0/Documentation/Manual/incremental-build-pipeline.html) IL2CPP caches at `$HOME/.cache/unity3d/bee`.