HackerTrans
トップ新着トレンドコメント過去質問紹介求人

yehors

no profile record

投稿

Show HN: An event loop for asyncio written in Rust

github.com
5 ポイント·投稿者 yehors·4 か月前·2 コメント

[untitled]

1 ポイント·投稿者 yehors·6 か月前·0 コメント

Show HN: Native PyAnnote (speaker diarizer) in Rust

github.com
3 ポイント·投稿者 yehors·6 か月前·0 コメント

Show HN: Fast (0.5 GB/SEC) dedup utility for the era of LLMs written in C23

github.com
2 ポイント·投稿者 yehors·6 か月前·0 コメント

Show HN: Sorting a billion of integers in 7.6 seconds

github.com
2 ポイント·投稿者 yehors·6 か月前·0 コメント

Show HN: Async web scraping framework on top of Rust

github.com
2 ポイント·投稿者 yehors·7 か月前·2 コメント

Show HN: Rust-based translator with KULYK models for EnglishUkrainian MT

github.com
2 ポイント·投稿者 yehors·9 か月前·0 コメント

コメント

yehors
·4 か月前·議論
when i was building silkworm, unability of uvloop to support Windows was a problem for me, so i added winloop

btw, they seem to be included into uvloop: https://github.com/Vizonex/Winloop/commit/317873329143e8cf82...
yehors
·4 か月前·議論
added support for Windows in v0.1.3
yehors
·7 か月前·議論
Also, it supports Free-threaded Python (`PYTHON_GIL=0` env-var).

My little test that extracts title's from webpages (spider https://github.com/BitingSnakes/silkworm/blob/main/examples/...):

- RPS with GIL = ~174 - RPS without GIL: ~242
yehors
·7 か月前·議論
I've built https://github.com/RustedBytes/scraper-rs to parse HTML using Rust with CSS selectors and XPath expressions. This wrapper can be useful for others as well.