Skip to content

Commit

Permalink
[generic-version]
Browse files Browse the repository at this point in the history
  • Loading branch information
enkr1 committed Sep 7, 2024
1 parent a4c866c commit 7f64f1e
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 13 deletions.
1 change: 1 addition & 0 deletions a.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
git add .
8 changes: 8 additions & 0 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,11 @@ body p {
#resume-main section#skills-section .skills-container .li-skill .skill-type-title {
font-weight: 500;
}
#resume-main section .single-job:not(:last-child) ul,
#resume-main section .single-project:not(:last-child) ul {
padding: 0 0 1.3rem 1.8rem;
}

#resume-footer {
text-align: center;
font-size: 1rem;
Expand All @@ -190,6 +195,9 @@ body p {
/* Print Styles */
@media print {
@page {}
html {
font-size: 40%; /* Reducing the base font size by 90% */
}
body {
padding: 0;
font-size: 1.4rem;
Expand Down
11 changes: 5 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -125,12 +125,11 @@ <h1>
<section id="summary-section">
<h2>Professional Summary</h2>
<p>
With over 3 years of experience as a versatile Full-Stack Software Engineer, I specialise in creating scalable,
cloud-native solutions using Elixir, Java, PHP, and advanced JavaScript frameworks. At ByteDance, I've honed my
skills in aPaaS development through hands-on work with the Feishu App Engine, enhancing efficiency in low-code
environments. My work extends beyond engineering, contributing to strategic project management and translating
complex technical concepts into actionable insights. I am passionate about building resilient systems that drive
success for forward-thinking organisations.
As a dedicated Software Engineer with over 3 years of experience, I have a proven track record of designing and developing scalable, high-performance systems. My expertise spans various programming languages and technologies, including JavaScript, Elixir, and AWS, with a focus on delivering solutions that enhance operational efficiency and improve user experiences. I thrive in fast-paced environments where I can apply my problem-solving skills and passion for innovation, continuously exploring new tools and methodologies.

At ByteDance, I led full-stack development efforts for large-scale projects, optimising data flows and processing for over 180,000 users, and improving system performance through advanced architectural design. My ability to work effectively both independently and as part of cross-functional teams has allowed me to consistently deliver high-quality software solutions, all while maintaining a strong focus on user satisfaction and business impact.

I am passionate about staying current with emerging technologies, and I am eager to contribute to a forward-thinking organisation that values growth, collaboration, and cutting-edge innovation. My commitment to lifelong learning, combined with a proactive approach to solving complex challenges, makes me a valuable asset to any team.
</p>
</section>
<section id="skills-section">
Expand Down
6 changes: 2 additions & 4 deletions scripts/data.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const RESUME_DATA = {
"name": "Jing Hui PANG",
"name_cn": "彭竞辉",
"title": "Full-Stack Software Engineer, Technical Leader, Project Manager",
"title": "Full-Stack Software Engineer, Project Manager, aPaaS Consultant",
"location": "Singapore",
"contact": {
"phone": "+65 8128 7402",
Expand All @@ -10,10 +10,8 @@ const RESUME_DATA = {
"portfolio": "https://enkr1.github.io/platforms",
"linkedin": "https://www.linkedin.com/in/jinghuipang"
},
// "summary": "With over 3 years of experience as a Full-Stack Software Engineer, I am deeply passionate about Elixir and its potential for building scalable, high-performance applications. Although my current role focuses on a broader tech stack, I am eager to contribute to a team where Elixir is at the forefront. Inspired by its adoption in platforms like Discord and WhatsApp, I am enthusiastic about learning and growing in an Elixir-focused environment, ready to help drive innovation and sustainability at Apple.",

// Original
"summary": "In the fast-paced world of technology, I distinguish myself as a multifaceted Software Engineer with over 3 years of hands-on experience. Specialised in Java, PHP, and cloud-native solutions like AWS and Terraform, I have led cross-functional teams in delivering high-impact digital products. My unique blend of expertise ranges from scalable microservices and RESTful APIs to advanced data structures and CI/CD pipelines. A staunch advocate of agile methodologies, I transform complex requirements into robust and fault-tolerant systems. As I continually seek challenges that stretch the boundaries of software engineering, I am eager to contribute to forward-thinking organisations leading the tech innovation landscape.",
"summary": "As a dedicated Software Engineer with over 3 years of experience, I have a proven track record of designing and developing scalable, high-performance systems. My expertise spans various programming languages and technologies, including JavaScript, Elixir, and AWS, with a focus on delivering solutions that enhance operational efficiency and improve user experiences. I thrive in fast-paced environments where I can apply my problem-solving skills and passion for innovation, continuously exploring new tools and methodologies. At ByteDance, I led full-stack development efforts for large-scale projects, optimising data flows and processing for over 180,000 users, and improving system performance through advanced architectural design. My ability to work effectively both independently and as part of cross-functional teams has allowed me to consistently deliver high-quality software solutions, all while maintaining a strong focus on user satisfaction and business impact. I am passionate about staying current with emerging technologies, and I am eager to contribute to a forward-thinking organisation that values growth, collaboration, and cutting-edge innovation. My commitment to lifelong learning, combined with a proactive approach to solving complex challenges, makes me a valuable asset to any team.",
"technical_skills": [
{
"category": "Programming Languages",
Expand Down
4 changes: 4 additions & 0 deletions styles/_print.scss
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
// margin: 1in;
}

html {
font-size: 40%; /* Reducing the base font size by 90% */
}

header,
footer {
// display: none;
Expand Down
16 changes: 13 additions & 3 deletions styles/_resume.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@

$ul-padding-1: 1.8rem;

#resume-main {

// Section Styles
Expand Down Expand Up @@ -25,7 +28,7 @@
}

ul {
padding: 0 0 0rem 1.8rem;
padding: 0 0 0rem $ul-padding-1;
display: flex;
flex-direction: column;
gap: .3rem;
Expand All @@ -47,6 +50,7 @@
@media screen and (max-width: $screen_sm) {
flex-direction: column;
align-items: flex-start;

p {
text-align: right;
width: 100%;
Expand Down Expand Up @@ -87,8 +91,14 @@
}
}

&#experience-section {
.job-header {}
&#experience-section {}


.single-job:not(:last-child),
.single-project:not(:last-child) {
ul {
padding: 0 0 1.3rem $ul-padding-1;
}
}

}
Expand Down

0 comments on commit 7f64f1e

Please sign in to comment.