This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import requests | |
| from bs4 import BeautifulSoup | |
| import matplotlib.pyplot as plt | |
| import math | |
| import re | |
| label_lst = ["The Quality of Life Index (higher is better)", "Purchasing Power Index (higher is better)", "Pollution Index (lower is better)", "House Price to Income Ratio (lower is better)", "Cost of Living Index (lower is better)", "Safety Index (higher is better)", "Health Care Index (higher is better)", "Traffic Commute Time Index (lower is better)", "Climate Index (higher is better)"] | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| adb shell pm uninstall -k --user 0 com.linkedin.android | |
| adb shell pm uninstall -k --user 0 com.miui.weather2 | |
| adb shell pm uninstall -k --user 0 com.gallery.player | |
| adb shell pm uninstall -k --user 0 com.miui.gallery | |
| adb shell pm uninstall -k --user 0 com.xiaomi.payment | |
| adb shell pm uninstall -k --user 0 com.mipay.wallet.in | |
| adb shell pm uninstall -k --user 0 com.micredit.in | |
| adb shell pm uninstall -k --user 0 com.funnypuri.client | |
| adb shell pm uninstall -k --user 0 com.miui.player | |
| adb shell pm uninstall -k --user 0 com.android.calendar |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <ESP8266WiFi.h> | |
| // enter wifi credentials | |
| const char* ssid = "wifiname"; | |
| const char* password = "letthisbepassword"; | |
| /* arduino to ESP8266 pin mappings | |
| D0 - > 16 | |
| D1 - > 5 | |
| D3 - > 4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import time | |
| import cv2 | |
| import mss | |
| import numpy as np | |
| from os import system | |
| object_mon = {"top": 335, "left": 189, "width": 200, "height": 80} | |
| with mss.mss() as sct: | |
| while True: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import plotly.express as px; | |
| import plotly.io as pio | |
| import pandas as pd; | |
| from geopy.geocoders import Nominatim; | |
| geolocator = Nominatim(user_agent="MyApp") | |
| # update this list with the list of places you have visted | |
| destination_lst = ["Bangalore", "Chennai", "Hyderabad", "Mumbai", "Delhi", "Kolkata"] |