Skip to content

Linuxblackshark/portfolio2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

2 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

๐Ÿ” c0mrade | Elite Cybersecurity & Full-Stack Portfolio

A completely unique, ultra-futuristic portfolio website blending cyberpunk neon aesthetics with modern UI design trends. This is a signature "c0mrade style" interface built with pure HTML, CSS, and JavaScript.

๐ŸŽจ Design Features

Visual Elements

  • Cyberpunk Neon Aesthetic: Glowing cyan and magenta gradients with high-contrast cyber text
  • Glassmorphism: Translucent blur panels with modern glass-like appearance
  • Neumorphism: Soft shadowed surfaces with subtle depth
  • 3D Depth & Floating Elements: Parallax layers and rotating floating components
  • Animated Gradients: Dynamic gradient lighting with smooth transitions
  • Particle System: Continuous animated particles with smooth floating effects
  • Terminal-Inspired Animations: Typewriter text effects and glitch animations
  • SVG Neon Grid: Animated background grid with moving patterns

Responsive & Interactive

  • Fully responsive design (mobile, tablet, desktop)
  • Smooth scrolling with parallax effects
  • Dark/Light mode toggle with local storage persistence
  • Keyboard shortcuts (Alt+L for theme, Alt+H for home)
  • Hover effects with 3D perspective transforms
  • Intersection observer for lazy loading
  • Performance optimized animations

๐Ÿ“ File Structure

portfolio2/
โ”œโ”€โ”€ index.html          # Semantic HTML structure with all sections
โ”œโ”€โ”€ style.css          # Advanced CSS with animations and effects
โ”œโ”€โ”€ script.js          # Interactive features and animations
โ””โ”€โ”€ README.md          # This file

๐Ÿš€ Quick Start

Option 1: Local Development

  1. Open index.html directly in your browser (no server required)
  2. All features work offline

Option 2: With Live Server

# If you have Python 3 installed
python -m http.server 8000

# Or with Node.js
npx http-server

Then navigate to http://localhost:8000

๐Ÿ“‹ Features

Hero Section

  • Animated Typewriter: Cycles through different identity tags
  • Neon Grid Background: Moving animated grid pattern
  • Floating Orbs: Gradient-filled floating elements
  • Particle Effects: Continuous particle generation
  • CTA Buttons: Primary and secondary action buttons

About Me Section

  • Professional biography with cybersecurity focus
  • Glassmorphic card design
  • Neumorphic stat cards showing achievements
  • Smooth hover transitions

Skills Section

  • 8 Skill Categories: Frontend, Backend, Pentesting, Security, Systems, Learning Platforms, and Specialties
  • Neon Badges: Glowing skill tags with micro-animations
  • Hover Effects: Scale and glow on interaction
  • Organized Layout: Grid-based responsive layout

Projects Section

  • 6 Project Cards: Real project descriptions with icons
  • Technologies Showcase: Tech tags for each project
  • Glass Card Design: Semi-transparent with hover effects
  • Interactive Links: Smooth state transitions

Contact Section

  • Email, Telegram, and GitHub links
  • Glassmorphic contact buttons
  • Icon animations on hover

๐ŸŽฎ Keyboard Shortcuts

  • Alt + L: Toggle dark/light mode
  • Alt + H: Scroll to home/hero section
  • Type "c0mrade": Unlock easter egg in console

๐Ÿ’ป Technologies Used

No Frameworks - Pure Web Standards:

  • HTML5 for semantic structure
  • CSS3 with advanced features:
    • CSS Grid and Flexbox
    • Custom Properties (CSS Variables)
    • Keyframe animations
    • Backdrop filters (glassmorphism)
    • Gradients and shadows
  • Vanilla JavaScript with classes for organization:
    • TypeWriter animation
    • ParticleSystem
    • ThemeToggle
    • ScrollManager
    • HoverEffects
    • And more...

๐ŸŽจ Customization

Colors & Theme

Edit CSS variables in style.css:

:root {
    --neon-cyan: #00ffff;
    --neon-magenta: #ff00ff;
    --neon-purple: #a855f7;
    --neon-pink: #ec4899;
    /* ... more variables ... */
}

Typography

Modify font families and sizes:

--font-primary: 'Courier New', monospace;
--font-display: 'Monaco', monospace;

Content

Update content in index.html:

  • Change name and bio in about section
  • Add/remove projects
  • Update skill categories
  • Modify contact links

๐Ÿ“ฑ Browser Support

  • โœ… Chrome/Edge 90+
  • โœ… Firefox 88+
  • โœ… Safari 14+
  • โœ… Mobile browsers (iOS Safari, Chrome Mobile)

โšก Performance

  • Optimized animations using requestAnimationFrame
  • Lazy loading with Intersection Observer
  • Reduced motion support for accessibility
  • Minimal bundle size: All CSS/JS inline (no external dependencies)
  • Page load time: Typically under 1 second

๐Ÿ”ง Configuration

Change Contact Email

In index.html, update the email link:

<a href="mailto:[email protected]" class="contact-button glass-card">

Change Social Links

Update Telegram and GitHub URLs:

<a href="https://t.me/your-username" class="contact-button glass-card">
<a href="https://github.com/your-username" class="contact-button glass-card">

Modify Typewriter Text

In script.js, edit the TypeWriter initialization:

new TypeWriter('typewriter', [
    '> Your Title',
    '> Another Title',
    // ... more titles
], 80, 1500);

๐ŸŽฌ Animation Settings

Adjust animation speeds in script.js:

  • TypeWriter speed: Change 80 parameter
  • Particle count: Change 60 parameter
  • Scroll parallax effect: Adjust 0.5 multiplier

๐Ÿ“Š Sections Overview

Section Content Design Pattern
Navigation Logo, Menu, Theme Toggle Glassmorphic
Hero Title, Subtitle, CTA Buttons Cyberpunk + Particles
About Bio, Stats Glass Cards + Neumorphic
Skills 8 Categories, Neon Badges Grid Layout
Projects 6 Project Cards Glass Cards
Contact Email, Telegram, GitHub Glass Cards
Footer Copyright, Subtitle Minimal

๐Ÿ” Security Notes

  • No external dependencies (no supply chain risks)
  • No tracking or analytics
  • No backend required
  • Safe to host anywhere
  • Pure client-side rendering

๐Ÿ“ License

This portfolio is created as a personal brand showcase for c0mrade. Feel free to use as inspiration but please credit and customize for your own identity.

๐Ÿ™Œ Credits

Developer: c0mrade Design Inspiration: Modern 2025 UI trends combining:

  • Cyberpunk aesthetics
  • Apple minimalism
  • Glassmorphism
  • Neumorphism
  • 3D web design

๐Ÿš€ Future Enhancements

Potential additions (keep it pure):

  • Project filtering system
  • Scroll-triggered animations
  • ASCII art elements
  • More keyboard shortcuts
  • Command palette
  • Matrix-style digital rain effect

๐Ÿ’ก Tips for Maximum Impact

  1. Customize the colors to match your personal brand
  2. Add real projects with GitHub links
  3. Update the bio with your actual achievements
  4. Optimize for SEO by updating meta tags
  5. Deploy to GitHub Pages for free hosting
  6. Share across socials with the live link

c0mrade Portfolio | Red Team Trainee โ€ข Cybersecurity Enthusiast โ€ข Full-Stack Developer Crafted with precision. Security through curiosity. Power through knowledge. ๐Ÿ”

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published