Skip to main content Search Engines
r/searchengines icon

r/searchengines

3.1K members
9 online

J'ai créé le meilleur moteur de recherche ia J'ai créé le meilleur moteur de recherche ia

Si vous ne trouvez pas le résultat voulu, vous cliqué sur un bouton et des résultats de recherche parfait aparaissent. J'utilises une api cerebras soit la méthode la plus rapide du monde pour utiliser des ia (Ça va 800 fois plus vite que ChatGPT et ça créé 2000 lignes de code en 1.5 seconde). Vous pouvez l'utiliser en collant le code suivant dans un exécuteur html (tapez "onecompiler" puis sélectionner html et coller le code, c'est gratuit) il est possible que la moitié des résultats dans google ne s'ouvrent pas, c'est à cause de X-Frame Option et ça sera bientôt régler. Voici le code : (vous en pensez quoi ?

<!DOCTYPE html> <html lang="fr"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Navigateur IA - Recherche Augmentée</title> <style> :root { --primary-color: #0d6efd; --primary-hover: #0b5ed7; --secondary-color: #198754; --secondary-hover: #157347; --bg-color: #f8f9fa; --card-bg-color: #ffffff; --text-color: #212529; --light-text-color: #6c757d; --border-color: #dee2e6; --shadow: 0 4px 12px rgba(0,0,0,0.08); } body { font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background-color: var(--bg-color); color: var(--text-color); margin: 0; padding: 2rem 1rem; } .container { width: 100%; max-width: 800px; margin: 0 auto; } h1 { text-align: center; color: #333; margin-bottom: 2rem; } #search-form { display: flex; margin-bottom: 2rem; box-shadow: var(--shadow); border-radius: 50px; } #search-input { flex-grow: 1; padding: 1rem 1.5rem; font-size: 1rem; border: 1px solid var(--border-color); border-radius: 50px 0 0 50px; outline: none; transition: all 0.2s; } #search-input:focus { border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.25); z-index: 1; } #search-button { padding: 1rem 1.75rem; font-size: 1rem; background-color: var(--primary-color); color: white; border: none; border-radius: 0 50px 50px 0; cursor: pointer; transition: background-color 0.2s; } #search-button:disabled { background-color: #6c757d; cursor: not-allowed; } .results-container { background-color: var(--card-bg-color); border-radius: 12px; padding: 1.5rem; box-shadow: var(--shadow); } .results-section { padding-bottom: 1.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid #f0f0f0; } .results-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; } .ai-trigger-button { width: 100%; background-color: var(--secondary-color); color: white; border: none; padding: 0.75rem 1rem; font-size: 1rem; font-weight: 500; border-radius: 8px; cursor: pointer; transition: all 0.2s ease; } .ai-trigger-button:hover:not(:disabled) { background-color: var(--secondary-hover); transform: translateY(-2px); } .ai-placeholder { position: relative; background-color: #f8f9fa; border-radius: 8px; padding: 3rem 1rem; overflow: hidden; color: #6c757d; text-align: center; } @keyframes shimmer { 100% { transform: translateX(100%); } } .ai-placeholder::after { content: ''; position: absolute; top: 0; left: -150%; width: 150%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.7), transparent); animation: shimmer 1.8s infinite; } .ai-result-title-clickable { font-size: 1.75rem; color: var(--primary-color); margin-bottom: 1rem; font-weight: 600; cursor: pointer; transition: color 0.2s; } .ai-result-title-clickable:hover { color: var(--primary-hover); text-decoration: underline; } .result-card { background-color: #fdfdfd; border: 1px solid var(--border-color); padding: 1rem 1.5rem; border-radius: 8px; margin-bottom: 1rem; transition: all 0.2s ease; cursor: pointer; } .result-card:hover { transform: translateY(-3px); box-shadow: 0 6px 15px rgba(0,0,0,0.1); border-color: var(--primary-color); } .result-card h4 { margin: 0 0 0.25rem 0; color: var(--primary-hover); font-size: 1.1rem; } .result-card p { margin: 0; color: var(--light-text-color); font-size: 0.9rem; } .search-snippet { background-color: #fff3cd; padding: 0 2px; border-radius: 3px;} .iframe-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 1000; display: none; padding: 0; } .iframe-container { width: 100%; height: 100%; background: var(--bg-color); } .iframe-overlay iframe { width: 100%; height: 100%; border: none; } .iframe-close-btn { position: absolute; top: 15px; right: 15px; width: 32px; height: 32px; background: #e60023; color: white; border: none; border-radius: 50%; font-size: 22px; cursor: pointer; line-height: 32px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,0.4); transition: transform 0.2s; z-index: 1001; } .iframe-close-btn:hover { transform: scale(1.1); } .google-title { font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; } .g-blue { color: #4285F4; } .g-red { color: #EA4335; } .g-yellow { color: #FBBC05; } .g-green { color: #34A853; } </style> <script async src="https://cse.google.com/cse.js?cx=e449b2a782968448a"></script> </head> <body> <div class="container"> <h1>Navigateur IA</h1> <form id="search-form"> <input type="text" id="search-input" placeholder="Explorer un sujet..." required> <button type="submit" id="search-button">Rechercher</button> </form> <div id="main-results" class="results-container" style="display: none;"> <div id="ai-section" class="results-section"></div> <div id="wiki-results" class="results-section"></div> <div id="google-results" class="results-section"> <h3 class="google-title"> <span class="g-blue">G</span><span class="g-red">o</span><span class="g-yellow">o</span><span class="g-blue">g</span><span class="g-green">l</span><span class="g-red">e</span> </h3> <div class="gcse-searchresults-only"></div> </div> </div> </div> <div id="iframe-overlay" class="iframe-overlay"> <button id="iframe-close-btn" class="iframe-close-btn">&times;</button> <div class="iframe-container"> <iframe id="content-iframe" title="Contenu Détaillé" sandbox="allow-scripts allow-same-origin"></iframe> </div> </div> <script> const CEREBRAS_API_KEY = "csk-e325p2dr4ercjy59dwnjd52hffwy5xr5hmy6cvnhejfv2dhc"; const CEREBRAS_API_URL = "https://api.cerebras.ai/v1/chat/completions"; const AI_MODEL = "qwen-3-coder-480b"; const SYSTEM_PROMPT = ` Tu es ComponentSynth, un moteur d'IA intégré dans un navigateur web avancé. Ta mission est de répondre à la requête de l'utilisateur en générant une page web complète, autonome et informative. Contexte: La page que tu crées sera affichée directement dans le navigateur en plein écran. Elle doit être de haute qualité, comme un article de magazine numérique. Règles sur le Style: - Le style doit être moderne, épuré et professionnel. - Utilise une palette de couleurs harmonieuse, des espacements généreux et une typographie lisible. - Assure-toi que le contenu est bien structuré avec des titres, des paragraphes, et éventuellement des listes ou des cartes. Règles sur le Code: - Le code que tu produis doit être un bloc HTML unique et autonome. - Tout le CSS doit être contenu dans une seule balise <style> à l'intérieur de ce bloc. - Tout le JavaScript, s'il est nécessaire pour l'interactivité, doit être dans une seule balise <script>. - N'utilise absolument aucune librairie ou ressource externe (pas de CDN, pas de polices Google, etc.). Règles sur le Format de Sortie (impératif et non négociable): - Ta réponse DOIT commencer par une balise <titre> contenant le titre principal de la page. - Ta réponse DOIT ensuite contenir une balise <html_view> contenant le code complet de la page. - Il ne doit y avoir AUCUN texte en dehors de ces deux balises. `; const searchForm = document.getElementById('search-form'); const searchInput = document.getElementById('search-input'); const searchButton = document.getElementById('search-button'); const mainResultsContainer = document.getElementById('main-results'); const wikiResultsContainer = document.getElementById('wiki-results'); const aiSectionContainer = document.getElementById('ai-section'); const iframeOverlay = document.getElementById('iframe-overlay'); const contentIframe = document.getElementById('content-iframe'); const iframeCloseBtn = document.getElementById('iframe-close-btn'); let aiGeneratedComponent = null; async function performSearch(query) { setLoadingState(true); aiGeneratedComponent = null; mainResultsContainer.style.display = 'block'; wikiResultsContainer.innerHTML = '<p>Recherche sur Wikipedia...</p>'; aiSectionContainer.innerHTML = ''; try { const wikiResults = await searchWikipedia(query); displayWikiResults(wikiResults, query); displayAITrigger(query); } catch (error) { console.error(error); displayError(mainResultsContainer, "Une erreur est survenue lors de la recherche."); } finally { setLoadingState(false); } } window.addEventListener('DOMContentLoaded', () => { const urlParams = new URLSearchParams(window.location.search); const query = urlParams.get('q'); if (query) { searchInput.value = query; performSearch(query); } }); searchForm.addEventListener('submit', (event) => { event.preventDefault(); const query = searchInput.value.trim(); if (!query) return; const newUrl = window.location.pathname + '?q=' + encodeURIComponent(query); window.location.href = newUrl; }); mainResultsContainer.addEventListener('click', (event) => { const wikiLink = event.target.closest('.result-card[data-wiki-url]'); const aiLink = event.target.closest('.ai-result-title-clickable'); if (wikiLink) { contentIframe.removeAttribute('srcdoc'); contentIframe.src = wikiLink.dataset.wikiUrl; iframeOverlay.style.display = 'block'; } else if (aiLink && aiGeneratedComponent) { contentIframe.src = 'about:blank'; contentIframe.srcdoc = aiGeneratedComponent; iframeOverlay.style.display = 'block'; } }); iframeCloseBtn.addEventListener('click', () => { iframeOverlay.style.display = 'none'; contentIframe.src = 'about:blank'; contentIframe.removeAttribute('srcdoc'); }); function setLoadingState(isLoading) { searchButton.disabled = isLoading; searchButton.textContent = isLoading ? 'Recherche...' : 'Rechercher'; } function displayError(container, message) { container.innerHTML = `<p style="color: red; text-align: center;"><b>${message}</b></p>`; } async function searchWikipedia(query) { try { const endpoint = `https://fr.wikipedia.org/w/api.php?action=query&list=search&srsearch=${encodeURIComponent(query)}&format=json&origin=*`; const response = await fetch(endpoint); if (!response.ok) return []; const data = await response.json(); return data.query.search || []; } catch (e) { return []; } } function displayWikiResults(results, query) { let html = '<h3>Résultats Wikipedia</h3>'; if (results.length === 0) { html += `<p>Aucun article trouvé pour "${query}".</p>`; } else { results.forEach(article => { const url = `https://fr.wikipedia.org/?curid=${article.pageid}`; html += ` <div class="result-card" data-wiki-url="${url}"> <h4>${article.title}</h4> <p>${article.snippet.replace(/<span class="searchmatch">/g, '<span class="search-snippet">')}...</p> </div>`; }); } wikiResultsContainer.innerHTML = html; } function displayAITrigger(query) { aiSectionContainer.innerHTML = ''; const button = document.createElement('button'); button.className = 'ai-trigger-button'; button.textContent = 'Pas satisfait ? Générer une synthèse IA'; button.addEventListener('click', () => handleGenerateAI(query, button)); aiSectionContainer.appendChild(button); } async function handleGenerateAI(query, triggerButton) { triggerButton.disabled = true; triggerButton.textContent = 'Génération en cours...'; const placeholder = document.createElement('div'); placeholder.className = 'ai-placeholder'; placeholder.textContent = 'Création du composant par l\'IA...'; triggerButton.after(placeholder); try { const aiResponse = await callCerebrasAPI(SYSTEM_PROMPT, query); const structuredResult = parseAIResponse(aiResponse); if (!structuredResult.title || !structuredResult.htmlComponent) throw new Error("Réponse de l'IA malformée."); aiGeneratedComponent = structuredResult.htmlComponent; aiSectionContainer.innerHTML = `<h2 class="ai-result-title-clickable">${structuredResult.title}</h2>`; } catch (error) { displayError(aiSectionContainer, error.message); } } async function callCerebrasAPI(systemPrompt, userQuery) { const messages = [{ role: "system", content: systemPrompt }, { role: "user", content: `Génère un composant web pour le sujet : "${userQuery}"` }]; const response = await fetch(CEREBRAS_API_URL, { method: 'POST', headers: { 'Content-Type': 'application/json', 'Authorization': `Bearer ${CEREBRAS_API_KEY}` }, body: JSON.stringify({ model: AI_MODEL, messages, stream: true, max_tokens: 4096, temperature: 0.6 }) }); if (!response.ok) { const errorBody = await response.text(); throw new Error(`API Cerebras - ${response.status}: ${errorBody}`); } const reader = response.body.getReader(); const decoder = new TextDecoder(); let fullResponse = ''; while (true) { const { done, value } = await reader.read(); if (done) break; const chunk = decoder.decode(value, { stream: true }); for (const line of chunk.split('\n')) { if (line.startsWith('data: ')) { const data = line.substring(6); if (data.trim() === '[DONE]') break; try { const parsed = JSON.parse(data); if (parsed.choices[0]?.delta?.content) { fullResponse += parsed.choices[0].delta.content; } } catch (e) {} } } } return fullResponse; } function parseAIResponse(responseText) { const titleMatch = responseText.match(/<titre>([\s\S]*?)<\/titre>/); const htmlMatch = responseText.match(/<html_view>([\s\S]*?)<\/html_view>/); return { title: titleMatch ? titleMatch[1].trim() : null, htmlComponent: htmlMatch ? htmlMatch[1].trim() : null }; } </script> </body> </html>



Turing ES : An AI-Powered Evolution of Enterprise Search Turing ES : An AI-Powered Evolution of Enterprise Search
Self-promotion
Turing ES : An AI-Powered Evolution of Enterprise Search

Hey, Turing ES platform is leveraging the power of Artificial Intelligence to transform how businesses find and use their data. It's more than just a search engine; it's an intelligent knowledge discovery tool. What is Turing ES? The "ES" stands for "Enterprise Search," but the "Turing" is no coincidence. The solution is designed to mimic the human capacity to understand and interact with information. Here are some of the key features that caught my attention:

  • Semantic Search: Instead of just matching keywords, Turing ES understands the meaning and intent behind your query. This results in more relevant and accurate search results right from the start.

  • Intelligent Navigation: The platform allows you to intuitively browse by topics and categories, much like exploring a smart, self-organizing library.

  • Integrated Chatbot: One of the coolest features is the integration of a generative AI chatbot. You can ask questions in natural language and receive direct, concise answers pulled from your own internal documents and data. The Power of Connectors What makes a solution like Turing ES truly powerful is its ability to connect to and index all of a company's disparate data sources. These connectors are the "bridges" that allow the search engine to pull information from a wide variety of systems, breaking down data silos. Turing ES supports a vast array of connectors, which means you can have a single point of truth for all your company's knowledge. This includes:

  • Content Management Systems (CMS): Connectors for platforms like AEM, WordPress, and Opentext to index articles, documents, and web content.

  • Databases and File Systems: Access to structured data in SQL databases, as well as unstructured files stored on network drives and in file systems.

  • Web crawler to index ant website. What are your thoughts on using AI and semantic search in enterprise solutions? Has anyone here had experience with Turing ES or similar tools?

1 upvote · 1 comment


🚀 Ready for Your Cloud Transformation? Discover Siemens Xcelerator


Looking for BEST SE for RESULTS Looking for BEST SE for RESULTS
Help

Ignoring everything else (yes, everything else), what is the best FREE search engine for results accuracy? Everything I've read and heard online is contradicted by someone else entirely in the comments or elsewhere. I just want a straight answer, which I have been scouring this subreddit for and cannot find. Which SE is the BEST in the criteria of search results accuracy ONLY.

Yes, I know you can manually filter in google, I've been doing it for a long time and I still get an ungodly amount of clutter in my results because I'm not using search engines to get my PhD, I'm using it to just do regular, non-academic, non-business related browsing. I don't need TOR, I don't need more privacy, I don't care about "cool features." I just want to stop having to scroll past AI generated text blocks and then check the top 15 results of every search to find what I'm looking for.

Thank you!







AI Mode Coming to Google Chrome URL / Search Bar / Omnibar Later This Month (+ Tab-Specific Follow-Up Questions) AI Mode Coming to Google Chrome URL / Search Bar / Omnibar Later This Month (+ Tab-Specific Follow-Up Questions)
News
AI Mode Coming to Google Chrome URL / Search Bar / Omnibar Later This Month (+ Tab-Specific Follow-Up Questions)

I predicted this would happen about two weeks ago (when the court ruled that Chrome would remain Google's), but I assumed it would happen no sooner than when they monetize AI Mode properly. Well, I was wrong. Google is very serious about forcing AI Mode on us!

I assume this won't be a default behavior just yet. The bar will still search, but there will be an option to research any query in the AI Mode. I don't have any stats as to how many people use the omnibar to search, but I think we will all see some traffic losses following the update.

In addition, the omnibar now lets you research any topic or brand further by suggesting relevant follow-up questions, based on the tab you are on. For example, if you are reviewing a serum on Amazon, the omnibar suggests comparing the product to alternatives, asking about the key ingredients, or asking a generic question about one of them.

https://preview.redd.it/ai-mode-coming-to-google-chrome-url-search-bar-omnibar-v0-ws0uxy70qcqf1.png

I asked it to compare to alternatives, and Chrome opened AI Mode in the side panel, listing other products.

Every brand needs to start researching these suggested questions that show up on different pages of their sites.

https://preview.redd.it/ai-mode-coming-to-google-chrome-url-search-bar-omnibar-v0-dorgfjqoqcqf1.png
4 upvotes · 7 comments

Flash Sale: Unlock our limited time offer. Take $250 off your first year.


Example: Indexing WKND Site with Turing AEM Plugin Example: Indexing WKND Site with Turing AEM Plugin
Self-promotion
Example: Indexing WKND Site with Turing AEM Plugin

Turing Connector for Adobe Experience Manager (AEM) is an open-source solution that integrates AEM with advanced search engines like Solr, as well as generative AI technologies from providers such as OpenAI and Ollama.

It supports indexing and searching content across both cloud and on-premises environments, offering flexibility for diverse infrastructure setups.

The solution has already been implemented in sectors like education, banking, and insurance in Spain and Brazil.

With a dedicated AEM connector, Turing ES enables full customization and transformation of AEM content—including pages and content fragments. It also supports multilingual content, tagging, and targeting rules, making it suitable for complex enterprise search scenarios.

1 upvote · 1 comment

Search engines suck now Search engines suck now

I used to feel like I could just ignore ads and unrelated links coming up from google but now I feel like it's just getting ridiculous. Page 1 used to be so informative 😔 When I was a kid I would go down so many rabbit holes because I could find related things to what I wanted to know but now kids are growing up with just a million ads, it's so stupid. I don't want to be someone who is actively hating AI algorithms but stuff like this is so annoying and it's actually a serious problem I fear

https://preview.redd.it/search-engines-suck-now-v0-zyogjlfr2zpf1.jpg


Google targeting Brave browser users Google targeting Brave browser users

I posted the following on /google sub and it was removed within about a minute:

Using Brave, myself and others now get subjected to a Captcha check under the pretext of "suspicious activity from your network," which pretext is an abject lie and insultingly unclever, being as Chrome accesses Google without issue. This Captcha check is not random. It is every time. Furthermore, Google searches on Brave hang for a few seconds. I've no doubt this is yet another "feature" tailored for Brave users. Chrome searches populate instantly. This behavior is relatively recent.

The upshot is that I've started using the Brave search engine and found it gives nearly identical results to Google but without the force-fed experimental AI and other crass Google BS. The Brave search is as rich but more to-the-point.

If US politicians had any balls they'd have put the screws to this gluttonous, bloated, corrupt, monopoly-bent company long ago.



Social search is already reshaping how people discover content. If your brand isn’t optimizing for social platforms and generative AI, you’re falling behind. Social search is already reshaping how people discover content. If your brand isn’t optimizing for social platforms and generative AI, you’re falling behind.


Push your creative models further. Vast.ai handles the GPUs.





Search Engines that actually let you disable AI? Search Engines that actually let you disable AI?
Advice

Today I learned that adding -ai to Google search does not in fact stop the environmental cost of creating the AI Overview. It just doesn't show it to you, but it still makes it. Or that's my understanding from doing some reading (including, ironically, from the AI Overview). From reading up on duckduckgo, it looked to me like the same story - you can request a view without the AI search results so you don't have to see them, but it still costs as much energy-wise as a search with it turned on. 99% of the time I search, I don't need or want AI results. I'm fine with manually hitting a toggle/button on the rare occasion I do and waiting a bit for it to come in. Are there alternative search engines that either don't have ai features or that let you actually disable them? Or am I wrong and one of those actually lets you disable it?



How to get real results on iOS How to get real results on iOS
Advice

Something I’ve been finding lately is that so many of the searches I do end up with nothing but best of lists, ai generated sites and maybe 1 or 2 genuine results. Also many of the results will just be repeated over and over. I’m using DDG on Safari on iOS. I have seen people say to go to the Brave browser but I haven’t been fond of how they’ve gone down the crypto route. Unless that can be completely isolated and shutdown I kinda don’t want to use that browser. But the thing is I can’t get Startpage (which I use on my Android tablet and my PC) on Safari so yeah



Download your FREE Asbestos Products Guide to learn more about asbestos-related diseases, find out what products contain asbestos, and see if you or a loved one was exposed

Download Your FREE Asbestos Guide




Will every website need a Model Context Protocol (MCP) as AI browser agents become more common? Will every website need a Model Context Protocol (MCP) as AI browser agents become more common?
Idea
Will every website need a Model Context Protocol (MCP) as AI browser agents become more common?

With Anthropic's new "Piloting Claude for Chrome" research preview, we're seeing a glimpse of a future where AI agents can truly navigate the web. These aren't just chatbots; they can see what you see, click buttons, and perform complex, multi-step tasks on a user's behalf.

This brings up an important question for web developers: Will we need to start building websites with the Model Context Protocol (MCP)?

For those unfamiliar, MCP is an open-source standard created by Anthropic that provides a way for LLMs to securely and efficiently communicate with external services and data sources. It essentially gives AI a standardized "language" to interact with the web.

Instead of just creating a user-friendly interface for humans, will we now also need to create a machine-friendly interface for AI? What does this mean for website design, accessibility, and security?

What are your thoughts on this? Is this a new best practice for the future of web development, or a niche concern for a small number of sites?

18 upvotes · 51 comments


What Is The Best Search Engine For Pictures In Your Opinion? What Is The Best Search Engine For Pictures In Your Opinion?
Help

I'm really trying to find a Search Engine that has really good and clear pictures. I was using Yahoo Image Search. But every since they updated the Android App they have completely ruined it by putting Text Captions under the Images and making the pictures a lot smaller too now. What Search Engine can I use where I can see Pictures that are big and that don't have Text Captions under them? I'm open to all kinds of suggestions for Search Engines. You can barely see any pictures on the Yahoo Search Mobile Android App because the Text Captions are covering more than half of it.



Review: Navo mobile search, combines Reddit, TikTok, and web results to escape SEO spam (looking for similar tools) Review: Navo mobile search, combines Reddit, TikTok, and web results to escape SEO spam (looking for similar tools)
Alternative

I've recently been using an app called Navo for mobile search. It lets you instantly see results from Reddit, TikTok, and LLMs, side-by-side, so you get different perspectives and actual user opinions, not just SEO-optimized sites and ads.
It’s been a serious time-saver, especially for things like product research or figuring out trending topics. One catch: after talking with the team, it sounds like Navo will be moving to a paid model because they’re running things with LLMs, similar to Perplexity but focused more on media/social content.
Has anyone else tried it? I’m also curious, what other tools or workflows are people using to surface community answers and avoid the usual junk sites or endless affiliate blogs?
Would love other suggestions (free or paid).



Any new search engines? Any new search engines?
Any new search engines?

Since its been almost 3 decades since search engines came out , and since the last 15 years Google' search capabilities have significantly decreased , or in other words Google, 20 years ago was better despite the company today having 100x more money infrastructure and better algorithms now. They just used them to milk the cash cow they have created (all of the algorithmic capabilities and computing power are geared toward making them more money not improving their search. Now when we consider all the tech improvements in the last few years I am asking if there are any new search engines that have spectacular search? I am not asking about privacy concerns, only about search capabilities (yes duckduckgo, and bing suck just as bad as google at search right now)

8 upvotes · 20 comments

Search engine with google results Search engine with google results

I’m using a VPN and I always end up getting captchas every time I search something on Google. I know there are extensions to bypass them but I’m using Brave on iOS so I can’t use them.

I’m looking for a new search engine that gives the same results as Google without captchas. Privacy is good but not that important to me tbh. Do you have any suggestions? I know a lot of search engines but usually I prefer google results, so the closest results the better.








Web Search as If From the Command Line (!Bangs but better) – trovu.net Web Search as If From the Command Line (!Bangs but better) – trovu.net
Self-promotion

I've built trovu.net which allows you to do web search as from your command line. Examples:

You might know the idea as !bangs from DuckDuckGo but trovu's shortcuts take two or more arguments, and those arguments can even be typed. It also runs entirely in the browser, sending no query to my server, giving you maximum privacy.

Trovu also has built-in localization by organizing shortcuts into namespaces:

  • fr tree picks the French–German dictionary if your browser’s preferred language is German.

  • a shakespeare will search on Amazon.ca if your browser’s preferred language is en-CA.

  • w berlin searches Wikipedia in your language.

  • fr.w berlin searches the French Wikipedia, overriding your browser’s language.

You can also perform simpler searches:

  • g berlin searches Google for “berlin”

  • d berlin searches DuckDuckGo for “berlin”

  • gol pl, berlin searches Google for “berlin”, but only pages in Polish

There are 6,000+ curated shortcuts, maintained in a GitHub repo.

Other features include:

Feedback and suggestions are welcome.


Help finding obscure article my beloved boss was in? Help finding obscure article my beloved boss was in?
Feedback appreciated

I have searched everywhere I could think of, so I’m coming to the experts… My director recently retired and stunned us all before he did by revealing to us that he posed in a magazine in a Speedo. For context, we’re all oncology researchers. He’s a buttoned up Yale graduate. Used to be a professor. Lovely guy, but exactly how you’d imagine a scientist who graduated from Yale to be. So while playing an innocent game of 2 truths and a lie for his retirement party, he seemingly made it obvious which statement was a lie - he sang a cappella in college, he’d been to Japan, and he posed in a Speedo for National Geographic. Of course after we all made our very wrong guess that our nerdy boss lied about posing half naked in a magazine, he immediately came back and said, “how could you all think I would sing a cappella?” He did this as part of a study for exercise physiology in the 90s or early 2000s. He was covered in electrodes and on a treadmill. His name is Richard Kennan. Those are the only details he was willing to spare. I have searched the internet and libraries but to no avail. So have my colleagues. (It is not lost on us that we can’t find this given our profession). I would love to give this photo to my coworkers as a Christmas gift. Rich is and will always be beloved. Having this photo in our office will be a treasure. If you can help, you will also be a treasure. Thanks in advance.





Quick question about a push mower engine Quick question about a push mower engine
Quick question about a push mower engine

So i have a push mower engine that i would use in a home made go kart but for some reason whenever i start it the engine low revs for about a second then starts going in very high revs which im scared could over rev it.

I do not know why it does that and i wish i could find some help here.

Thanks 🙏

1 upvote · 8 comments



Clickbait fooled us, Al isn't buying it! Clickbait fooled us, Al isn't buying it!

The current web is filled with click-attracting headlines and high-level content that doesn't provide much value, and it's this way by design because the search engines money comes from the time people spend on them.

So, it's always a give or take on providing just good enough content to retain a user but not easily provide all information so they come back. Also, the attention span of all of us is low, so writers need to cut out relevant information to avoid getting the reader bored.

This led to many click-attracting experts writing content and topics that they barely understand, and along the way undervaluing writers who have done the research and put the time to write about complex topics.

With the rise of LLMs, now everyone can write "good" content because they were trained on that clickbait expert content, but foundational LLMs as well as people struggle to write something NEW because it's just hard to do it. To write something new and valuable, there needs to be human interaction or some way to collect information about changes in the physical world and transfer them to the web in an organized and descriptive manner.

My hope is that more and more people who are industry experts start creating relevant content with the use of LLMs! And then Al agents will navigate the web with clear goals and will bypass all the clickbait and find content that does provide value!

Only this valuable content will be picked up by agents doing online search!


Are Ecosia and Duck Duck Go poorer search engine experiences even if they are better environmental choices than google? Or is it just me... Are Ecosia and Duck Duck Go poorer search engine experiences even if they are better environmental choices than google? Or is it just me...

I get way less results on both platforms compared to google. I certainly don’t want to support the big corporate giant, but I wonder why so many results aren't being shown on Duck Duck and Ecosia...



Looking for feature ideas for a search engine project Looking for feature ideas for a search engine project
Feedback appreciated

Hello everyone,
I am currently developing a new search engine and am interested in hearing suggestions for useful or innovative features to include. The project is still in its early stages, so any advice on features you would want in a search engine, including search functionality, user experience, or anything else that could improve the product, would be greatly appreciated.

Thanks!









I stumbled across a new search engine I stumbled across a new search engine

I found this "new" search engine called "Void" and I noticed it is cleaner, more customizable, and sleeker than Google. It is considered lesser-known

Although it claims to have privacy, it's not clear +

It has ads on the homepage but not in search results.

Here are the Pros

  • Cleaner, Minimal UI

  • Customizable Homepage

  • Integrations

  • AI integration

  • Ability to change the priorities of search results

And here are the Cons

  • Paywalled

  • Has ads

  • Proprietary / Closed Source

Non-referral link: https://askvoid.com/

I have heard it integrates with reward extensions

My rating: 7/10
It is great for beginners, but if you are serious about privacy, you might wanna use SearX/SearXNG (Free) or metaGer (Paid) instead.


User Agents and real-time searches for AI chats User Agents and real-time searches for AI chats
Comparison
User Agents and real-time searches for AI chats

We did a quick experiment on when and how the AI chats are searching web pages.

We recently published a webpage on our site that was not yet indexed by Google. We then asked different chats ChatGPT 4o & o3, Gemini, Perplexity & Claude sonnet to summarize the page (like this:

https://preview.redd.it/user-agents-and-real-time-searches-for-ai-chats-v0-zom279nus9gf1.png

(I  kept blind-spot part of URL for fun as the rest is blurry).

We then checked our bot tracker to see what pages loaded. Here's what we found:

Model User-agent Result
Perplexity Sonar Pro Perplexity-User Loads the HTML only each time. No JS/images loaded
Gemini 2.5 Flash Google (user agent was "Google" lol) Loads the HTML only each time. No JS/images loaded
Claude 4.0 Sonnet Claude-User Loads the HMTL one time per URL. Will cache future times. No JS/images loaded
OpenAI 4o NA DOES NOT LOAD THE URL. Only relies on searching Google for the gist of the URl like "Rivalsee free prompt fix vibe coding SEO blind spot" Did not think page existed.
OpenAI o3 ChatGPT-User Loads the HTML only each time. No JS/images loaded

Some take-aways.
* All of the real-time searches are not loading JS. They are just grabbing content from the html
* OpenAI 4o is NOT actually searching the web. They are likely searching Google
* It appears that claude Sonnet is caching pages but the rest are not.

If there are other chats you think we should include, let us know and we can update this.

8 upvotes · 20 comments


I lost my hopes for DDG I lost my hopes for DDG
I lost my hopes for DDG

So Meta uses Bing for their AI or for Metas Ai to search. I was searching on IG for a tag I know exists from someone I was friends with. IG meta kept giving me the run around and not letting me see it. So I hit the bing search button, popped in the tag with the hash and tried it with Instagram and IG before and after the tag. Each time pulling up 5 pages of 6 results.. Which the words in the tags would have brought up way more than that….. But never showed the actual tag I was searching for.

Drop into safari, DDG is my search engine for private and reg, do the exact same searches…. Get basically identical results.. still no match to the actual tag….

Tried google from safari, it was the third result…. Tried orion which I use startpage, second result…

Find out the person blocked me, which I had someone expected, but I wanted to test out how secure DDG was ever since they started binging…….



Why does Google Images show encrypted-tbn0.gstatic.com URL instead of my original image URL? Why does Google Images show encrypted-tbn0.gstatic.com URL instead of my original image URL?

Hi,
I noticed that in Google Image Search, my image appears with a URL like https://encrypted-tbn0.gstatic.com/images, which I understand is a cached thumbnail hosted by Google. However, I’ve seen that some images in the search results appear with their original source URLs instead.

My image is publicly accessible, properly embedded using standard HTML (<img src="">), and I’ve added relevant meta tags like og:image. It’s also not blocked in robots.txt, and the page has already been indexed by Google.

My questions are:

  1. Under what conditions does Google choose to display the original image URL instead of the cached thumbnail (encrypted-tbn0)?

  2. Is there a way to encourage Google to link directly to the original image in the search results grid or preview?

  3. Are there specific SEO best practices or structured data requirements that influence this behavior?

Any insights or documentation links would be greatly appreciated!

Thanks in advance.









Why Should an Agent Be Registered with PPRA? Legitimacy & Accountability: PPRA registration means the agent is officially recognized and authorized to operate in the property sector. This protects you from dealing with fraudulent or unqualified individuals. Consumer Protection: The PPRA enforces Why Should an Agent Be Registered with PPRA? Legitimacy & Accountability: PPRA registration means the agent is officially recognized and authorized to operate in the property sector. This protects you from dealing with fraudulent or unqualified individuals. Consumer Protection: The PPRA enforces

Litter Layer — Discover hidden worlds within the litter layer of the world wide web Litter Layer — Discover hidden worlds within the litter layer of the world wide web
Self-promotion

Discover hidden worlds within the litter layer of the world wide web. Our web spider Patu slowly explores the web and prefers indie websites without things like Facebook/Meta Pixel or Google Adsense. It also ranks sites with RSS feeds higher because those were/are amazing and social media platforms should have never removed them.

Websites with a patu.txt file at the root will also rank higher. In fact, the only way to suggest a site is to ensure that site has the patu.txt file. If you don't want to add a patu.txt file your site could eventually get added once Patu naturally finds it. It's just to add it instantly, you must have patu.txt.

What's patu.txt?

Our spider, Patu, looks for robots.txt, sitemaps, and our own unique patu.txt file to help it crawl and add your site. The patu.txt file should include three tags and up to three URLs that you recommend. Ideally, you should recommend other websites, not pages within your website.

In a blank txt file, simply create something like this:

music electronic music ambient

https://myfriendswebsite.com https://anothersite.com https://patupatu.io

That's it. Three tags, three URLs. Upload it to your site's root (sometimes called public_html). This will help to organize and grow Litter Layer over time. Plus, it's a way to show your support for this project.


Does Anyone Know How To Get Rid Of The Text Captions At The Bottom Of The Yahoo Search Images? Does Anyone Know How To Get Rid Of The Text Captions At The Bottom Of The Yahoo Search Images?
Other

They got rid of the news tab in Yahoo Search. The pictures are also much smaller too unfortunately. I've also noticed that The Search Bar seems to be getting smaller and smaller in every single update too. When I go on The regular Yahoo Search Browser on my Android Phone The Text Captions aren't under The Yahoo Search Images at all. Has anyone else noticed these awful changes in The Yahoo Search Mobile App?


Is there any good smaller search engine alternatives? Is there any good smaller search engine alternatives?
Alternative

Need a search engine that will actually search for stuff instead of just giving an "AI overview" and completely ignoring what you've typed also one that doesn't change what you've searched because it thinks you've made a spelling mistake. I'd also like it if I don't have to sign in and have all my searches stored. I bassically need a browser that isn't Google or bing or any other massive data hoarding company. Any suggestions are much appreciated!


Search engine specificity, accuracy Search engine specificity, accuracy
Help

I suspect this is the number one subject on this category. Sorry if it is and I'm just repetitive.

Is it just me or have all search engine developers turned OFF the ability to use SEARCH OPERATORS? They don't seem to work anywhere. Been using Brave Search, which is supposed to have retained the search operators, but even there, they fail sometimes. Google and Amazon are the WORST.

Are there, indeed, search engines that still use search operators? Any apps or tricks to making Amazon's search more specific/accurate?



What Is Your Favorite Search Engine To Use And Why? What Is Your Favorite Search Engine To Use And Why?

I'm currently using DuckDuckGo, Google, Bing, Microsoft Edge, And Yahoo Search too. I really want to try some different Search Engines and see if I can find something else I like. I prefer search engines that have Accurate News, Clear Images, and Big Font as well. I also prefer Images that don't have writing on them when I search them on Google and Bing. I'm open to all kinds of suggestions and opinions about different Search Engines.


amazon has no variation when it comes to product search on my account amazon has no variation when it comes to product search on my account

example: i search for a long dress with pockets. i look at the results and decide i'd rather have a short dress, no preference on details, and in the new search i get the exact same long dresses. i search again, maybe for cotton v neck nightgown, i'll get the exact same dress listings that came up in the first search. it doesn't matter what features about the search change, be it length, occasion, fabric content, etc, it never changes. i feel like this is a recent change in my online experience.

i've seen this happen with a couple of other big name online retailers and there isn't anything i can do except mess with my cookies settings, which i often clear anyway. i just am really really annoyed by the "you like this? well maybe you'll like the exact same thing!" search result groundhog day everything seems to be stuck in. it is even happening on netflix. i hope this stage of digital advertising is a quick passing phase.




What Are Some Other Search Engines I Can Use Besides Yahoo? What Are Some Other Search Engines I Can Use Besides Yahoo?
Help

Every since The Yahoo Mobile App was updated it's completely becoming unbearable to use now. They completely deleted The News Tab. And half of The Pictures don't work when you click on them. The Pictures are also way too small now too. The Yahoo Mobile App is completely ruined now. What are some Search Engines that are way better than Yahoo that I can use? What are my other options? Is there another Mobile App that I can use besides Yahoo Search? Do you think that I should just delete The Yahoo Search Mobile App?


Duck-duck-go added a toggle to automatically filter/exclude AI-generated images from its image search! Duck-duck-go added a toggle to automatically filter/exclude AI-generated images from its image search!
News

This should be more promoted among people interested in art and science topics, whether for professional or just hobby matters.

The filter is not perfect, but it's a beginning, a glimmer of hope.

Some people have tried emulating it in some other SEs by limiting the results by time prior to the beginning of the new AI-slop-age, which is far from ideal.

It would be cool if it could be set as default, maybe it can if it's like a custom shortcut to the image search itself.






Is it ever too much to optimize one SaaS use-case category page for multiple related keywords? Is it ever too much to optimize one SaaS use-case category page for multiple related keywords?

Hey r/searchengines 👋

I’m part of the growth team at a SaaS company building a no-code widget (pop-up, form, banner) platform.

We have a use case catalog page /widgets/ currently ranking for a cluster of related but subtly different keywords:

https://preview.redd.it/is-it-ever-too-much-to-optimize-one-saas-use-case-category-v0-m1o3tnh0b8cf1.png

The situation:

  • Intent overlaps, but some variations clearly lean more informational (“website widgets”), while others appear more commercial/freemium (“free widgets for websites”).

  • We perform well for the head term, but are stuck in the mid‑teens for the others.

The dilemma:

Should we split this into multiple targeted subpages—for example:

  • /widgets/free/ → targeting “free widgets for websites”

  • /widgets/gallery/ → targeting “website widgets”

  • keep /widgets/ as a more general pillar

What I’d love your input on:

  1. Has anyone in SaaS tried this? What real-world signals (CTR, traffic, SERP movement, etc.) convinced you to make the split?

  2. Authority concerns: Did your original page lose ranking power once supporting pages launched?

  3. Internal linking flow: How did you establish hierarchy and link equity—pillar to spokes, or hub-style linking?

  4. Crafting unique content: What made the subpages stand out, in your eyes? Differences in format, structure, or calls-to-action?

Really appreciate any frameworks, failure stories, or small wins you’ve experienced. I’d love to discuss how far to go when a page is good, but could be better if dialed in more precisely.

Thanks!

— u/claspo_official


Perplexity’s AI Browser “Comet” Takes Aim at Google Perplexity’s AI Browser “Comet” Takes Aim at Google
News
Perplexity’s AI Browser “Comet” Takes Aim at Google

Perplexity has launched Comet, an AI-powered web browser designed to compete directly with Google Search and Chrome. Initially available to Max plan subscribers ($200/month) and select users, Comet integrates Perplexity’s AI engine as the default search tool.

Its standout feature is Comet Assistant, an AI side panel that can summarize emails, manage tabs, and navigate web pages. While useful for basic tasks, it falters on complex ones and requires significant access to user data, raising privacy concerns.

CEO Aravind Srinivas envisions Comet as a full AI-powered operating system, aiming for deep user integration and long-term retention. With competitors like The Browser Company and OpenAI exploring similar territory, the AI browser race is heating up.

Comet isn’t perfect, but it’s a bold step toward rethinking how we browse and search.

Will you use it in place of the usual Google search? Why and why not ...Please share thoughts down below!

4 upvotes · 3 comments

Help with searching Help with searching

I’m trying to find a video where a bus driver at what I think is an airport has a very close call with hitting a child and gets really emotional. When I look up anything to do with a bus and child, the first few pages are all about 2 kids almost hit by a van getting on the bus. I tried putting other words like airport and father angry and it just shows to same results. Is there a way on google to search but not search for a specific topic like the one I keep getting? It’s a problem I run into on google way too much.




I can't download any search engines I can't download any search engines

This is by far the most obscure thing I've ever encountered online. I'm unable to use any search engines except for the inbuilt Microsoft ones. What i mean by this is, whenever i download a search engine and start it, it crashes instantly and wont start up again. I've tried, opera, Firefox, Vivaldi, Duckduckgo... You get the point. It i starting to get really annoying.

To be clear this isn't a problem with downloading applications or programs, that works fine. Its search engines SPECIFICALLY.


Time to stop using Google search. Do this instead. Time to stop using Google search. Do this instead.

Google search has been dogshit for years now. The page rank algorithm is dead. SEO and content farm has made the Google search model useless, and Google itself has sold out its quality to turn a quick buck.

The best way to get answers, knowledge, recommendations, and find new things is with Copilot, Microsoft's interface to ChatGpt. Yeah, I don't like Microsoft either, but they are far less vile than Google today, and you get better results.

Want to learn something? Ask Copilot, "describe the strong nuclear force."

Want a product recommendation? Ask Copilot, "recommend some gift ideas for a four-year-old girl".

Want to know where to go on a night out? Ask Copilot, "what are the hottest bars in Manhattan".

You are getting recommendations from Reddit and TikTok? Copilot compiles them all.

Still stumped? Ask Copilot, "What are some fun things I can do this Fourth of July weekend in [insert location]?"

I guarantee you will get better results than you do from Google every time.

The only thing Google had going for it was YouTube, but they have ruined that as well by being openly hostile to users of Ublock Origin, Firefox, Free Tube, and Gray Jay. There's really not a reason to use Google products today. Greed has killed that company and it's only going to get worse.


What is a good search engine specialized in Facebook posts? What is a good search engine specialized in Facebook posts?
Help

I am looking for some lost media, and the community thinks that there is a huge chance that given lost media was shared once on Facebook.

So how can we go through all the Facebook posts in order to find something? Is there a search engine specialized in Facebook posts? Even those which have been deleted but still archived for some reason?



Search engine that gives relevant results and aren’t like every other search engine? Search engine that gives relevant results and aren’t like every other search engine?

I think I have gone through every single Reddit post ever asking for the best search engine. Every single search engine I have heard about gives you the same results as Google or another search engine. I don’t even think there is a search engine out there in the world I haven’t tried. I’m not even kidding, I mean like even the most unknown search engines you have probably never heard of I have already tried. So, I was just wondering if there was a search engine that isn’t like Google or another search engine. Privacy and everything else doesn’t matter to me. I just want a search engine that gives you unique and relevant results.

Thank you for reading this!




Introducing Search For Organics: Ethical AI & Search Tools for Certified Organic SEO Brand Affiliate Introducing Search For Organics: Ethical AI & Search Tools for Certified Organic SEO
Feedback appreciated

🧠🌿 Introducing Search For Organics: Ethical AI & Search Tools for Certified Organic SEO

🔗 https://searchfororganicsofficial.blogspot.com

Hi r/searchengines — I’d like to share a new independent project called Search For Organics, created to empower regenerative, sustainability-focused research and clean search results. It’s a lightweight ecosystem of ethical search tools designed to cut through greenwashing and support CERTIFIED ORGANIC SEO.

🌱 What’s Inside:

🔎 1. Google Organics A modified search experience that simply adds the term “organic” to all queries, acting as a lightweight organic-focused filter. Ideal for quickly sourcing more eco-aligned, regenerative, or fair-trade search results without relying on AI.

🧠 2. GEM Organics (AI + Search) An AI-powered assistant built with Google Gemini + Google Search grounding. It uses prompt engineering to help steer your queries toward verified, ethical, and sustainable sources. While LLMs can still hallucinate, this tool is designed to reduce synthetic bias and elevate regenerative intelligence.

🤖 3. Bing Organics GPT (AI + Search) A GPT-enhanced Bing search overlay that blends real-time web results with AI summarization, optimized for OSINT and ethical research. It attempts to filter out propaganda and spam, highlighting fair-trade, organic, and peer-reviewed content where possible.

✅ Use Cases: • Organic supplier and certification research • Clean content sourcing for eco-tech or regenerative agriculture • CERTIFIED ORGANIC SEO for ethical businesses and blogs • Intelligence gathering for sustainability, peace, or climate initiatives

We’re not claiming perfection — LLMs can still hallucinate, and results depend on indexed sources — but the goal is to create more conscious, intentional search experiences for the Organic Web.

🔗 Try it: https://searchfororganicsofficial.blogspot.com Would love your feedback and collaborations.

CERTIFIEDORGANICSEO #SearchForOrganics #GemOrganics #GoogleOrganics #BingOrganics #SustainableSearch #LLMtools #GreenSEO #EthicalAI #SearchEngines #OrganicRights



Image Optimization: A Simple Yet Powerful SEO Ranking Factor Image Optimization: A Simple Yet Powerful SEO Ranking Factor

Hey everyone,

Just wanted to share some insights on image optimization something many people overlook, but it plays a big role in both user experience and SEO.

If you're a web developer, designer, or small business owner uploading product or service images, here are a few actionable tips that can make a big difference:

Use the Right File Format

  • WebP → Best for websites, smaller in size and loads faster than JPG/PNG.

  • JPG → Good for regular photos.

  • PNG → Use when you need high-quality images with transparency.

  • SVG → Best for logos and icons, since it scales perfectly.

Rename Your Files with Keywords

  • Don’t upload files named IMG_0453.jpg.

  • Instead, name them something like:

  • organic-masala-blend-rishikesh.jpg

  • Your file name helps Google understand the image content.

Use Descriptive ALT Text

  • Use long-tail keywords naturally in alt text.

  • Example: "Homemade organic all-in-one masala in eco-friendly jar"

  • This improves accessibility and helps with image-based search ranking.Add Relevant Text Around the Image

Google reads the context of the image. The text near your image helps with relevance and ranking.

. Always Set Image Dimensions

  • Define width and height to prevent layout shifts.

  • This is important for Core Web Vitals (especially CLS - Cumulative Layout Shift).

  • Hope this helps someone working on their site or blog.

  • If you’ve got any other image SEO tricks, would love to hear them!

Image Optimization

Stay optimized ✌️