DEV Community

Cover image for 6 Tips to improve your search engine results
Imad
Imad

Posted on • Updated on • Originally published at bemoore.hashnode.dev

6 Tips to improve your search engine results

Search engines are the most commonly used tools by developers when working on solving programming problems.

Routine tasks such as running “How to” and “plugin XYZ for...” search queries play a significant part in our daily lives as programmers.

Thanks to advanced technologies running behind the scenes, popular search engines like Google, DuckDuckGo often give a quick and accurate answer to most queries.

Yet, there are many query options you can use to unlock the search engine’s full potential.

Here are some tips to make the most of your search results :


1. Asterisk wildcard

This is a very powerful feature for enabling partial search, it can come in handy when you are not sure about the full query or just want to browse a certain topic.

The browser will take the asterisk (*) and replace it dynamically with all possible hits.

Example

asterisk.PNG

Google top results:

  • How to create pages dynamically in gatsby.js.
  • How to get started with gatsby.js 2 and Redux.
  • How to source content with gatsby.js.
  • How to use images in gatsby.js.
  • How to secure gatsby.js.

2. Colon

The use of a colon (:) enables adding specificity to the query, it tells the browser to run the search term only on a specific website.

Example

colon.PNG

The list will contain only posts from stackoverflow.com.
At the time of the writing, google found 1.2M results for the query above.


3. Hyphen

The hyphen (-) is used to exclude a certain category from the search results, this can be used when a term has different meanings.

Example

hyphen.PNG

The query above will return all results related to “Mocha” excluding anything related to -coffee. as mocha is a coffee variant.

This query will return results related to Mocha, the Javascript testing framework.


4. The "OR" operator

Yes, OR operator works the same way in google search as in programming languages, this feature enables you, you guessed it, to run multiple queries in a single search term.

Example

or_operator.PNG


5. Quotes

Adding quotes (" ") around the query tells the search engine to search for that exact term.

Example:

quotes.PNG


6. Image size

Adding image dimensions in your image search query will reduce your search time significantly, this feature allows you to add the widthxheight option to your query.

Example:

img_resize.PNG

This query will return filtered cat images to 500px width and 500px height.

Conclusion

These tips are only a few of very powerful options you can pass to your query, in case you would like to explore more, here is a link to google search help documentation

Thank you for reading, if you liked this article, do not hesitate to share it with your friends.
Follow me on twitter for daily programming tips.

Have a nice day!

IYO

Top comments (4)

Collapse
 
machineno15 profile image
Tanvir Shaikh

nice, It's Google Dorking.
i use them daily too, you have talked about few there's more helpful dorks out the , hope to see you include them too

Collapse
 
2imad profile image
Imad

Yes there are a ton of them, these ones i use on a daily basis, if you have one that is useful and not on the list, let me know, i will be happy to edit the post and include it :)
Cheers

Collapse
 
mbruchetpro profile image
Maxime Bruchet

Didn't know about this ! It's sure, it can help. Do you use frequently ?

Collapse
 
2imad profile image
Imad

Yes i do use them when the regular search does not give me the result i want. Typically when i have a very specific search term.
Try them out! :)