🚀 Free Courses & Certifications from Google, AWS & Microsoft! 🎓
Just found some amazing 100% FREE resources from top tech giants — perfect for boosting your resume and skills 💼
👇 Grab them here:
🔹 Google Certificates – https://grow.google/certificates/
🔹 Google Cloud – https://cloud.google.com/learn
🔹 Skillshop (Google Ads, etc.) – https://skillshop.withgoogle.com/
🔹 AWS Skill Builder – https://aws.amazon.com/training/digital/
🔹 AWS Educate – https://aws.amazon.com/education/awseducate/
🔹 Microsoft Learn – https://learn.microsoft.com/en-us/training/
🔹 Free Microsoft Exams (Students) – https://aka.ms/student-certification
Enroll now and thank me later 😉🔥
Just found some amazing 100% FREE resources from top tech giants — perfect for boosting your resume and skills 💼
👇 Grab them here:
🔹 Google Certificates – https://grow.google/certificates/
🔹 Google Cloud – https://cloud.google.com/learn
🔹 Skillshop (Google Ads, etc.) – https://skillshop.withgoogle.com/
🔹 AWS Skill Builder – https://aws.amazon.com/training/digital/
🔹 AWS Educate – https://aws.amazon.com/education/awseducate/
🔹 Microsoft Learn – https://learn.microsoft.com/en-us/training/
🔹 Free Microsoft Exams (Students) – https://aka.ms/student-certification
Enroll now and thank me later 😉🔥
❤79🔥3👍2🙏1
CODE LIKE A PRO FOR FREE
HTML → https://www.w3schools.com
CSS → https://www.codecademy.com
JavaScript → https://javascript.info
React → https://react.dev
Python → https://learnpython.org
Java → https://www.sololearn.com
PHP → https://www.php.net
C → https://www.learn-c.org
C++ → https://www.learncpp.com
AWS → https://skillbuilder.aws
Git → https://learngitbranching.js.org
HTML → https://www.w3schools.com
CSS → https://www.codecademy.com
JavaScript → https://javascript.info
React → https://react.dev
Python → https://learnpython.org
Java → https://www.sololearn.com
PHP → https://www.php.net
C → https://www.learn-c.org
C++ → https://www.learncpp.com
AWS → https://skillbuilder.aws
Git → https://learngitbranching.js.org
❤44🥰5👏3🔥2
# Get WiFi Passwords using Python 💻
Code 👇👇👇👇👇👇👇👇
import subprocess
import re
command_output = subprocess.run(["netsh", "wlan", "show", "profiles"], capture_output = True).stdout.decode()
profile_names = (re.findall("All User Profile : (.*)\r", command_output))
wifi_list = list()
if len(profile_names) !=0:
for name in profile_names:
wifi_profile = dict()
profile_info = subprocess.run(["netsh", "wlan", "show", "profile", name], capture_output = True).stdout.decode()
if re.search("Security Key : Absent", profile_info):
continue
else:
wifi_profile["ssid"] = name
profile_info_pass = subprocess.run(["netsh", "wlan", "show", "profile", name, "key=clear"], capture_output = True).stdout.decode()
password = re.search("Key Content : (.*)\r", profile_info_pass)
if password == None:
wifi_profile["password"] = None
else:
wifi_profile["password"] = password[1]
wifi_list.append(wifi_profile)
for x in range(len(wifi_list)):
print(wifi_list[x])
Code 👇👇👇👇👇👇👇👇
import subprocess
import re
command_output = subprocess.run(["netsh", "wlan", "show", "profiles"], capture_output = True).stdout.decode()
profile_names = (re.findall("All User Profile : (.*)\r", command_output))
wifi_list = list()
if len(profile_names) !=0:
for name in profile_names:
wifi_profile = dict()
profile_info = subprocess.run(["netsh", "wlan", "show", "profile", name], capture_output = True).stdout.decode()
if re.search("Security Key : Absent", profile_info):
continue
else:
wifi_profile["ssid"] = name
profile_info_pass = subprocess.run(["netsh", "wlan", "show", "profile", name, "key=clear"], capture_output = True).stdout.decode()
password = re.search("Key Content : (.*)\r", profile_info_pass)
if password == None:
wifi_profile["password"] = None
else:
wifi_profile["password"] = password[1]
wifi_list.append(wifi_profile)
for x in range(len(wifi_list)):
print(wifi_list[x])
❤118👍13🥰5😍5
Python Handwritten Notes PDF Guide (1).pdf
32.3 MB
For more content like this react ♥️ on the Post ✔️
❤145🔥7⚡1