diff --git a/student-resumes/sample-student-resume-directory/index.html b/student-resumes/sample-student-resume-directory/index.html new file mode 100644 index 0000000..e504c4d --- /dev/null +++ b/student-resumes/sample-student-resume-directory/index.html @@ -0,0 +1,58 @@ + + + + + + Resume + + + +

Resume

+

A Heartbroken Dev's Journey to Mending Through Coding

+

Location: The Digital Expanse

+

Availability: Whenever healing and learning intertwine

+

Contact: theheartbrokendev.com

+

Passions: Coding, Teaching, Recovering, Healing

+
+

About Me

+

Hello, I'm a Principal Software Engineer with a heart recently shattered into more pieces than a monolithic application being refactored into microservices. Despite the deep fissures in my heart, my spirit for coding and teaching burns brighter than a well-optimized algorithm. My journey through the valley of heartbreak has led me to a profound realization: healing is found not by looking inward but by reaching outward. With a career spent helming engineering projects in Fortune 10 enterprises, I've decided to pivot my expertise towards something infinitely more valuable—teaching you to code.

+
+

Experience

+

Principal Software Engineer
+ The School of Hard Knocks and Corporate America
+ - Managed engineering teams and projects that would intimidate lesser mortals.
+ - Accumulated a wealth of knowledge in software development, equivalent to the contents of Stack Overflow.

+

Recovering Alcoholic & Wannabe Entrepreneur
+ The Real World
+ - Mastered the art of turning life's lemons into remarkably bug-free lemonade apps.
+ - Entrepreneurial spirit, fueled by dreams and copious amounts of coffee, ready to mentor the next generation of dreamers.

+
+

Skills

+ +
+

Education

+

Life University
+ - Major: Navigating Heartbreak with Grace
+ - Minor: Advanced Software Engineering & Human Connections

+
+

Projects

+

Teach You To Code Initiative
+ - A noble quest to mentor souls from zero to hero in the realm of web development.
+ - A promise of commitment, to not only teach coding but to forge bonds through shared struggles and triumphs.

+
+

Personal Statement

+

In the darkest of times, when the code of my life seemed riddled with bugs, I found my purpose illuminated by the glow of my IDE. I've learned that the path to mending a broken heart is paved with curly braces, semicolons, and the smiles of those I can help along the way. My mission is simple: to offer you my time, my knowledge, and perhaps, a piece of my heart, as we embark on this journey of learning and healing together. I'm not looking for payment, accolades, or even recognition—I'm searching for connection, for meaning, and for the chance to make a difference in your life.

+

If you're willing to commit to this journey, I promise to be there every step of the way, from "Hello, World!" to deploying your first app. Let's build something beautiful together, not just in code, but in the very fabric of our lives.

+

Last but not least, I love you all. :)

+
+

Contact Me

+

To embark on this journey of code and heart mending, visit theheartbrokendev.com. Let's transform our sorrows into semicolons, our breaks into brackets, and our stories into software.

+
+

Because sometimes, the most endearing code is written with a broken heart... but a hopeful spirit.

+ + diff --git a/student-resumes/sample-student-resume-directory/style.css b/student-resumes/sample-student-resume-directory/style.css new file mode 100644 index 0000000..94bd69a --- /dev/null +++ b/student-resumes/sample-student-resume-directory/style.css @@ -0,0 +1,83 @@ +body { + font-family: 'Helvetica Neue', sans-serif; + font-weight: 300; + line-height: 1.6; + color: #212121; + background: linear-gradient(to right, #2980b9, #6dd5fa, #ffffff); + padding: 20px; +} + +h1 { + color: #212121; + text-align: center; + font-size: 3em; + margin-bottom: 50px; +} + +h2 { + color: #212121; + text-align: left; + font-size: 2.5em; + margin-bottom: 30px; + border-bottom: 2px solid #212121; +} + +h3 { + color: #212121; + font-size: 2em; + margin-bottom: 20px; +} + +p { + margin-bottom: 20px; + font-size: 1.2em; + color: #424242; +} + +p strong { + color: #0061a8; + font-weight: 600; +} + +a { + color: #0061a8; + text-decoration: none; + transition: color 0.3s ease; +} + +a:hover { + color: #212121; +} + +hr { + border: 0; + height: 1px; + background: #212121; + margin: 20px 0; +} + +ul { + list-style: none; + padding-left: 0; +} + +ul li { + margin-bottom: 10px; + font-size: 1.2em; + color: #424242; +} + +ul li strong { + color: #0061a8; + font-weight: 600; +} + +/* Add some animation to the page */ +@keyframes fadeIn { + 0% {opacity: 0;} + 100% {opacity: 1;} +} + +body { + animation: fadeIn 2s ease-in 1; +} \ No newline at end of file