Cheng
Cheng
``` Compiling C:\nimdbx\tests\test1_Data (from package nimdbx) using c backend # Including library C:\nimdbx\libmdbx-dist\libmdbx.a # Importing C:\nimdbx\libmdbx-dist\mdbx.h # Saved to C:/Users/asus/nimcache/nimterop/toastCache/nimterop_2496732934.nim C:\nimdbx\nimdbx\private\libmdbx.nim(56, 8) template/generic instantiation of `cImport` from here C:\Users\asus\.nimble\pkgs\nimterop-0.6.13\nimterop\cimport.nim(704, 10)...
```nim import nimdbx let CollectionName = "stuff" var db = openDatabase(".") var coll = db.createCollection(CollectionName) ``` error as follows: ```shell # Running make # Path: C:\Users\asus\.nimble\pkgs\nimdbx-0.4.1\libmdbx-dist stack trace: (most recent...
formData like this ``` {name: directory, Content-Disposition: form-data; name="directory"} {name: filename, Content-Disposition: form-data; name="filename"} {name: file, filename: BGPAccess.png, Content-Disposition: form-data; name="file"; filename="BGPAccess.png", Content-Type: image/png} ``` I have to change `var...
Chinese if specifically.
Tried ```nim proc sendFileStreamHandler(api: DaemonAPI, stream: P2PStream) {.async.} = {.gcsafe.}: var name: string var length: int while true: var line = await stream.transp.readLine() if line == "": continue var parts...
``` type SeqHeader = object length, reserved: int proc isLiteral*(s: string): bool {.inline.} = (cast[ptr SeqHeader](s.cstring).reserved and (1 shl (sizeof(int) * 8 - 2))) != 0 proc isLiteral*[T](s: seq[T]): bool...
E1123 15:34:06.230936 14844 json.go:141] read init data failed E1123 15:34:06.231997 14844 json.go:175] SB[vm-aECEGAOFYQ] error when readVmMessage() for ready message: read unix @->/var/run/hyper/vm-aECEGAOFYQ/hyper.sock: read: connection reset by peer E1123 15:34:06.230944 14844...
# Resetting /root/.cache/nim/nimterop/nimterop/treesitter # Resetting /root/.cache/nim/nimterop/nimterop/treesitter_c stack trace: (most recent call last) c.nim(6, 19) c setup.nim(30, 10) treesitterCSetup shell.nim(366, 42) gitPull shell.nim(335, 34) gitAtCheckout shell.nim(90, 11) execAction assertions.nim(30, 26) failedAssertImpl...
It's probably out of FileDialog opens for many times to make file Hyperlinks, but certainly haven't reached limit like opened file for 512 on Windows according to Google searching, tried...
I have trouble to show something like ```html someone shared something ``` which requires Hyperlink in the same line with TextCtrl just like a normal text with hidden url. wHyperlink...