GitHub Organization dedicated to hosting a portfolio of open source projects and open source software development solutions.🖖🏻
type DeveloperProfile = {
role: string;
location: string;
languages: readonly string[];
operatingSystems: readonly string[];
};
export const victorZarzar: DeveloperProfile = {
role: '💻 Full Stack Developer',
location: 'Novo Hamburgo, RS - Brazil',
languages: ['JavaScript', 'TypeScript'],
operatingSystems: ['macOS', 'Linux'],
} as const;

