Skip to main content

Ways to Search From Any Damn Location

 VPNs suck.

Right now we only want to make the website we are visiting "feel" that we are not where we are but where we tell it where we are.

To lie to your ISP, you'd still need a VPN, a paid one. There's one alternative to that too, but we'll talk of it later.

Several ways:

1. UULE Parameter

UULE is a handy search parameter made by Google Ads to help themselves easily see how their search results vary from location to location. It's pretty useful to us.
It looks like this: &uule=w+CAIQICIdTG9uZG9uLEVuZ2xhbmQsVW5pdGVkIEtpbmdkb
When you append this to a search URL like this https://www.google.com/search?q=[search-term]&oq=[search-term], you'll get search results for London, UK.
The UULE parameter consists of w+CAIQICI + [string length] + [base-64 encoded location]

2. Location Override in Dev tools

Open Dev tools in your Browser. Click in this order -> three dots -> sensors. You'll see something like this screenshot from Chrome:


Select any pre-set location or enter the coordinates of any corner in the world. To find the coordinates of any corner in the world, head to Google Maps. Copy the latitude and longitude from the URL(selected in screenshot below for reference)

Paste these two in the dev tools. It works. You might need to click on "use precise location" or "update location" and reload your results. You might want to perform the search in Incognito too.

I performed a search in Boring, Oregon, USA. I'm getting the results for Damascus, Oregon, USA, while I sit here here in India.


Advantage of this over the UULE: You can use this to make any website feel you are where you specify you are. UULE is only for Google search.
So you can prevent a website from redirecting you to a page meant for your location. 

3. One thing that beats them all

Comments

Popular posts from this blog

Installing Pyenv with ZSH

  This post is written assuming you are using OhMyZsh. Install Pyenv as per this:  https://realpython.com/intro-to-pyenv When I followed the instructions as they were in the guide above, I got the error: "command not found: pyenv". Zsh is not able to find pyenv even though it has been correctly installed. So we can tweak the steps a bit to adjust them to our Zsh shell. While installing, instead of the command   curl https://pyenv.run | bash , use the command   curl https://pyenv.run | zsh . This will install Pyenv. The guide asks you to add some lines of code in bashrc. We'll modify those lines and add them into our zshrc. Enter this command in terminal to be edit the zshrc:   sudo nano ~/.zshrc . Nano is a text editor in terminal that allows you to read and edit text files within the terminal. The command  sudo nano  will open the contents of zshrc inside the terminal just as any other text editor with GUI would. You can edit it the fil...

Installing Scrapy With Pyenv (Linux)

If you don't already know what Scrapy is, this post won't tell you. This post will tell you how to install Scrapy. Here's what this post contains: 1. Installing and working on Python's latest version on Linux 2. Installing Pyenv 3. Installing Scrapy Installing and working on Python's latest version on Linux Scrapy would require Python 3.6+. Default Python version on a linux distro is most likely Python 2.7. To work with Scrapy, you'd need to install a compatible version.  You can easily install python using the standard sudo apt install and commands of the likes, or you can download and build it, but it's not that simple: Running projects on a latest Python version on Linux is tough. Why? Because: 1. System-wide Python 2.7 The system-wide Python 2.7 is used by several of system's applications/programs. To keep them working as they do, the system Python needs to continue being the same, forever. So, you cannot replace it with any of the latest Python 3 ve...