Computer Science And Engineering
1.55K subscribers
38 photos
2 videos
67 files
261 links
Welcome to India's Most Productive Tech Community.Your perks of joining this channel are:
🎭 Hacking ,Programming &Job Stuff(only for Educational purpose)
πŸ‘¨β€πŸ’» Learning Roadmaps
Subscribe To insta ChannelπŸ‘‡
Www.instagram.com/technical_stars
Download Telegram
Company Name : Zeotap
Role : SDE Internship
Batch : 2024 pass-outs

Link : https://jobs.lever.co/zeotap/e1732d10-509c-4008-b5cf-17f9876da5dd/
πŸ‘1
❗️Aditya Birla Hiring Trainee
🧰Degree: Any Graduation
πŸŽ–Batch: 2018/ 2019/ 2020/ 2021/ 2022/ 2023/ Any
πŸ’°CTC: Upto 10 LPA (Expected)
πŸ“ Apply Link: https://www.fresherstown.com/aditya-birla-off-campus-drive/
Limited Openings only πŸ“
Great Stipend Internships for 2022, 2023, 2024, 2025 and 2026 Batch

1. OrKid Hiring Mobile App Developer Interns
Batch: 2021, 2022, 2023, 2024, 2025, 2026 passouts
Stipend: β‚Ή 20K - 40K per month       
Location: Remote- Work From Home
Duration: 1 Month

Apply Link: https://rebrand.ly/0bd512

2. Newton School Hiring Technical Content Engineer Interns
Batch: 2023 passouts
Stipend: β‚Ή 20K - 30K per month       
Location: Bangalore, India
Duration: 3 Months

Apply Link: https://rebrand.ly/578819

3. CluCloud Hiring Machine Learning Engineer Interns
Batch: 2023 passouts
Stipend: β‚Ή 25K - 30K per month       
Location: Flexible - Hyderabad, India
Duration: 2 Months

Apply Link: https://rebrand.ly/59f075

4. TreQ Hiring UI/UX Designer Interns
Batch: 2021, 2022, 2023, 2024, 2025, 2026 passouts
Stipend: β‚Ή 20K - 25K per month       
Location: Remote- Work From Home
Duration: 2 Months

Apply Link: https://rebrand.ly/fjyj7ca

5. Mithi Software Hiring Fullstack Developer Interns
Batch: 2022 and 2023 passouts
Stipend: β‚Ή 18K - 20K per month       
Location: Pune, India
Duration: 6 Months

Apply Link: https://rebrand.ly/5f6a90

Join our Telegram & Whatsapp Groups for Latest Internships and Updates
https://linktr.ee/jobs_and_internships_updates
Share with your Friends too

6. GlazeGPT Hiring UI/UX Designer Interns
Batch: Everyone is eligible
Stipend: β‚Ή 12K - 18K per month       
Location: Remote- Work From Home
Duration: 1 Months

Apply Link: https://rebrand.ly/dabb27

7. VOLOPAY Hiring Interns Offering PPO
Stipend: 30K per month
Location: Bangalore, India
Batch Eligible: 2022, 2023, 2024, 2025 and 2026 passouts

Apply Links:
Frontend Developer: https://bit.ly/3qlc6cP

Backend Developer: https://bit.ly/43rOQZu

8. AltWorld Hiring Game Designer
Batch: Everyone is eligible
Stipend: β‚Ή 20K per month       
Location: Bangalore

Apply Link: https://rebrand.ly/af870b

9. Crio Hiring Project Engineer - Offering PPO
Batch: 2022 and 2023 passouts
Stipend: β‚Ή 25K per month       
Location: Bangalore

Apply Link: https://rebrand.ly/5k44bs5

10. AltWorld Hiring Data Analyst Interns
Batch: 2022, 2023 and 2024 passouts
Stipend: β‚Ή 20K per month       
Location: Bangalore

Apply Link: https://rebrand.ly/348f09

11. iSource Hiring Front-end Developer
Batch: 2022, 2023 and 2024 passouts
Stipend: β‚Ή 15K per month       
Location: Delhi

Apply Link: https://rebrand.ly/eeae70
πŸ‘8🀩1
GeeksforGeeks has come up with one of the biggest hiring events of the year.

It's the biggest hiring event of the year, filled to the brim with amazing job opportunities exclusively for you!

Introducing the Mega Jobathon by geeksforgeeks, where numerous companies are eagerly searching for talented


or intern job opportunities.

Mark your calendars for the Mega Job-a-thon happening on July 5, 2023, from 8 PM to 10:30 PM. This is a 2.5 hour long hiring challenge designed specifically for freshers like you, who are keen on landing a job at one or more of these companies.

Companies hiring:

1. Key Software Inc

2. SkyAch

3. CEDCOSS Technologies Private Limited 4. Saturo Technologies Pvt. Ltd

5. Instient Pvt. Ltd

6. Brisa Technologies Private Ltd

7. Plugin Coders 8. Mtalkz

9. Alphaware

10. Formi

11. Allengers

12. V2STech Solutions Pvt. Ltd

Link:-https://practice.geeksforgeeks.org/contest/megajob-a-thon-hiring-challenge-freshers
πŸ‘10❀2🀩1
Channel name was changed to Β«Technical starsΒ»
Source Code of Getting WiFi Passwords πŸ‘‡πŸ‘‡-


# importing subprocess
import subprocess
 
# getting meta data
meta_data = subprocess.check_output(['netsh', 'wlan', 'show', 'profiles'])
 
# decoding meta data
data = meta_data.decode('utf-8', errors ="backslashreplace")
 
# splitting data by line by line
data = data.split('\n')
 
# creating a list of profiles
profiles = []
 
# traverse the data
for i in data:
     
    # find "All User Profile" in each item
    if "All User Profile" in i :
         
        # if found
        # split the item
        i = i.split(":")
         
        # item at index 1 will be the wifi name
        i = i[1]
         
        # formatting the name
        # first and last character is use less
        i = i[1:-1]
         
        # appending the wifi name in the list
        profiles.append(i)
         
 
# printing heading       
print("{:<30}| {:<}".format("Wi-Fi Name", "Password"))
print("----------------------------------------------")
 
# traversing the profiles       
for i in profiles:
     
    # try catch block begins
    # try block
    try:
        # getting meta data with password using wifi name
        results = subprocess.check_output(['netsh', 'wlan', 'show', 'profile', i, 'key = clear'])
         
        # decoding and splitting data line by line
        results = results.decode('utf-8', errors ="backslashreplace")
        results = results.split('\n')
         
        # finding password from the result list
        results = [b.split(":")[1][1:-1] for b in results if "Key Content" in b]
         
        # if there is password it will print the pass word
        try:
            print("{:<30}| {:<}".format(i, results[0]))
         
        # else it will print blank in front of pass word
        except IndexError:
            print("{:<30}| {:<}".format(i, ""))
             
     
             
    # called when this process get failed
    except subprocess.CalledProcessError:
        print("Encoding Error Occurred")
πŸ‘9πŸ”₯3❀1
The University Grants Commission (UGC) has issued a warning, cautioning students against pursuing Master of Philosophy (MPhil) programmes from universities.

This alert follows the cancellation of the MPhil course by the UGC, despite which some universities persist in offering it.

The UGC had earlier declared the MPhil degree illegitimate, instructing higher educational institutions not to offer MPhil programmes.

Furthermore, universities were directed to halt admissions to the MPhil programme for the academic year 2023-24.

In an official notification, the UGC stated, "It has come to the notice of the UGC that a few universities are inviting fresh applications for MPhil (Master of Philosophy) programme. In this regard, it is to bring to the notice that the MPhil degree is not a recognised degree."
The University Grants Commission (UGC) has issued a warning, cautioning students against pursuing Master of Philosophy (MPhil) programmes from universities.

This alert follows the cancellation of the MPhil course by the UGC, despite which some universities persist in offering it.

The UGC had earlier declared the MPhil degree illegitimate, instructing higher educational institutions not to offer MPhil programmes.

Furthermore, universities were directed to halt admissions to the MPhil programme for the academic year 2023-24.

In an official notification, the UGC stated, "It has come to the notice of the UGC that a few universities are inviting fresh applications for MPhil (Master of Philosophy) programme. In this regard, it is to bring to the notice that the MPhil degree is not a recognised degree."
πŸ‘1
🚨 GitHub fixes high-severity bug (CVE-2024-0200) that could've exposed your credentials in production containers.

Your keys have been rotated β€” Import new ones for commit signing, Actions, Codespaces, or Dependabot.

Details here: https://thehackernews.com/2024/01/github-rotates-keys-after-high-severity.html