Marko Kocić
Marko Kocić
Yes, on Windows 10 using an emulator
OK, it works after disabling hermes.
Proload is defined, when I access http://localhost:4567 I reach the page, but see only page skeleton, without any event, db or subscription data. I don't see any exceptions in the...
good catch. Yes, I can access http://localhost:4567 on my laptop, but not from the device browser. For some reason device/emulator decides to use 192.168.0.111 as my host ip. After executing...
Intuitively I would expect to follow the react-native packaging convention for the component that are bundled directly with it. Whatever is available after requiring `react-native` in JavaScript should be available...
Thanks. I'll have to wait for another Go release to try this, since I was not able to build Go under Windows yet.
After profiling using emacs profiler it looks like the culprit is `ledger-accounts-in-buffer` function whici is responsible for exessive memory allocation (130MB as reported by emacs profiler) and 50 % of...
To reply to myself, I did some tinkering and reverted the `ledger-accounts-list-in-buffer` to avoid calling the new `ledger-accounts-in-buffer` function. (defun ledger-accounts-list-in-buffer () "Return a list of all known account names...
@jabranham I don't define any accounts in ledger file. Attached are the reports created by `profiler-start` and `profiler-report`. The numbers are not always the same, since it's not always clear...
After playing a bit more in it, it looks like problems are caused by using `member` to check if account is already in the list of account. It appears it's...