Matthew Paras

Results 116 comments of Matthew Paras

In `67.1` there is this snippet: ```sql -- To add job_uuid to the unique constraint, we first drop the primary key, then recreate it; note given that job_version_uuid can be...

> I am trying to make things work using a minimal config, my `helix.scm` looks like this: > > ```scheme > (require (prefix-in helix. "helix/commands.scm")) > (require (prefix-in helix.static. "helix/static.scm"))...

awesome, thank you for the update!

If you're willing to wait a couple days, I will have a lot of examples of this functioning in a certain form. It is possible today, and I can follow...

So I've adjusted the interface within helix to alleviate this. I just have some merge conflicts to address and then will have the update pushed - but the new way...

Alright - apologies for the delay, but all of that is pushed now. You can find some examples here: - The `load-package` function is defined here: https://github.com/mattwparas/helix-config/blob/master/cogs/package.scm - Here is...

Steel is under active development, as I'm pretty much consistently working on it :smile: There is a language server specifically for steel - it is rather primitive but will propagate...

The reason this is a bit silly mostly has to do with registered functions not having direct access to the steel runtime - they're more or less pure. There are...

You should be able to do something like this: ``` struct MyGlobalCoreObject {} impl Custom for MyGlobalCoreObject {} impl MyGlobalCoreObject { fn my_global_function(parameter: &str) {} } struct MyLittleObject {} impl...

Is this resolved? Happy to answer any other questions if there are any