eabase

Results 378 comments of eabase

@epoberezkin > I am not quite sure why a reasonable plan to make network financially sustainable, ... - is "disturbing". I just told you exactly why. You're promoting SimpleX as...

@mechatroner For more foolproof/simplicity, I think it might be better to **not** allowing user to put their own REGEX via UI/UX, and keep it in the settings JSON (if really...

@lazka > MSYS2 mounts everything with noacl, ... Wow, ok, interesting. But how does that work? Where can I get more info on this? This brings up many questions: -...

Ok, this was useful: * https://cygwin.com/cygwin-ug-net/using-cygwinenv.html Still not sure why acl is turned off by default in MSYS, and if turning it back on, is gonna create issues when updating...

@striezel @oech3 Unfortunately I am not familiar with the build system on AUR. I just wanted something more easy to find and get the correct packages I need, instead of...

@lambertch > ... to give me the code I need to prototype some radio SLAM algorithms, where I only care about PSS/SSS. Anything you can share? Also, the MULSPAD "paper"...

@lazka Hi Christoph, Thanks for quick reply. > Note that we already have various hex editors: > ... mingw-w64-hexyl (**Requires Rust!**) > ... mingw-w64-ghex (**Requires the GNOME desktop!**) I've never...

The build commands for MSYS and MINGW64 are: ```bash # For MSYS: ./autogen.sh && ./configure CFLAGS="-I/usr/include/ncursesw" LDFLAGS="-L/usr/lib" LIBS="-lncursesw" && make # For MINGW64: ./autogen.sh && ./configure CFLAGS="-I/mingw64/include/ncursesw" LDFLAGS="-L/mingw64/lib" LIBS="-lncursesw" &&...