What does HackerNews think of warp?
A super-easy, composable, web server framework for warp speeds.
Maybe I need more time or a favorable comparison to another framework to appreciate it.
https://github.com/seanmonstar/warp
It seems like you're going to confuse people and crush someone's established project with your $17m. "Warp" + "Rust" is a web framework.
https://github.com/seanmonstar/warp
https://github.com/tokio-rs/axum
re headcrab, https://github.com/headcrab-rs/headcrab/issues/132
the typo did not help
WordBueno is a dictionary that aims to be multilingual, fast and simple.
The original goal was to build a tool to facilitate finding a new domain name (e.g. checking what a word means in different languages to make sure it’s not a swear word, finding synonyms, translations, rhymes, etc.), somehow it devolved into just a dictionary.
How it works: WordBueno’s data is currently derived from Wiktionary. The backend is using Rust’s warp [1] with fst [2] for indexing. The front-end is built in TypeScript with Svelte. I use prerender [3] for server-side rendering to facilitate crawling. I wrote a bit more about it at https://wordbueno.com/about and I would be happy to answer any questions.
I am curious to hear what you think.
Some thoughts:
- Exposing API? “Is word X a swear word in any language?”, “Synonyms for X”, etc.
- Searching by regex? Feasible with a special index.
- Browser extension? Embedded in the “new tab” page and right-click contextual menu lookup.
- The current data is lacking in many ways. Missing synonyms / antonyms / translations / examples / words. I am considering enhancing it in some ways (e.g. joining it with WordNet, etc.).
- Wiktionary is inherently unstructured, this makes it hard to process and leverage its full potential, it would be great if it was built in a structured way from the group up (ala Wikidata?).
[1] https://github.com/seanmonstar/warp
After that little project, I got started on an api service in Crystal. Crystal was interesting to try out, but I decided to switch to Rust after a few weeks since the ecosystem/community is much larger. I first chose to use the Rocket framework [0] but switched to actix-web [1] after a few weeks so I didn't have to use nightly anymore. So far actix-web has been great, but I'll be keeping my eye on Rocket going stable hopefully sometime in 2019, and also another library called warp [2].
I've also got another wasm project in the works... hoping to finish that off soon and publish sometime next month.
[0]: https://github.com/SergioBenitez/Rocket