Gil Pasi

Results 3 issues of Gil Pasi

Specifically the compiled package v0.8 produces event messages in the format "event":{{}} instead of a valid json format: {}. However this problem does not occur in the source version (when...

Starting from version [v2.6.0 (2024-10-29)](https://github.com/mswjs/msw/releases/tag/v2.6.0) of MSW, there was a support for web-socket mocking. I did not find any complementary interface for those mocks. Specifically when I use the ```createWorkerFixture```...

The generate_embedding.py file's first operations are loading the models and defining the stop words: ``` word2vec_model = gensim.models.KeyedVectors.load_word2vec_format('./crawl-300d-2M.vec', binary=False) stop_words = set(stopwords.words('english')) ``` Which both are very time consuming, it...