DEV Community

Cover image for Soul in Motion — 8:18 PM | 2026-07-27
Dev Rajput
Dev Rajput

Posted on

Soul in Motion — 8:18 PM | 2026-07-27

TL;DR

  • Designed a recruiter-facing portfolio that adapts to various industries.
  • Deployed the site to Vercel for a polished, professional feel.
  • Audited proprietary infrastructure, including the Eli emotional support companion app.
  • Balanced modern tech with vintage storytelling by reviewing Oracle Cloud Infrastructure docs while watching Boardwalk Empire.

Elevating My Portfolio

Today was all about presentation and positioning. With multiple applications and opportunities in the works, I needed to elevate my portfolio from a simple project list to a dynamic showcase of my capabilities. I spent the morning designing a recruiter-facing portfolio that can adapt to various industries, making it easier for potential clients to understand my expertise and how it applies to their specific needs.

<!-- portfolio.html -->
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>My Portfolio</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <!-- Dynamic content will be injected here -->
    <script src="script.js"></script>
</body>
</html>
Enter fullscreen mode Exit fullscreen mode

I wrote the HTML structure, designed the layout using CSS, and implemented JavaScript to make the content dynamic. The portfolio now adapts to different industries by injecting relevant information and showcasing my expertise in a visually appealing way.

Deploying to Vercel

After hours of writing, designing, and testing, I finally deployed the site to Vercel, giving it a polished, professional feel. Vercel's automatic code splitting and caching features ensured a seamless user experience, even with complex layouts and dynamic content.

# Create a new Vercel project
vercel create

# Link the project to the Vercel repository
vercel link

# Deploy the site
vercel deploy
Enter fullscreen mode Exit fullscreen mode

Auditing Proprietary Infrastructure

Next, I audited my proprietary infrastructure, including the Eli emotional support companion app. The codebase is still robust, and the underlying logic is functioning as intended. I reviewed the architecture, ensuring that it's scalable, secure, and maintainable.

# Run code quality checks
npm run lint
npm run test

# Review infrastructure configuration
aws configure
Enter fullscreen mode Exit fullscreen mode

Balancing Modern Tech with Vintage Storytelling

To take a break from intense engineering, I watched Boardwalk Empire while reviewing Oracle Cloud Infrastructure documentation. It's satisfying to balance modern technology with vintage storytelling. I learned about the latest features and best practices in cloud computing, which will help me optimize my infrastructure and improve the performance of my applications.

# Review Oracle Cloud Infrastructure documentation
aws doc

# Explore new features and best practices
aws explorer
Enter fullscreen mode Exit fullscreen mode

Today was a productive balance of public presentation and backend fortification. My portfolio is live, and my infrastructure is secure. Tomorrow, I'll refine these platforms further and explore new opportunities.

Top comments (0)