chrsm
chrsm
I've found that simply using `tx.WriteTo` to back up certain DBs dramatically reduces the size (while obviously keeping the live data). I don't have any useful metrics/benchmarks, but I could...
https://github.com/boltdb/bolt/blob/074dffcc83e9f421e261526d297cd93f22a34080/db.go#L404 There is no attempt to wait on anything that's currently in-progress when the DB is closed. Unfortunately there doesn't seem to be a way to be notified of the...
Read-only transactions can execute simultaneously, but only one writable transaction can run at a time. The point of that is you should not have any writable transaction _depend_ on a...
Hi @kaddkaka! That's a good question. Notion's API is pretty straightforward, but converting markdown back to [blocks][1] would require an understanding of markdown itself that this plugin doesn't currently have....
:+1: On this. I think generated files should be separate from the main source. Would you be open to accepting a PR for this @benbjohnson, or is there a reason...
Would a macro suffice here? ```moonscript export macro raw = (code) -> { :code, type: "lua" } -- usage $raw [[ import "x" ]] ``` This is what I do...
Hi folks, just thought I'd drop this note here after struggling with the same thing. After trying, for a while, unsuccessfully to get librt to be linked properly in the...
There's no need to homogenize languages here. One consistent syntax is better than programmers being able to do different things when it suits them. Nearly all suggestions here make the...
> I agree that `consistent syntax` is best but... that is not enough. There is a reason that things like `syntactic sugar` existed, it is to make dev lives easier....
> Do you think list table syntax like `arr = []` ... I like the list table syntax of `a = []`. I think it makes sense given the append...