Skip to content

Commit

Permalink
update experience
Browse files Browse the repository at this point in the history
  • Loading branch information
qasim9872 committed Dec 20, 2023
1 parent eaec526 commit 124b0c7
Show file tree
Hide file tree
Showing 5 changed files with 2,363 additions and 59 deletions.
6 changes: 6 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"recommendations": [
"dbaeumer.vscode-eslint",
"rvest.vs-code-prettier-eslint"
]
}
10 changes: 6 additions & 4 deletions src/constants/site/experience.constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,14 @@ const experience: DynamicLayoutWithBasicWrapper = {
elements: [
{
componentName: 'TimelineElement',
title: 'Full Stack Software Engineer',
title: 'Senior Full Stack Software Engineer',
subtitle: 'PolyAI',
points: [
'Senior Full Stack Software Engineer working across the stack to develop voice agents for 5+ clients.',
'Took the initiative to develop a VSCode Extension that enhanced the development experience by providing project specific code completion, code definitions and linting.',
'Took the initiative to develop a code generation script for building FAQs directly from a spreadsheet. Reducing the initial build time of a project by over 90% (2 weeks to around 1 day).',
'Researched and deployed a Flan-T5 model using Triton Inference Server (using FasterTransformers) with Docker. Improved the inference speed by 90% (Down to 200ms from 2s).',
'Took the initiative to develop a VSCode extension for enhancing the development experience by providing project specific code completion, code definitions and linting. This reduced the cognitive overload by 66% (editing a project requires a minimum of 3 files, where 2 files are config heavy).',
'Proactively developed a script for bootstrapping a project from project specs (in csv format). This led to approx 90% reduction in initial build time (2 weeks to 1 day). This has since evolved into a product feature.',
'Designed and deployed API servers (+ endpoints) using open api schema and Flask/Fast APIs.',
'Developed features on a React based frontend following agile best practices.',
],
start: new Date('2021-08-01'),
iconColor: 'rgb(175, 225, 175)',
Expand Down
5 changes: 2 additions & 3 deletions src/constants/site/hero.constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,13 @@ type HeroLayoutWithNoneWrapper = HeroLayout & NoneWrapper;
export const CallToAction = {
text: 'View CV',
link:
'https://drive.google.com/file/d/15D4j9e34zYCzpslnX_5zqAKgX2jxuG5x/view?usp=sharing',
'https://drive.google.com/file/d/15D4j9e34zYCzpslnX_5zqAKgX2jxuG5x/view?usp=sharing',
icon: download,
};

const heroConfig: HeroLayoutWithNoneWrapper = {
id: 'home',
layoutName: 'Hero',

wrap: 'None',

cta: CallToAction,
Expand All @@ -33,7 +32,7 @@ const heroConfig: HeroLayoutWithNoneWrapper = {
},
{
image: heroImage2,
title: ['I am a', 'Software Engineer'],
title: ['I am a', 'Senior Software Engineer'],
subtitle: '',
},
],
Expand Down
2 changes: 1 addition & 1 deletion src/constants/site/skills.constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const skills: DynamicLayoutWithBasicWrapper = {
componentName: 'SkillBar',
name: 'Python',
color: 'yellow',
percentage: 75,
percentage: 90,
fadeDirection: 'bottom-right',
},
{
Expand Down
Loading

0 comments on commit 124b0c7

Please sign in to comment.