Greggory Rothmeier

Results 12 comments of Greggory Rothmeier

If you aren't against writing sql literals, you could make it a little more understandable. Overwrite all values in the hstore: ``` ruby MyModel.update_all("properties = hstore('a', '1')") ``` Merge in...

It's actually just PostgreSQL syntax. The [`||` operator](http://www.postgresql.org/docs/9.3/static/hstore.html#HSTORE-OP-TABLE) concatenates two hstore's and PostgreSQL's `hstore()` function creates a new hstore with key 'a' and value '1' (`('a' => '1')` is the...

Based on the [source for `Rescue.scheduled_at`](https://github.com/resque/resque-scheduler/blob/master/lib/resque/scheduler/delaying_extensions.rb#L241-246) I checked redis for keys starting with `timestamps:` and came up short: ``` irb(main):003:0> REDIS.keys('timestamps:*') => [] ``` Does this method eagerly store a...

👍 I'll try to find time to hack on this in the coming weeks and will keep a configuration option in mind. Thank you!

> In terms of the example though, it shows .devcontainer/project.json which wouldn't be auto-detected currently. I assume that would be either .devcontainer/devcontainer.json or follow the folder structure from https://github.com/microsoft/dev-container-spec/issues/6? That's...

They solve basically the same problem, but in different ways. #22 uses a single top-level "extends" keyword to a file that is treated as a "parent" document with while this...

Here's a screen recording of the reported behavior. Let me know if you have further questions on how to reproduce it https://github.com/vslinko/obsidian-outliner/assets/903365/5006cdf0-7355-477f-98eb-1b8f1cfd0cbe

Thanks for sharing that! That looks way simpler and easier than what I proposed, so I'll give it shot and see if there's a way to incorporate it into my...

Could be related to https://github.com/nsarno/knock/issues/121

I see that https://github.com/newrelic-platform/newrelic_plugin/pull/41 was closed -- is it safe to assume ERB will work in the config file?