Michael Santos
Michael Santos
`alcove:stdout/2` is doing a selective receive and returning the next message in the process mailbox. git seems to be flushing its output after each hash so each is delivered as...
Change has been pushed, thanks @neeraj9 ! I looked at https://github.com/beamparticle/beamparticle/issues/29. The writes might be buffered so the external process may need to explicitly do an fflush(). These writes can...
Hey @mmanoj! No immediate plans to support DPDK, so thank you for offering to work on it! Since epcap is compiled against libpcap, DPDK support will depend on libpcap. There...
Not directly. libvirt-sandbox uses GObject as its interface, rather than using libvirt calls directly. You can build sandboxes using erlang-libvirt but you would have to do the configuration yourself. The...
See the build instructions for Windows: https://github.com/msantos/ewpcap/blob/master/WINDOWS.md I've never actually tried to build on windows but other people have reported it works. If you run into problems or if the...
Use single quotes: ~~~js var e = "'a b' > 3" var f = compileExpression(e) f({"a b": 1}) // 0 f({"a b": 4}) // 1 ~~~
If you want help, show the code that isn't working. To debug this yourself, open a page that loads filtrex. Then open the javascript console and enter in the code...
Works for me. Try running the tests, in particular check the test for "quoted symbols" passes. To be sure, you can add a test case with whitespace: ~~~ diff --git...
It looks like libvirt added a way to get the ip address recently (in January 2015): https://libvirt.org/html/libvirt-libvirt-domain.html#virDomainInterfaceAddresses The corresponding function in verx is verx:domain_interface_addresses/2. I haven't tried using it but...
> I updated libvirt to the latest release. Were you able to try `verx:domain_interface_addresses/2`? I got the parameters wrong. It should be: ``` erlang % ?VIR_DOMAIN_INTERFACE_ADDRESSES_SRC_LEASE = 0 verx:domain_interface_addresses(Ref, [Network,...