nvim about.ts × blog/ × experience.lua × contact.sh ×
EXPLORER
▾ portfolio
  about.ts ▸ blog/   experience.lua   contact.sh
1 // about.ts
2 // Vaibhav Singh Bisht — Founding Fullstack Engineer
3
4 interface Developer {
5 name: string;
6 role: string;
7 location: string;
8 education: string;
9 languages: string[];
10 interests: string[];
11 }
12
13 const me: Developer = {
14 name: "Vaibhav Singh Bisht",
15 role: "Founding Fullstack Engineer",
16 location: "India",
17 education: "B.Sc (Hons) CS — University of Delhi",
18 languages: [
19 "TypeScript", "Python", "Go", "JavaScript", "Rust"
20 ],
21 interests: [
22 "founding early-stage startups",
23 "open source (Meilisearch, Layer5)",
24 "AI/LLM pipelines & voice agents",
25 "fullstack web & infra",
26 "neovim btw"
27 ],
28 };
29
30 export default me;
~
~
~
~
~
~
~
~
~
~
~
~
~
~
~
NORMAL ★ main
about.ts
typescript Ln 1, Col 1
: