Esad Hajdarevic
Esad Hajdarevic
When a height of a table view is updated so that rows don't fit it anymore, the scrollbar doesn't appear. Manually invoking layout() on _scrollPane property of a table did...
I have a Select control (from uki-more) inside a popup and whenever I open it to see the options, the parent popup disappears
This should probably be moved to a theme. Question is, how to best handle theming for uki-more components? Per-component theme extensions or one common extension for all components in uki-more?
I appreciate the minimalism of bacon, but there should be a possibility to supply before/after blocks that get executed for every context. Useful for ensuring database changes by previous contexts...
Here's a minimal sample where an engine is created, queried and destroyed within the http handler: ``` :- use_module(library(http/thread_httpd)). :- use_module(library(http/http_dispatch)). :- http_handler('/', test, []). test(_Request) :- engine_create(X, foo(X), E),...
It would be great to be able to install DatabaseKit via CocoaPods
Official postgresql formula includes a LaunchAgent plist, any reason for not including it?
Use of global static variables such as `_lock_queue` leads to race conditions. However, It is suggested that there can be multiple instances running concurrently due to existence of initializers that...
OCaml includes the reverse function operator (`|>`) which I've often found more readable than function composition + application. Have you consider adding such operator to func?