// cv builder for developers

Your Resume,
Written in Code

>

Choose from 6 programming languages. Fill in your details. Export a PDF styled as source code.

6 LanguagesPDF ExportShare onFree
CV.cs
<img>
Profile
</img>
public enum PLATFORMS
{
Linux,
macOS,
Docker,
AWS,
Vercel
}
 
public enum LANGUAGES
{
TypeScript,
Python,
Rust,
Go,
SQL
}
 
public enum SOFTWARE
{
VS Code,
Figma,
PostgreSQL,
Redis,
Git
}
 
public enum MEDIA
{
GitHub, // github.com/alexchen
LinkedIn, // linkedin.com/in/alexchen
Portfolio // alexchen.dev
}
 
public enum SPOKEN
{
English, // Native
Mandarin, // Fluent
Spanish // Intermediate
}
 
public enum TRAITS
{
Problem Solver,
Team Player,
Detail Oriented,
Creative,
Curious
}
 
/// <summary>
/// Passionate full-stack developer with 6 years of experience
/// building scalable web applications. Specialized in React,
/// Node.js, and cloud architecture. Open source contributor and
/// tech community speaker.
/// </summary>
public class INFORMATION
{
public string NAME = "Alex Chen";
public string TITLE = "Full Stack Developer";
public string EMAIL = "alex.chen@dev.io";
public int PHONE = +1 555 0142;
public string[] LOCATION = { "San Francisco, CA" };
public int AGE = 28;
}
public partial class EDUCATION : HigherEducation
{
private void StanfordUniversity()
{
var _Level = "Master";
var _Period = Range(2018, 2020);
var _Field = "Computer Science";
// Focus on distributed systems and machine learning.
}
 
private void UCBerkeley()
{
var _Level = "Bachelor";
var _Period = Range(2014, 2018);
var _Field = "Software Engineering";
// Graduated with honors. Led the university hackathon team.
}
}
 
public static class EXPERIENCE
{
public void Vercel()
{
var _Duration = Range("03/2022", "Present");
var _Role = new "Senior Frontend Engineer";
var _Stack = new [] { "Next.js", "TypeScript", "React", "Turborepo" };
/* Building the next generation of web deployment tools. Leading a team of 5 engineers working on the dashboard and CLI. */
}
 
public void Stripe()
{
var _Duration = Range("06/2020", "02/2022");
var _Role = new "Software Engineer";
var _Stack = new [] { "Ruby", "Go", "PostgreSQL", "gRPC" };
/* Developed payment processing APIs handling millions of transactions daily. Improved API response times by 40%. */
}
}