Skip to content

Commit

Permalink
Add testimonials
Browse files Browse the repository at this point in the history
  • Loading branch information
kungfux committed Jan 4, 2024
1 parent 0e2906a commit addafeb
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 18 deletions.
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ timezone:

title: Alexander Fuks # the main title

tagline: A personal professional blog # it will display as the sub-title
tagline: SDET | Full-stack developer # it will display as the sub-title

description: >- # used by seo meta and the atom feed
A personal professional blog
Expand Down
55 changes: 38 additions & 17 deletions _tabs/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,48 @@ order: 4
<!-- > Add Markdown syntax content to file `_tabs/about.md`{: .filepath } and it will show up on this page.
{: .prompt-tip } -->

<h2>Hi, I'm Alexander. Nice to meet you.</h2>
Hi, I'm Alexander. Nice to meet you.
------------------------------------

Since I started my journey as an enterprise software tester 15 years ago, I've been building applications to simplify my work and that of my colleagues. After all these years of improving my skills and gaining experience, I continue to build small and bigger projects playing with different technology stacks and I really enjoy this process.
Since I started my journey as an enterprise software test engineer 15 years ago, I've been building applications to simplify my work and that of my colleagues. After all these years of improving my skills and gaining experience, I continue to build small and bigger projects playing with different technology stacks and I really enjoy this process.

```js
function getExperienceSummary(experience) {
switch(experience) {
case 'SDET':
return `5+ years of experience as SDET \
covering web and desktop automation.`;
case 'QA':
return `10+ years of enterprise software testing.`;
case 'Developer':
return `5+ years of various development experience \
including web, desktop, mobile, and IoT solutions.`;
default:
return `Looking forward to learn more about .NET Core \
cloud services, containerazation, and devops.`;`
}
const yearsOfExperience = 15;
const jobHistory = [
{ role: 'SDET', duration: '5 years' },
{ role: 'Senior/Lead QA Engineer', duration: '10 years' },
{ role: 'Software Developer', duration: '2 years' },
];
const skills = ['C#', 'JavaScript', 'TypeScript', 'Node.js', 'Webpack', 'Azure', 'Git', 'SQL', 'Playwright', 'Selenium'];

function describeExperience() {
return `With ${yearsOfExperience} years of experience, I've worked as a ${jobHistory.map(job => `${job.role} for ${job.duration}`).join(', ')}. My skills include ${skills.join(', ')}.`;
}

console.log(describeExperience());
```

> Output:
With 15 years of experience, I've worked as a SDET for 5 years, Senior/Lead QA Engineer for 10 years, Software Developer for 2 years. My skills include C#, JavaScript, TypeScript, Node.js, Webpack, Azure, Git, SQL, Playwright, Selenium.
{: .prompt-tip }

Here are a few past projects I've worked on. Want to see them?
[Click here]({{ site.url }}{{ site.baseurl }}/categories/portfolio)
[Click here]({{ site.url }}{{ site.baseurl }}/categories/portfolio)

Testimonials
------------

People I've worked with have said some nice things...

> Kalyn and I want you to know that Alexander is a real asset to our team. We previously noticed that he brings thoughtful questions to our planning sessions and he has a good understanding of the product, but when Tatiana was on vacation the last two weeks, he did an excellent job of taking on many of her responsibilities. We especially appreciate the work he did to prepare documentation and scenarios for our meeting with client last week (including working some hours one weekend).
- Senior Program Manager

> You are one of my favorites and I have made it very clear to many people here and at there that you are a valuable member of the team. You quickly learned the product, but more importantly I can see that you are good at looking at the whole picture and not focusing only on the specific thing you are testing. This is a skill that is extremely valuable to an organization. I am sure you will be successful at current position and wherever life takes you.
- Senior Program Manager

> Throughout the course of your engagement with us, your dedication and proficiency have not only met but exceeded our expectations. Your commitment to delivering high-quality results has significantly contributed to the success of our projects. We recognize and commend your hard work, attention to detail, and the collaborative spirit you brought to the table. Your contributions have undoubtedly left a lasting impact, and we are grateful for the positive influence you have had on our projects and team dynamics.
Thank you bringing out a lot of automation POC’s and not just introducing it but also helping the teams to embrace new automation tools and changes that had happened. Thanks a lot for your contributions and all the best for your future!
- Senior QA Team Lead

> I wanted to take a moment to let you know how much I appreciate the knowledge and insights you've shared with me. Your guidance has been invaluable, and I'm truly grateful for the opportunity to learn from someone as experienced as you.
- SDET

0 comments on commit addafeb

Please sign in to comment.