Basharath Profile picture
Feb 14 8 tweets 2 min read
💡Google tricks

A list of amazing Google tricks you do not know before 🧵
1. Search any image by exact size

→ imagesize:widthxheight

e.g., web development imagesize:1000x500
2. Search for hashtags from social media sites

#hashtag

e.g., #webdevelopment
3. Exclude certain keyword results

→ Use - (dash or hyphen)

e.g., counter using javascript -jquery
4. Reverse image search

→ To search for more details about an image, its origin, etc visit images.google.com and upload the image.

Google shows all the sites that use that particular image.

It's a handy way to dig for details.
5. Open every search result in a new tab

→ Instead of clicking links by pressing Ctrl, you can update your settings.

Go to Google's setting from homepage bottom right corner → Search settings → Where results open → check the box

That's it every link opens in a new tab.
There are so many such interesting google tricks put together in an article here by me.

Visit this article and find all the amazing Google tricks, including the funny ones 😀

devapt.com/google-tricks-…
We are at the end of the thread now.

Hey, I'm Basharath 👋

I share unique tips & hacks in web development and technology

If you like my tweets:
- Follow me (@wahVinci) ✅
- Retweet 🔁
- Connect ❤️

Thank you for reading until here.

• • •

Missing some Tweet in this thread? You can try to force a refresh
 

Keep Current with Basharath

Basharath Profile picture

Stay in touch and get notified when new unrolls are available from this author!

Read all threads

This Thread may be Removed Anytime!

PDF

Twitter may remove this content at anytime! Save it as PDF for later use!

Try unrolling a thread yourself!

how to unroll video
  1. Follow @ThreadReaderApp to mention us!

  2. From a Twitter thread mention us with a keyword "unroll"
@threadreaderapp unroll

Practice here first or read more on our help page!

More from @wahVinci

Mar 30
💡JavaScript functions

Different ways to create functions in JavaScript.

🧵↓
1. By function declaration

Using the function keyword we can declare a function as below.

function greeting() {
console.log('Hi');
}

You can invoke this function by calling it with closed parenthesis wherever you want → greeting()

2. By function expression

Using this method you can assign a variable with a function.

const greeting = function() {
console.log('Hi');
}

This is exactly similar to the previous one

In this case, the greeting function is not hoisted unlike the first.

Read 8 tweets
Feb 28
💡Tailwind tip

The trick is, the more you understand CSS the better you understand Tailwind.

I switched to Tailwind after trying out so many CSS frameworks.

Tailwind is the only framework that helps you to write the quickest custom CSS code, simply superb!

If you know CSS then you know Tailwind.

You can start playing with Tailwind CSS just in no time using its playground here ↓

play.tailwindcss.com
Read 4 tweets
Feb 27
💡HTML semantic tags

HTML semantic tags are the tags that clearly describe the meaning of the tag to both the browser and the developer.

🧵↓
There are various semantic tags in HTML that include

<article>
<aside>
<details>
<figcaption>
<figure>
<footer>
<header>
<main>
<mark>
<nav>
<section>
<summary>
<time>

The general way of using these semantic tags is illustrated here

Read 4 tweets
Feb 26
💡JavaScript sort()

In JS sorting is by default lexicographic & not numeric, regardless of the types of values in the array.

All values of the array will be treated as strings before sorting.

🧵↓
sort() method in JS actually modifies(mutates) the original array.

For example:

const nums = [30, 110, 40, 220];

nums.sort();

// nums: [110, 220, 30, 40]

For sorting arrays based on numeric values, it's always recommended to use a callback function.

Mutating the original array is not a good practice.

To avoid that use slice() or spread operator and then sort the array with a callback function

Read 5 tweets
Feb 25
💡HTML tags

HTML5 tags that you are not using yet.

🧵↓
1. <details>

<details> tag is used to create a simple accordion using just the HTML

2. <mark>

<mark> tag is used to highlight the text just using an HTML tag.

Read 8 tweets

Did Thread Reader help you today?

Support us! We are indie developers!


This site is made by just two indie developers on a laptop doing marketing, support and development! Read more about the story.

Become a Premium Member ($3/month or $30/year) and get exclusive features!

Become Premium

Don't want to be a Premium member but still want to support us?

Make a small donation by buying us coffee ($5) or help with server cost ($10)

Donate via Paypal

Or Donate anonymously using crypto!

Ethereum

0xfe58350B80634f60Fa6Dc149a72b4DFbc17D341E copy

Bitcoin

3ATGMxNzCUFzxpMCHL5sWSt4DVtS8UqXpi copy

Thank you for your support!

Follow Us on Twitter!

:(