-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathammar_shah_resume.rb
146 lines (135 loc) · 5.1 KB
/
ammar_shah_resume.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
module ChemicalX
refine Applicant do
def name
"Ammar Shah"
end
def title
"Senior Software Engineer"
end
def photo
"https://drive.google.com/file/d/1svqe2WllbX5Ae5TtbycydwEKVjFtJOuo"
end
def about
"The only language I speak is 'What, When, Why, Which, How, etc.' because curiosity originates questions, which leads to more curiosity, which leads to even more curiosity ... which has put me on an endless learning roller coaster that I'm loving to ride because, fortunately, I was born extremely curious."
end
def profiles
[
{ platform: "LinkedIn", url: "https://linkedin.com/in/ammarvellous" },
{ platform: "GitHub", url: "https://github.com/ammarshah" }
]
end
def contact
{
alg: "HS256",
typ: "JWT",
token: "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFtbWFyc2hhaDEyM0BnbWFpbC5jb20iLCJwaG9uZSI6Iis5Mi0zNDMtMjY0MDQyMSIsImFkZHJlc3MiOiJCLTE5LCBHdWxpc3Rhbi1lLUphdWhhciwgQmxvY2stMTMsIEthcmFjaGksIFBha2lzdGFuIn0.yDEJEFDnp3i_JPCtWQVgPH4iREgTPAQ5XNSIsa0Bq4k",
hint: "You don't need to write code to decode this JWT token."
}
end
def education
[
{
degree: "Bachelor of Computer Science",
university: "Federal Urdu University of Arts, Sciences & Technology",
location: "Karachi, Pakistan",
year: 2014,
cgpa: 3.07
}
]
end
def skills
{
"Languages & Frameworks" => [ "Ruby", "Ruby on Rails", "JavaScript", "Stimulus" ],
"Frontend & Design" => [ "HTML", "CSS", "Tailwind", "Turbo", "SVG" ],
"Databases" => [ "PostgreSQL", "MySQL", "MongoDB" ],
"Testing" => [ "RSpec", "Capybara", "Cucumber" ],
"Containerization" => [ "Docker" ],
"Cloud Providers" => [ "DigitalOcean", "Heroku", "Render" ],
"CI/CD" => [ "CircleCI", "Capistrano" ],
"Search Engines" => [ "MongoDB Atlas Search" ],
"Version Control" => [ "Git" ],
"Operating Systems" => [ "Ubuntu", "Windows" ],
"API Architectures" => [ "REST API" ],
"Data Formats" => [ "JSON", "XML" ],
"Storage Services" => [ "Amazon S3" ],
"Security" => [ "SSL Certificates" ],
"Background/Recurring Jobs" => [ "Sidekiq", "Delayed Job", "Sidekiq-Cron" ],
"Project Management" => [ "Jira", "Trello" ]
}
end
def experience
details_url = "https://www.linkedin.com/in/ammarvellous/details/experience"
[
{
title: "Senior Software Engineer",
company: "Metamorph Digital",
start_date: "May 2024",
end_date: "September 2024",
details: "Please find the details at #{details_url}"
},
{
title: "Senior Software Engineer",
company: "Cooperative Computing",
start_date: "October 2022",
end_date: "March 2023",
details: "Please find the details at #{details_url}"
},
{
title: "Senior Software Engineer",
company: "Folio3",
start_date: "January 2019",
end_date: "March 2021",
details: "Please find the details at #{details_url}"
},
{
title: "Software Engineer",
company: "Folio3",
start_date: "May 2018",
end_date: "December 2018",
details: "Please find the details at #{details_url}"
},
{
title: "Software Engineer",
company: "Aradiom Pvt. Ltd.",
start_date: "April 2017",
end_date: "April 2018",
details: "Please find the details at #{details_url}"
},
{
title: "Software Engineer",
company: "Attribe Solutions",
start_date: "October 2015",
end_date: "March 2017",
details: "Please find the details at #{details_url}"
},
{
title: "Junior Software Engineer",
company: "Attribe Solutions",
start_date: "September 2014",
end_date: "September 2015",
details: "Please find the details at #{details_url}"
}
]
end
def personal_projects
[
{
name: "Todoer",
description: "A simple to-do list app.",
demo_url: "https://todoer-9s1j.onrender.com",
source_code_url: "https://github.com/ammarshah/todoer"
},
{
name: "Game Hub",
description: "Lists games using RAWG API.",
demo_url: "https://gamehub-ammarvellous.vercel.app",
source_code_url: "https://github.com/ammarshah/game_hub"
}
]
end
end
end
# This is a safer version of the well-known Chemical X.
#
# You can read its full story in the right context here:
# https://github.com/ammarshah/resume/tree/master/chemical_x_story