Trevor Hartman
Trevor Hartman
Is it currently possible to mix query params and filtering or does this issue need to be supported first?
Thanks. For anyone else who stumbles upon this, I got it working with: ``` AnalyticsModel.results(@profile, start_date: @start_date, end_date: @end_date) .belongs_to_store(@store_id) ```
@rvagg yeah, I just wanted to pick a couple lightweight modules according to my needs without relying on the package management side of Ender, which felt pretty heavy for a...
``` tmux list-panes -F '#F' | grep -q Z ``` Returns 0 if the current pane is zoomed and return error 1 in case it isn't. Are you expecting a...
Understandable. Yesterday I dove into the src a bit. We'll see if the pain gets bad enough.
I don't know much about sessions, other than they look like a ton of commands, e.g. here is a snippet of one of mine: ``` let NERDTreeGlyphReadOnly = "RO" let...
Any updates? I'm struggling with whether to use references (not sure how to get them to work with RRF) at all, or go with RRF's `populate`.
What if there was something like middleware where if it sees a reference type it either auto resolves the reference to an object or else maybe turns it into a...
Thinking about this a little more. `populate` is great, but one issue I noticed is that there is not a pointer from the string ID stored in the db and...
Ah, I see. It looks like ping/pong examples I've seen are for Netty 4: - https://stackoverflow.com/questions/38590578/how-to-handle-ping-pong-frame-in-netty-4 - https://gist.github.com/Topher-the-Geek/6729681 I've since switched to https://github.com/schmee/java-http-clj since it already supports this (though it...