joonas.fi
joonas.fi
@kevinburke: for some reason I got `user: Current not implemented on linux/amd64` (compiled using go version go1.11.1 linux/amd64). I'm running inside a container, if that makes a difference. Here's my...
@Ilyes512 unfortunately my image is not public, but my image's first public parent is `FROM golang:1.11.1` @kevinburke thanks for responding so quickly, and with the code. The issue seems to...
I'm also having linear slowdown issues with this struct (inserting 500 000 records in batches of 1 000 per `Commit()`): ``` type Blob struct { Ref BlobRef `storm:"id"` // type...
I verified that either the issue is in Storm or in the way I use it, proof: I changed my import code to bypass Storm and use Bolt directly: ```...
@asdine, thanks for responding. :) Sure, here's it distilled down program to reproduce this issue: https://gist.github.com/joonas-fi/c56c0f6fa23edac436609af3b22a5c46 By running it you will observe what I said above: the dots printing to...
I forgot to mention that during poor performance I observed that it was CPU bound
@asdine did you manage to look into this? Let me know if I can provide more information in diagnosing this! I replaced Storm with a homebuilt-but-crappy solution (I had to...
Yeah @RKinsey was talking about the key-wrapping phase. The actual symmetric stream encryption is where the bulk of Age's work happens (at least on larger file sizes) and it looks...
I had lots of trouble finding that function from GDK source code (GitHub search returned no results for `gdk_display_supports_clipboard_persistence`, but [it's there allright](https://github.com/GNOME/gtk/blob/06c4bb44b139f2ed40b70c0303836e1e8558e8d9/gdk/x11/gdkdisplay-x11.c#L1096)), but I found something good: https://github.com/GNOME/gtk/commit/06c4bb44b139f2ed40b70c0303836e1e8558e8d9#diff-6ab4fcfe66397619d5843c2bb1ac48094eb7dba764739979a7b36dc217b06ff8R1096
I used this code snippet (in Go): ```go func debugClipboardManager() error { X, err := xgb.NewConn() if err != nil { return err } defer X.Close() atomName := "CLIPBOARD_MANAGER" clipboardManagerAtom,...