Tv

Results 377 comments of Tv

Reading `cargo expand` makes it look like `ArchivedFoo` has a bunch of docs already in place; the error might actually come from all the other stuff the derive macro does....

My git workflow is leaving a trail of dozens of small commits, then coming back with `git rebase -i`, reordering lines to group commits by semantics and putting fixes after...

It seems like I was looking for something like `jj squash -f bottom::top -t bottom-` or perhaps more succinctly `jj squash -f good..noise -t good`, with change IDs instead of...

Thanks! After playing with it, I ended up with this: ``` [aliases] # `squash-into INTO [TOP]` # collapse commits that are on top of `INTO` into it (up to `TOP`...

For the peanut gallery like me, this works in 4.0.0-beta.5: ```typescript test("click to check box", async () => { const screen = render(MyComponent); const button = screen.getByRole("checkbox"); await button.click(); await...

Adding google juice because the term `inline_completion_provider` no longer shows up in Zed default settings: Support using ollama as edit_prediction_provider

It looks like `keys` is matching table names, not keys within a table. A rust-toolchain.toml of ```toml [toolchain] targets = ["zz", "x86_64-unknown-linux-gnu"] ``` gets targets sorted with ```toml [[rule]] include...

Of course, one table might have both a key I want array sorted and a key I don't, so I feel like Taplo must support `tablename.keyname` there.

I think you might be hitting your head on the same bit of wall that I did: https://github.com/rust-rocksdb/rust-rocksdb/issues/687#issuecomment-1553381126 I have a fork that makes many things Arc and Send+Sync. It's...

@erwanor Is there a reason you're converting the Arc to *const rocksdb::DB and back, and not just keeping it as Arc?