Jay

@joblessjay

A boy with an interest in cybersecurity and coding.

A boy with an interest in cybersecurity and coding.

Skill iconPython
Skill iconC

Hamirpur, India

#include <stdio.h> #include <stdlib.h> void print_header() { printf("=====================================\n"); printf(" JAY NAGAR\n"); printf(" B.Tech + M.Tech CSE\n"); printf(" National Institute of Technology, Hamirpur\n"); printf(" Kota, Rajasthan\n"); printf(" 📧 Email: [[email protected] ]\n"); printf("=====================================\n"); } void print_objective() { printf("\nObjective:\n"); printf("Passionate and driven Computer Science student with a strong interest in Cybersecurity and competitive programming.\n"); printf("Eager to participate in hackathons organized by Devfolio, DevRelSquad, and MLH to apply problem-solving skills,\n"); printf("develop innovative solutions, and collaborate with like-minded individuals.\n"); } void print_education() { printf("\nEducation:\n"); printf("🎓 National Institute of Technology, Hamirpur\n"); printf("B.Tech + M.Tech in Computer Science Engineering | [2029]\n"); } void print_skills() { printf("\nTechnical Skills:\n"); printf("✅ Languages: C, Python\n"); printf("✅ Tools: Linux, Git, Bash, Nmap\n"); printf("✅ Soft Skills: Time Management, Problem-Solving, Team Collaboration\n"); } void print_projects() { printf("\nProjects & Hackathon Experience:\n"); printf("1. WiFi Hacking Script (Kali Linux):\n"); printf(" Developed a Python script to automate WiFi network penetration testing.\n"); printf(" Utilized aircrack-ng and other Linux tools for packet capture and decryption.\n"); printf(" Implemented logging and report generation for analysis.\n"); printf("2. Network Scanner using Nmap:\n"); printf(" Built a network scanning script using Python and Nmap.\n"); printf(" Identified open ports, running services, and security vulnerabilities.\n"); printf(" Automated scanning and reporting functionalities for ease of use.\n"); } void print_workshops() { printf("\nWorkshops & Participation:\n"); printf("🎯 Attended and actively participated in workshops conducted by SPEC, CSEC, and Robotics clubs at NIT Hamirpur.\n"); } void print_links() { printf("\nRelevant Links:\n"); printf("🔗 GitHub: [https://github.com/SnowXWhite]\n"); printf("🔗 LinkedIn: [https://www.linkedin.com/in/jayknagar/]\n"); printf("🔗 Devfolio/MLH Profile: [joblessjay]\n"); } int main() { system("clear"); // Clear screen for neatness print_header(); print_objective(); print_education(); print_skills(); print_projects(); print_workshops(); print_links(); return 0; }