Technical Skills
const build = async () => { const app = create('React') await app.deploy() return { ok: true } }
Dynamic, event-driven, everywhere.
@app.get('/build') async def build(idea: str): data = await parse(idea) db.save(data) return deploy(data)
Back-end, scripting, data & APIs.
app.get('/', (req, res) => { res.json({ ok: true }) }) app.listen(3000, () => ready('live'))
Fast, event-driven, non-blocking I/O.
FROM node:20-alpine WORKDIR /app COPY package*.json ./ RUN npm ci COPY . . CMD ["npm", "start"]
Containerise and ship apps anywhere.
git checkout -b feat git add -A git commit -m "ship it 🚀" git push -u origin feat
Branch, merge, and ship.
<section id="hero"> <h1>Calvyn</h1> <a href="#work"> View work </a> </section>
Semantic, accessible markup engines use.
.card {
display: grid;
gap: 24px;
border-radius: 18px;
transition: .3s ease;
}
Animations & pixel-perfect layouts.
type Dev = { name: string stack: string[] level: 'freelance' ship(): Promise<void> }
Typed JS for robust, scalable codebases.
export default async function Page() { const data = await getProjects() return <Grid items={data} /> }
SSR, routing, API routes, App Router.
SELECT id, name FROM users u JOIN posts p ON p.user_id = u.id WHERE u.active = true;
Relational DB, powerful and battle-tested.
const [data, set] = useState([]) useEffect(() => { fetch('/api') .then(r => r.json()) .then(set) }, [])
Component-driven UI with hooks.
<div class=" flex gap-4 p-6 rounded-2xl bg-zinc-900 hover:scale-105">
Utility-first, fast, endlessly scalable.
gsap.to('.el', { y: 0, opacity: 1, ease: 'power4.out', stagger: 0.1 })
Pro-grade animation, buttery smooth.
const scene = new THREE .Scene() scene.add(mesh) renderer.render( scene, camera)
WebGL 3D graphics in the browser.
const users = await prisma.user.findMany({ where: { active: true }, include: { posts: true } })
Type-safe ORM for full-stack apps.
This site can’t be previewed here due to its security policy.
Open in new tab ↗Scroll to explore — click any card to preview it live.
I’m Calvyn, a freelance developer based in New York specializing in full-stack development, automation, and system design. I build websites, applications, back-end infrastructure, and custom software solutions tailored to your needs.
AI helps streamline my workflow, but the work itself is built on actual programming experience, technical understanding, and execution.