- // Hi, world 👋
- // Systems Engineering Student · Portfolio
- import type { Developer } from "./types";
- const developer: Developer = {
- name: "Aryel Rivera",
- role: "Systems Engineering Student",
- location: "Pérez Zeledón, Costa Rica",
- university: "UNA — Sede Brunca",
- available: true,
- os: "NixOS",
- languages: [
- "Java",
- "Python",
- "Rust", // learning
- ],
- focus: "Backend, systems & tooling",
- bio: `Systems Engineering student with a strong interest in software, operating systems and Linux-first workflows.`
- };
- export default developer;
❯ ts-node presentation.tsx
Developer {
name: 'Aryel Rivera',
role: 'Systems Engineering Student',
location: 'Pérez Zeledón, Costa Rica',
os: 'NixOS',
languages: ['Java', 'Python', 'Rust'],
}
[Done] exited with code=0 in 0.631s
❯