Niharmahesh commited on
Commit
e1622a5
·
verified ·
1 Parent(s): 05e47b5

Create sample.json

Browse files
Files changed (1) hide show
  1. sample.json +146 -0
sample.json ADDED
@@ -0,0 +1,146 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "EMILY ZHANG CHEN",
3
+ "contact": {
4
+ "email": "emily.chen@email.com",
5
+ "phone": "415-555-0123",
6
+ "location": "Seattle, WA",
7
+ "links": {
8
+ "GitHub": "github.com/emilychen",
9
+ "LinkedIn": "linkedin.com/in/emilychen",
10
+ "Medium": "medium.com/@emilychen",
11
+ "Portfolio": "emilychen.dev"
12
+ }
13
+ },
14
+ "education": [
15
+ {
16
+ "institution": "University of Washington, Seattle, USA",
17
+ "degree": "Master of Science, Computer Science",
18
+ "duration": "Sep 2022 – Jun 2024",
19
+ "relevant_coursework": [
20
+ "Distributed Systems",
21
+ "Cloud Computing",
22
+ "Advanced Algorithms",
23
+ "Natural Language Processing",
24
+ "Computer Vision",
25
+ "Software Engineering"
26
+ ]
27
+ },
28
+ {
29
+ "institution": "University of California Berkeley, USA",
30
+ "degree": "Bachelor of Science, Computer Science and Mathematics",
31
+ "duration": "Aug 2018 – May 2022"
32
+ }
33
+ ],
34
+ "technical_skills": {
35
+ "Programming Languages": ["Java", "Go", "JavaScript", "Python", "C++"],
36
+ "Web Development": [
37
+ "React",
38
+ "Node.js",
39
+ "Vue.js",
40
+ "GraphQL",
41
+ "REST APIs",
42
+ "TypeScript"
43
+ ],
44
+ "DevOps": [
45
+ "Kubernetes",
46
+ "Jenkins",
47
+ "Terraform",
48
+ "CI/CD Pipelines",
49
+ "Infrastructure as Code"
50
+ ],
51
+ "Cloud Computing": [
52
+ "Azure (Certified)",
53
+ "AWS",
54
+ "Microservices Architecture",
55
+ "Service Mesh",
56
+ "Containerization"
57
+ ],
58
+ "Software Engineering": [
59
+ "System Design",
60
+ "Design Patterns",
61
+ "Test-Driven Development",
62
+ "Agile Methodologies"
63
+ ],
64
+ "Tools": [
65
+ "Git",
66
+ "Docker",
67
+ "Jira",
68
+ "Confluence",
69
+ "VS Code",
70
+ "IntelliJ"
71
+ ],
72
+ "Databases": ["PostgreSQL", "Redis", "Cassandra", "Elasticsearch"]
73
+ },
74
+ "professional_experience": [
75
+ {
76
+ "company": "Microsoft, Seattle",
77
+ "role": "Software Engineering Intern",
78
+ "duration": "May 2023 – Aug 2023",
79
+ "responsibilities": [
80
+ "Developed scalable microservices for Azure's container orchestration platform, improving deployment efficiency by 35%",
81
+ "Implemented automated testing framework reducing regression testing time by 60% across the platform"
82
+ ]
83
+ },
84
+ {
85
+ "company": "Intel Corporation, Santa Clara",
86
+ "role": "Software Developer",
87
+ "duration": "Jun 2022 – Apr 2023",
88
+ "responsibilities": [
89
+ "Led development of internal developer tools used by 200+ engineers, reducing build times by 45%",
90
+ "Architected and implemented real-time monitoring system for semiconductor manufacturing processes",
91
+ "Mentored 5 junior developers and conducted technical interviews for new hires"
92
+ ]
93
+ }
94
+ ],
95
+ "projects": [
96
+ {
97
+ "name": "Distributed Game Engine",
98
+ "duration": "Oct 2023 - Present",
99
+ "description": [
100
+ "Built high-performance distributed game engine supporting 100,000 concurrent players using Go and WebSocket",
101
+ "Implemented custom networking protocol reducing latency by 40% compared to standard TCP/IP implementation"
102
+ ]
103
+ },
104
+ {
105
+ "name": "Secure File Sharing System",
106
+ "duration": "Jul 2023 - Sep 2023",
107
+ "description": [
108
+ "Developed end-to-end encrypted file sharing system using React and Node.js with zero-knowledge architecture",
109
+ "Implemented custom cryptographic protocols ensuring GDPR compliance and military-grade security"
110
+ ]
111
+ },
112
+ {
113
+ "name": "AI-Powered Code Review Assistant",
114
+ "duration": "Mar 2023 - Jun 2023",
115
+ "description": [
116
+ "Created machine learning model to automate code reviews using transformer architecture",
117
+ "Achieved 85% accuracy in detecting common code smells and security vulnerabilities"
118
+ ]
119
+ },
120
+ {
121
+ "name": "Distributed Database System",
122
+ "duration": "Jan 2023 - Mar 2023",
123
+ "description": [
124
+ "Implemented distributed database supporting ACID transactions and eventual consistency",
125
+ "Developed custom consensus protocol handling network partitions and node failures"
126
+ ]
127
+ }
128
+ ],
129
+ "certifications": [
130
+ {
131
+ "name": "Microsoft Azure Solutions Architect Expert",
132
+ "details": "Comprehensive certification for designing cloud solutions",
133
+ "date": "Dec 2023"
134
+ },
135
+ {
136
+ "name": "Certified Kubernetes Administrator (CKA)",
137
+ "details": "Advanced certification in container orchestration",
138
+ "date": "Aug 2023"
139
+ }
140
+ ],
141
+ "achievements": [
142
+ "First place in University of Washington Hackathon 2023",
143
+ "Published paper on distributed systems at SOSP 2023",
144
+ "Open source contributor to Kubernetes project with 5+ accepted PRs"
145
+ ]
146
+ }