I'm FabianMolinaB software developer in Colombia 🇨🇴
- I’m currently learning Cobol.
- 🧐 Interested in full stack and critical philosophy.
- 🥺 I like exploring GNU/Linux and NeoVim.
- 🎮 In my spare time play battle royales.
- I 🤎 coffe.
export const AboutMe: React.FC = () => {
const myTools = {
ProgrammigLenguajes: {'Cobol','Javascript', 'Typescript', 'Go', 'Python'},
FrontEnd: {'React', 'Next', 'Astro', 'Redux'},
BackEnd: {'Node', 'CICS', 'SQL', 'MySQL', 'Firebase', 'MongoDB', 'Docker'},
Editors: {'NeoVim'},
OperatingSystem: {'GNU/Linux', 'OS/390'}
}
return (
<h1>My Tools</h1>
{
Object.entries(myTools).forEach(([key, value]) => {
console.log(value)
})
}
)
}