Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maticapuano/maticapuano
https://github.com/maticapuano/maticapuano
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/maticapuano/maticapuano
- Owner: maticapuano
- Created: 2020-07-25T19:57:13.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-12-31T02:28:16.000Z (about 1 year ago)
- Last Synced: 2023-12-31T03:22:38.744Z (about 1 year ago)
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# About Me
Hi there! My name is Matías Capuano, and I'm a Backend Developer from Argentina. I have experience working with a variety of technologies, including Node.js, TypeScript, NestJS, PostgreSQL, Docker, Redis, AWS, Kubernetes, Git, Terraform, Serverless, Microservices, and Clean Architecture.
## Skills and Experience
Here's an example of some of the skills I have:
```typescript
export type Person = {
name: string;
age: number;
country: string;
profession: string;
skills: string[];
otherSkills: string[];
};const person: Person = {
name: 'Matías Capuano',
age: 25,
country: 'argentina',
profession: 'Backend Developer',
skills: [
'Node.js',
'TypeScript',
'NestJS',
'PostgreSQL',
'Docker',
'Redis',
'AWS',
'Kubernetes',
'Git',
'Terraform',
'Serverless',
'Microservices',
'Clean Architecture',
],
otherSkills: ['React', 'Next.js'],
};const toSentence = (array: string[]): string => {
const last = array.pop();return `${array.join(', ')} and ${last}`;
};const printPerson = (person: Person): void => {
const { name, age, country, profession, skills } = person;console.log(`
Hi, I'm ${name} from ${country}. I'm ${age} years old and I work as a ${profession}.
I have experience working with ${toSentence(skills)}.
`);
};printPerson(person);
```## Contact
If you want to get in touch, you can reach me at:
- [LinkedIn](https://www.linkedin.com/in/matias-capuano/)
- [Email](mailto:[email protected])
- [Phone](https://wa.me/542252416161)