CODING HACKING DEVELOPERS COLLEGE
6.14K subscribers
151 photos
8 videos
33 files
78 links
Disclaimer: This Channel is for educational purpose only , no one takes responsibility if you do anything wrong
๐™ƒ๐™–๐™˜๐™  ๐™๐™๐™š ๐™๐™ž๐™˜๐™๐Ÿ’ฒ= ๐™๐™š๐™š๐™™ ๐™๐™๐™š ๐™‹๐™ค๐™ค๐™ง๐Ÿ™Œ


FOUNDER:- @TeamVoiceContactBot
Download Telegram
๐ŸŸข๐€๐ซ๐ญ๐ข๐œ๐ฅ๐ž38 = CyberJacking and it's types

Cyber hijacking, or computer hijacking, is a type of network security attack in which the attacker takes control of computer systems, software programs and/or network communications.


๐Ÿ”ตTิ‹ฮฑษณฦ™ส‚ Fฯƒษพ Rาฝฮฑิƒฮนษณษ , Jฯƒฮนษณ
@team_voice_011 ส„ึ…ส€ สึ…ส€ษ›๐Ÿ”ต
๐Ÿ‘3โค1
.

https://t.me/addlist/6Iwh5-CXZ59kNDQ1
https://t.me/addlist/6Iwh5-CXZ59kNDQ1
UPSC ALL BATCHES LINK ๐Ÿ”—๐Ÿ‘†๐Ÿ‘†๐Ÿ‘†๐Ÿ‘†


Link valid only 1hr only JOiN FAST โ™ฅ๏ธ
๐Ÿ‘2โค1๐Ÿ‘1๐Ÿ˜1
๐Ÿ–ฅ 10 Advanced Python Scripts For Everyday Programming

1. SpeedTest with Python
# pip install pyspeedtest
# pip install speedtest
# pip install speedtest-cli

#method 1
import speedtest

speedTest = speedtest.Speedtest()
print(speedTest.get_best_server())

#Check download speed
print(speedTest.download())

#Check upload speed
print(speedTest.upload())

# Method 2

import pyspeedtest
st = pyspeedtest.SpeedTest()
st.ping()
st.download()
st.upload()

2. Search on Google

# pip install google

from googlesearch import search

query = "Medium.com"

for url in search(query):
print(url)


3. Make Web Bot
# pip install selenium

import time
from selenium import webdriver
from selenium.webdriver.common.keys import Keys

bot = webdriver.Chrome("chromedriver.exe")
bot.get('[http://www.google.com'](http://www.google.com'))

search = bot.find_element_by_name('q')
search.send_keys("@codedev101")
search.send_keys(Keys.RETURN)
time.sleep(5)
bot.quit()


4. Fetch Song Lyrics
# pip install lyricsgenius

import lyricsgenius

api_key = "xxxxxxxxxxxxxxxxxxxxx"

genius = lyricsgenius.Genius(api_key)
artist = genius.search_artist("Pop Smoke", max_songs=5,sort="title")
song = artist.song("100k On a Coupe")

print(song.lyrics)


5. Get Exif Data of Photos
# Get Exif of Photo

# Method 1
# pip install pillow
import PIL.Image
import PIL.ExifTags

img = PIL.Image.open("Img.jpg")
exif_data =
{
PIL.ExifTags.TAGS[i]: j
for i, j in img._getexif().items()
if i in PIL.ExifTags.TAGS
}
print(exif_data)


# Method 2
# pip install ExifRead
import exifread

filename = open(path_name, 'rb')

tags = exifread.process_file(filename)
print(tags)


6. OCR Text from Image
# pip install pytesseract

import pytesseract
from PIL import Image

pytesseract.pytesseract.tesseract_cmd = r'C:\Program Files\Tesseract-OCR\tesseract.exe'

t=Image.open("img.png")
text = pytesseract.image_to_string(t, config='')

print(text)


7. Convert Photo into Cartonize

# pip install opencv-python

import cv2

img = cv2.imread('img.jpg')
grayimg = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
grayimg = cv2.medianBlur(grayimg, 5)

edges = cv2.Laplacian(grayimg , cv2.CV_8U, ksize=5)
r,mask =cv2.threshold(edges,100,255,cv2.THRESH_BINARY_INV)

img2 = cv2.bitwise_and(img, img, mask=mask)
img2 = cv2.medianBlur(img2, 5)

cv2.imwrite("cartooned.jpg", mask)


8. Empty Recycle Bin
# pip install winshell

import winshell
try:
winshell.recycle_bin().empty(confirm=False, /show_progress=False, sound=True)
print("Recycle bin is emptied Now")
except:
print("Recycle bin already empty")


9. Python Image Enhancement
# pip install pillow

from PIL import Image,ImageFilter
from PIL import ImageEnhance

im = Image.open('img.jpg')

# Choose your filter
# add Hastag at start if you don't want to any filter below

en = ImageEnhance.Color(im)
en = ImageEnhance.Contrast(im)
en = ImageEnhance.Brightness(im)
en = ImageEnhance.Sharpness(im)

# result
en.enhance(1.5).show("enhanced")


10. Get Window Version
# Window Version

import wmi
data = wmi.WMI()
for os_name in data.Win32_OperatingSystem():
print(os_name.Caption) # Microsoft Windows 11 Home




โค๏ธ If You Want More Content Like This Then Join This Channel ๐Ÿ‘‡
@team_voice_011

Give Reactions ๐Ÿ˜โค๏ธ
๐Ÿ‘2๐Ÿคฉ2โค1
๐Ÿ” Top 5 Code Editors ๐Ÿ‘จโ€๐Ÿ’ป For Beginners & Advanced Coders ๐Ÿ‘
This media is not supported in your browser
VIEW IN TELEGRAM
Input Types Cheat Sheet ๐Ÿ‘จโ€๐Ÿ’ป
๐Ÿ‘4๐Ÿค”2๐Ÿ‘1
% of the population that speaks fluent English:

๐Ÿ‡จ๐Ÿ‡ณ China - 0.5%
๐Ÿ‡ง๐Ÿ‡ท Brazil - 5%
๐Ÿ‡ท๐Ÿ‡บ Russia - 5%
๐Ÿ‡ฆ๐Ÿ‡ท Argentina - 6.52%
๐Ÿ‡ฎ๐Ÿ‡ณ India - 10.5%
๐Ÿ‡ง๐Ÿ‡ฉ Bangladesh - 12%
๐Ÿ‡ฒ๐Ÿ‡ฝ Mexico - 12.9%
๐Ÿ‡น๐Ÿ‡ท Turkey - 17%
๐Ÿ‡ช๐Ÿ‡ธ Spain - 22%
๐Ÿ‡ฟ๐Ÿ‡ฆ South Africa - 31%
๐Ÿ‡ฎ๐Ÿ‡น Italy - 34%
๐Ÿ‡ต๐Ÿ‡ฐ Pakistan - 49~58%
๐Ÿ‡ฌ๐Ÿ‡ท Greece - 51%
๐Ÿ‡ณ๐Ÿ‡ฌ Nigeria - 53~60%
๐Ÿ‡ฉ๐Ÿ‡ช Germany - 56%
๐Ÿ‡ซ๐Ÿ‡ท France - 57%
๐Ÿ‡ต๐Ÿ‡ญ Philippines - 58%
๐Ÿ‡ง๐Ÿ‡ช Belgium - 60%
๐Ÿ‡ฆ๐Ÿ‡น Austria - 73%
๐Ÿ‡ซ๐Ÿ‡ฎ Finland - 75%
๐Ÿ‡จ๐Ÿ‡ฆ Canada - 83%
๐Ÿ‡ฉ๐Ÿ‡ฐ Denmark - 86%
๐Ÿ‡ธ๐Ÿ‡ช Sweden - 89%
๐Ÿ‡ณ๐Ÿ‡ด Norway - 90%
๐Ÿ‡ฆ๐Ÿ‡บ Australia - 92.8%
๐Ÿ‡บ๐Ÿ‡ธ USA - 95.5%
๐Ÿ‡ธ๐Ÿ‡ฌ Singapore - 96.43%
๐Ÿ‡ณ๐Ÿ‡ฟ New Zealand - 97.82%
๐Ÿ‡ฌ๐Ÿ‡ง UK - 98.3%
๐Ÿ‡ฎ๐Ÿ‡ช Ireland - 98.37%
๐Ÿ‡ง๐Ÿ‡ง Barbados - 100%
๐Ÿ‡ฌ๐Ÿ‡ฎ Gibraltar - 100%

According to Crystal, Eurobarometer, US Census Bureau, Census, Mikrozensus, British council and EF etc.
๐Ÿ‘10
This media is not supported in your browser
VIEW IN TELEGRAM
๐Ÿ‘1