Skip to main content

Resume.js

Raw Code

This is the raw code which will be downloaded at time of building the portfolio.

info

Portfolio Generator will ask you for data which can replace the variables. If you don't enter correct data, then you can change variables manually also.

Data/Resume.js
const education = [[educationList]];

const exams = [[examList]];

const skills = [[skillList]];

const experience = [[experienceList]];

export default { education, exams, skills, experience };

Variables

caution

You can refer this table if you have any kind of confusion regarding adding data into variables. Remember variables are very sensitive respect to their types and data format. Data should be added in the instructed format only.

VariableDescriptionTypeDetails
educationList*Generated list for education itemsList CodeView
examList*Generated list for examsList CodeView
skillList*Generated list for skillsList CodeView
experienceList*Generated list for experiencesList CodeView
info

Data which will be asked by portfolio-generator for variable marked as * will be in different format.


Data Asked by portfolio-generator for variable educationList

VariableDescriptionTypeConstraintExample
Count*Number of education itemsInteger
TitleTitle of educationTextMax length 30B.Tech CSE
TimeTime durationTextMax length 302020 - 2024
Educated fromSchool/College/University nameTextMax length 75MNIT Jaipur
ResultEducation resultTextMax length 30CGPA:8.57
tip
  • Count will be asked only once.
  • Then all variables will be asked Count times i.e. once for each education item.

Data Asked by portfolio-generator for variable examList

VariableDescriptionTypeConstraintExample
Count*Number of examsInteger
TitleExam nameTextMax length 30JEE Mains
ResultExam resultTextMax length 30AIR: 5126
tip
  • Count will be asked only once.
  • Then all variables will be asked Count times i.e. once for each exam.

Data Asked by portfolio-generator for variable skillList

VariableDescriptionTypeConstraintExample
Count*Number of skillsInteger
TitleSkill type/titleTextMax length 15Languages
ItemsSkill items (seperated by comma)TextMax length 30Java, Python, C
tip
  • Count will be asked only once.
  • Then all variables will be asked Count times i.e. once for each skill item.

Data Asked by portfolio-generator for variable experienceList

VariableDescriptionTypeConstraintExample
Count*Number of experience itemsInteger
TitleExperience titleTextMax length 30Software Developer
CompanyCompany nameTextMax length 30Atlassian
TimeTime durationTextMax length 30In summer 2023
LocationWork locationTextMax length 20Remote
Description CountNumber of statements describing the experienceInteger
DescriptionsDescription statement ony by oneTextLength 10 to 150
Links CountNumber of URL links related to the experienceInteger
LinksURL link ony by oneURLMust be a valid URL
tip
  • Count will be asked only once.
  • Then all variables will be asked Count times i.e. once for each project.

Final Code Example

After adding the data, the code will look like:

Data/Resume.js
const education = [
{
title: "B.Tech Computer Science",
time: "2020 - present",
from: "Malaviya National Institute of Technology, Rajasthan, India",
result: "CGPA: 8.57",
},
{
title: "Senior Secondary (XII)",
time: "2019 - 20",
from: "Nirmal Happy Sr. Sec. School, Hindaun, Rajasthan, India",
result: "Percentage: 91.20",
},
{
title: "Secondary (X)",
time: "2017 - 18",
from: "DS Science Academy, Gangapur, Rajasthan, India",
result: "Percentage: 96.00",
},
];

const exams = [
{ title: "JEE Mains", result: "AIR: 5126" },
{ title: "JEE Advanced", result: "AIR: 3086" },
{ title: "KVPY", result: "AIR: 1403" },
];

const skills = [
{
title: "Languages",
items: [
"Java",
"Python",
"C",
"CPP",
"Motoko",
"Javascript",
"Dart",
"Scheme",
"Assmebly",
],
},
{
title: "Platforms",
items: [
"Unix",
"Git",
"Android Studio",
"Flutter",
"AWS",
"Firebase",
"Vercel",
"Postmam",
"Playstore",
],
},
{ title: "Frameworks", items: ["React JS", "Next JS", "Flask", "Node JS"] },
{
title: "Databases",
items: ["MongoDB", "MySql", "SQLAlchemy", "Firestore", "Airtable"],
},
];

const experience = [
{
title: "Software Engineer Intern",
company: "Atlassian",
time: "In summer 2023",
location: "Remote + Bangalore",
points: [],
links: [],
},
{
title: "Maths Expert",
company: "Chegg Inc.",
time: "Nov 2022 - Present",
location: "Remote",
points: ["Basic maths expert at Chegg Inc.", "Solve math questions daily."],
links: [],
},
{
title: "Flutter App Developer",
company: "Urban Culture",
time: "Apr 2022 - May 2022",
location: "Remote",
points: [
"Leader of website team at Urban Culture.",
"Developed Rest APIs.",
"Worked on client android app & admin panel in flutter.",
],
links: [],
},
{
title: "Web Developer",
company: "YouthFest MNIT Jaipur",
time: "Dec 2021 - Jan 2022",
location: "Remote",
points: [
"Created a website for MNIT YouthFest 2022",
"Leader of team of 6 people",
"Frontend in React JS & Backend in Node JS, MongoDB",
],
links: ["https://www.mnityouthfest.in/"],
},
{
title: "Web Developer & Incharge",
company: "Think India MNIT",
time: "Nov 2021 - Oct 2022",
location: "Jaipur, IN",
points: [
"Incharge of Coding team at Think India MNIT.",
"We work on different projects like app development, web development.",
],
links: [],
},
];

export default { education, exams, skills, experience };
danger
  • Above data is dummy data which will be produced when you run portfolio-project with --dummy option.
  • This data is the personal data of Saksham Bindal
  • This data is only for testing purpose. You are not allowed to misuse the data.
  • You are not allowed to distribute or publish this data.