DEV Community

Cover image for Use Google like a pro
Marko Denic
Marko Denic

Posted on • Updated on • Originally published at markodenic.com

Use Google like a pro

Googling is one of the most important skills for every developer.

Let me show you how to get better at Googling.

Let's start!

1 . Use quotes to force an exact-match search:

"what is javascript"

Exact Match

2 . AND operator will return only results related to both terms:

html AND css

AND operator

3 . You can use the OR operator to get the results related to one of the search terms

(javascript OR python) free course

OR opeator

4 . - operator will exclude results that contain a term or phrase:

javascript -css

Minus operator

5 . You can use the (*) wildcards as placeholders, which will be replaced by any word or phrase.

"how to start * in 6 months"

Wildcard operator

6 . Search inside a single website:

site:freecodecamp.org

Site operator

7 . You can also use a very useful feature that helps to find a specific file type.

filetype:pdf learn css

Search by filetype

8 . Search for a range of numbers:

ecmascript 2016..2018

Search by number range

If you liked this article, be sure to ❤️ it.

Happy coding! ❤️

Oldest comments (55)

Collapse
 
frulow profile image
Frulow

Very helpful, thanks.

Collapse
 
denicmarko profile image
Marko Denic

My pleasure!

Collapse
 
nguyenit67 profile image
Nguyen

Thank you so much!!

Collapse
 
denicmarko profile image
Marko Denic

Glad you like it. Enjoy!

Collapse
 
nilakandi profile image
Nilakandi

test

Collapse
 
thelalitpatil profile image
Lalit Patil

Thanks for this.

Collapse
 
denicmarko profile image
Marko Denic

My pleasure. Thanks for reading.

Collapse
 
stereobooster profile image
stereobooster
Collapse
 
bravemaster619 profile image
bravemaster619

thanks for the links

Collapse
 
gealber profile image
Gealber Morales

Really useful

Collapse
 
denicmarko profile image
Marko Denic

Thanks a lot!

Collapse
 
nghiadoan20 profile image
NghiaDoan20

Thanks for a useful post.

Collapse
 
denicmarko profile image
Marko Denic

No worries. It's a pleasure.

Collapse
 
stokry profile image
Stokry

Nice one!

Collapse
 
alnahian2003 profile image
Al Nahian

Wow, really impressive!

Thank you so much for your brilliant tips.

Collapse
 
originalix profile image
Leon

That's helpful. Thanks

Collapse
 
madflows profile image
Folarin Lawal

Nice

Collapse
 
ziizium profile image
Habdul Hazeez • Edited

In addition,

You can use | in place of OR. e.g JavaScript | HTML

Google search result for JavaScript and HTML

The ext is also a substitute for filetype

Google search result for JavaScript PDF documents

Limit search to a domain e.g .com, .edu, .org e.t.c

Google search results for performance of web applications

You can go really weird by combining operators and search terms that will perform a pinpoint search.

JavaScript|HTML|CSS filetype:pdf -"framework" site:edu

When I have the time, I'll write a more comprehensive post about Google searching.

Collapse
 
stereobooster profile image
stereobooster

| is OR operation

Collapse
 
ziizium profile image
Habdul Hazeez

Thanks for the correction. I updated my comment.

Thread Thread
 
danielbranco profile image
Daniel Branco

Will try to make a good Anki deck with all these tips, make it easy to everyone to study this.

Collapse
 
kievandres profile image
Kiev Andres

Impressive, thanks!

Collapse
 
danielltw profile image
Daniel Leong 🇸🇬

When you are setting up a new site, beware of any public accessible file that could be index by google.

In the past, that is how hackers are able to retrieve password files.
The google search is a double edge sword.

Collapse
 
martinhaeusler profile image
Martin Häusler

Keep in mind that the - for exclusion can really bite you when you look for linux commands including flags (eg. ls -a) because you'll end up with all the pages that do NOT contain the flag you were looking for... 😂 A personal facepalm moment.

Collapse
 
lukaszklis profile image
Łukasz Kliś

You can work around it and search for "ls -la". :D

Collapse
 
martinhaeusler profile image
Martin Häusler

That's true. I just didn't realize that when it happened the first time around. After things became clear, I was laughing like a maniac XD

Collapse
 
muzammilaalpha profile image
muzammilaalpha

Good post!

Some comments may only be visible to logged-in visitors. Sign in to view all comments.