This website requires you to support/enable scripts."
JSON results, no Javascript
https://api.mwmbl.org/?search=search+the+web+without+javascr...
61–70 of 129 posts
This website requires you to support/enable scripts."
JSON results, no Javascript
https://api.mwmbl.org/?search=search+the+web+without+javascr...
A lot of the terms I searched for returned no hits. The Firefox add-on crawls pages linked from Hacker News which is amusing perhaps but seems unlikely to crawl a representative selection of the web. Perhaps the user should be able to suggest pages to be crawled. But when it does find something it is very quick! So I'll give it a go.
Other random examples: search for "2023" and the very first link is "2023 Pomeroy College Basketball Ratings". Search for "iphone", and the 5th link is a page about iPhone 6s that was last updated in 2021. Typos don't work: "haker news" has only one result, a hungarian press article.
Earlier quoted context omitted.
That is not how a large part of the citizens on the internet works. Hell, a not insignificant number of people will still "search" for Google in their address bar before they get to the actual googling
Except I'm not talking to a large part of the citizens, but to a single one. Do you type 'google.com' in your address bar to search?
Earlier quoted context omitted.
Arguably, Google was probably a odd name for a search engine to people in the 90s that weren't maths-savvy.
But it's a normal word, unlike "mwmbl" (I had to look it up, couldn't remember where the "b" and "w" goes after some seconds).
Earlier quoted context omitted.
Arguably, Google was probably a odd name for a search engine to people in the 90s that weren't maths-savvy.
But it's a normal word, unlike "mwmbl" (I had to look it up, couldn't remember where the "b" and "w" goes after some seconds).
mwmbl is a shortening of the welsh writing of https://en.wikipedia.org/wiki/Mumbles. Only tricky part is knowing that the w is pronounced as a u. Maybe it would be slightly easier if one followed the fad of leaving out vowels, but guessing a vowel and having a tricky vowel does not seem much different.
Sub-100 ms search results, nicely typed python codebase, good project. How many 4096 byte pages do you currently store?
Earlier quoted context omitted.
But it's a normal word, unlike "mwmbl" (I had to look it up, couldn't remember where the "b" and "w" goes after some seconds).
No it's not, it is an intentional misspelling of "googol" and means nothing - not in English or any other language. "Spotify" is also not a "normal word" in any language. And for those not native in English (there's supposedly only some 400 million of those), it's just a random sound sequence like any other. mwmbl is a shortening of the welsh writing of https://en.wikipedia.org/wiki/Mumbles . Only tricky part is know…
Is that really tricky? W is basically pronounced like U in English already[1]. It just looks funny when you exchange the two.
[1] e.g. say this sentence "uorld uar tuo uas the uorst"
If I understand, having only 4096 bytes of data per term causes multiple terms in the same query to intersect to little or no results. The purpose seems to cut cost in compromise of completeness.
In general hash map table index designs don't tend to be very efficient. If you use a skip list or something similar, you can calculate the intersection between sets in sublinear time.