An open API service indexing awesome lists of open source software.

https://github.com/antoniotoni/antoniotoni


https://github.com/antoniotoni/antoniotoni

github readme readme-profile

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

          

```ts
import { Skills, Frameworks, Tools } from './types';

const aboutMe: string = `
I'm currently diving deep into the world of software development, exploring various technologies
and honing my skills to become a proficient developer.
`;

const mySkills: Skills[] = [
'TypeScript',
'JavaScript',
'HTML',
'CSS',
'Markdown'
];

const frameworks: Frameworks[] = [
'ReactJS',
'Express'
];

const stylingLibraries: Frameworks[] = [
'MaterialUI'
];

const tools: Tools[] = [
'Visual Studio Code'
];

console.log('Thanks for stopping by! Feel free to reach out for collaboration or just to say hello.');

export {
aboutMe,
mySkills,
frameworks,
stylingLibraries,
tools
};

```