Evgeniy Dushistov

Results 67 issues of Evgeniy Dushistov

I am writing wrapper around C++ library that uses sqlite3. And need to link to this C++ library statically. The problem is that I used also rusqlite. As can I...

At least on linux/gcc/amd64 this function always return constant: ``` bool is_ascii_codepoint(litehtml::tchar_t c) { return (c < 128); } ``` because of tchar_t = signed char, and maximum for signed...

Here: https://github.com/couchbaselabs/fleece/blob/60bfb99bfed50329a2a8c3a3fb0cacea074ea799/Fleece/Tree/MutableNode.hh#L332 operator new/delete defined as: ```c++ static void* operator new(size_t size, unsigned capacity) { return ::operator new(size + capacity*sizeof(NodeRef)); } ``` but then ```c++ MutableInterior* grow() { assert_precondition(capacity() <...

It would be nice to support types with deleted copy constructor/assign operator, for `AsyncFuture::Observable` and `AsyncFuture::Deferred` instantation, for example: ```cpp struct Foo { explicit Foo(std::string s): s_{s} {} Foo(const Foo...

As newcomer I would like to see that testing with `-fsanitize=thread` have been done. In perfect world of course this should be part of CI, but not sure how much...

It would be nice to have MS Windows port of SDCV (command line stardict, capable of running as "filter", e.g. sdcv.exe "apple" > output.txt), or maybe DLL (with simple interface)...

enhancement

> Newer dictionaries, formatted for Stardict 3.0, appear completely garbled when read from sdcv. Maybe sdcv could have an option to eliminate all markup, and an option to parse markup...

enhancement

To prevent problems like descrbied in #24 usage of `~/.inputrc` should be documented somewhere

enhancement

Hi, is it possible to use sdcv as filter? I am creating new dictionary for stardict and I need something like this: cat list_of_words | sdcv -n -u new_dict >unknown_word.txt...

enhancement

I'd like to suggest adding a kana romanji converter when performing queries on Japanese dictionaries. Example output: sdcv sayonara -->Babylon Japanese-English -->さよなら adieu, farewell, goodbye

enhancement