✅ General Job & Internship Platforms:
LinkedIn Jobs → https://www.linkedin.com/jobs/
Internshala → https://internshala.com/
Naukri.com → https://www.naukri.com/
Indeed → https://www.indeed.com/
Glassdoor → https://www.glassdoor.com/
AngelList (Wellfound) → https://wellfound.com/
SimplyHired → https://www.simplyhired.com/
Monster → https://www.monster.com/
✅ Tech-Specific Platforms:
HackerRank → https://www.hackerrank.com/
LeetCode → https://leetcode.com/
GitHub Jobs → https://github.com/ (Job board retired, but useful for showcasing projects)
Wellfound (formerly AngelList) → https://wellfound.com/
✅ University-Focused Platforms:
Handshake → https://joinhandshake.com/
Chegg Internships → https://www.chegg.com/internships
✅ Freelance & Remote Work Platforms:
Upwork → https://www.upwork.com/
Fiverr → https://www.fiverr.com/
We Work Remotely → https://weworkremotely.com/
📚 Learning + Job Opportunities:
Kaggle → https://www.kaggle.com/
Codeforces → https://codeforces.com/
Turing → https://www.turing.com/
🏢 Company Career Pages (Examples):
Google Careers → https://careers.google.com/
Microsoft Careers → https://careers.microsoft.com/
Amazon Jobs → https://www.amazon.jobs/
Infosys Careers → https://www.infosys.com/careers/
Don't forget to React ❤️ to this msg if you want more content Like this 👍
LinkedIn Jobs → https://www.linkedin.com/jobs/
Internshala → https://internshala.com/
Naukri.com → https://www.naukri.com/
Indeed → https://www.indeed.com/
Glassdoor → https://www.glassdoor.com/
AngelList (Wellfound) → https://wellfound.com/
SimplyHired → https://www.simplyhired.com/
Monster → https://www.monster.com/
✅ Tech-Specific Platforms:
HackerRank → https://www.hackerrank.com/
LeetCode → https://leetcode.com/
GitHub Jobs → https://github.com/ (Job board retired, but useful for showcasing projects)
Wellfound (formerly AngelList) → https://wellfound.com/
✅ University-Focused Platforms:
Handshake → https://joinhandshake.com/
Chegg Internships → https://www.chegg.com/internships
✅ Freelance & Remote Work Platforms:
Upwork → https://www.upwork.com/
Fiverr → https://www.fiverr.com/
We Work Remotely → https://weworkremotely.com/
📚 Learning + Job Opportunities:
Kaggle → https://www.kaggle.com/
Codeforces → https://codeforces.com/
Turing → https://www.turing.com/
🏢 Company Career Pages (Examples):
Google Careers → https://careers.google.com/
Microsoft Careers → https://careers.microsoft.com/
Amazon Jobs → https://www.amazon.jobs/
Infosys Careers → https://www.infosys.com/careers/
Don't forget to React ❤️ to this msg if you want more content Like this 👍
❤91👍64👌6🔥5🙏3👏2🥰1🤔1
🚀 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 😉🔥
❤57🔥4
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
❤19🥰5🔥1👏1
# 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])
❤51😍4🥰2
Python Handwritten Notes PDF Guide (1).pdf
32.3 MB
For more content like this react ♥️ on the Post ✔️
❤76🔥3