Top 10 tips and tricks to search for anything like a pro?

No more struggling while searching for errors!

ยท

2 min read

No one can deny that searching is a crucial part of our life. You can ask yourself how many times you google something per day? Yeah ๐Ÿ” many... ๐Ÿ˜…

But the real question is how often you find yourself scrolling without hope, and sometimes you give up because you couldn't find what you want? ๐Ÿคฏ

No worries ๐ŸŽ‰ There is a solution: ๐ŸŽ‰

10 tips and tricks to make sure you get what your expected results:

1. "[Search term]" ๐Ÿ˜

How to use it? -> "[Search term]".

Used to get the exact match to your search term.

Ex. "frontend developer"

2. site:URL ๐Ÿ’ป (URL = Uniform Resource Locator or simply site address)

How to use it? -> [search term] site:url

Used to get your search term from a specific site

Ex. javascript site:freecodecamp.org

Advance tip ๐Ÿคฉ you can use in the URL a top-level domain code ex. -> learn code site:eg

3. ๐Ÿ’ก after:[year]

4. before:[year]

5. [year]..[year] --> range

How to use it? -> [search term] after:[year] How to use it? -> [search term] before:[year] How to use it? -> [search term] [year]..[year]

Used to get information about your search term which came after or before or in a range of dates.

Ex. how to make a cake?๐Ÿ˜‹ after:2022

6. filetype:[type] ๐Ÿ’ฅ๐Ÿ’ฅ

How to use it? -> [search term] filetype:[type]

Used to get your search term according to a specific format.

Ex. how to write resume? filetype:pdf

7. intitle:[any] ๐Ÿฅน๐Ÿฅน

How to use it? -> [search term] intitle:[you can use any word to be included in the result or a year]

Used to get your search term that includes the mentioned word or year.

Ex. how to learn web development? intitle:[2022]

8. -[excluded term] --> minus sign ๐Ÿ™…๐Ÿปโ€โ™‚๏ธ

How to use it? -> [search term] -[excluded term]

Used to exclude terms from the search results.

Ex. how to create an element using javascript? -jquery

9. * --> wild card ๐Ÿค—

How to use it? -> [search term] * [search term]

Used to get everything about your search term

Ex. top * companies to work for in 2022

10. OR --> same as | (bitwise OR operator) ๐Ÿคท๐Ÿปโ€โ™‚๏ธ

How to use it? -> [search term one] OR [search term two]

Used if you have more options to search between them.

Ex. Vue | React | Angular

๐ŸŒธ Thanks for completing the post. Could you tell me if you know any additional tips?

ย