Moritz Maxeiner
Moritz Maxeiner
This, e.g., allows to monitor busy directories, such as `/dev` only for file creation/destruction. By default it will continue to act as if `events: [:modified, :moved_to, :moved_from, :created, :deleted, :attribute]`...
## Description ## Expose the ability to infer shapes partially via the cpp-package Continuation of #16251 ## Checklist ## ### Essentials ### - [x] Changes are complete (i.e. I finished...
Hi, awesome project, but I ran into two problem that block me from using cdm: I use Archlinux x86_64 (systemd) with the cdm-git package (compiles latest version from here) and...
System is archlinux i386 all the newest packages. Cloned the bzr verison of emacs-xwidget and got the git version of ezbl yesterday. Now, when calling ezbl-open this happens: < lookup_xwidget...
When a buffer opened by ezbl is closed and ezbl is used to create another it won't work, because ezbl does not yet realise, that the buffer was closed and...
It would be nice for `--symbolLocation` to return all declared overloads (maybe even including templates) so an editor can let the user cycle between them: ```d import std.stdio; void main()...
The README suggests that sockets have been fully implemented. When I try to use Unix sockets via [`openUnixConnection`](http://dcarp.github.io/asynchronous/asynchronous/streams/openUnixConnection.html), however, it will crash either [here](https://github.com/etcimon/libasync/blob/v0.7.9/source/libasync/posix.d#L2743) (release mode) or [here](https://github.com/etcimon/libasync/blob/v0.7.9/source/libasync/posix.d#L2791) (debug mode)....
Trying to serialize and then deserialize a nested class like ```python import yaml class A: class B: def __init__(self, i): self.i = i def __init__(self, i): self.b = A.B(i) yaml.load(yaml.dump(A(0)))...
Native QML does not provide support for system tray icons, instead one needs to leverage QT and bind to QML as shown [here](https://gist.github.com/GaryLee/7f069e96bb5753495058) or [here](http://stackoverflow.com/questions/24423418/is-it-possible-to-implement-systemtrayicon-functionality-in-qt-quick-application/25530124#25530124). Would it be possible to...