Electronic & Communications Engineer | Full Stack Developer
A modern, responsive portfolio showcasing expertise in both hardware engineering and software development. Features macOS-inspired design with liquid animations and glassmorphism effects.
- Dual Expertise Showcase: Hardware engineering and full stack development projects
- Modern Design System: Built with Material Design 3 and Apple Human Interface Guidelines
- macOS-Inspired Interface: Glassmorphism effects, blur backgrounds, and smooth animations
- Liquid Animations: CSS-powered fluid motion effects and micro-interactions
- Responsive Design: Optimized for mobile, tablet, and desktop viewing
- GitHub Integration: Real-time repository and contribution data via GitHub API
- Performance Optimized: Lazy loading, efficient animations, and Core Web Vitals optimization
- Accessibility First: WCAG 2.1 AA compliant with keyboard navigation and screen reader support
- Progressive Enhancement: Works across all modern browsers with graceful degradation
- Signal Processing: DSP, FPGA, Software-Defined Radio
- RF Engineering: Circuit design, spectrum analysis, SIGINT
- Hardware Integration: Embedded systems, IoT, real-time processing
- Communication Protocols: Cellular, wireless, network analysis
- Frontend: React, Vue.js, TypeScript, WebGL, modern CSS
- Backend: Node.js, Python, Go, C++, microservices
- Databases: PostgreSQL, MongoDB, Redis, InfluxDB
- Cloud & DevOps: AWS, Docker, Kubernetes, CI/CD pipelines
- Design Tokens: Centralized design variables for consistency
- Component Library: Reusable UI components with variants
- Typography Scale: Golden ratio-based font sizing
- Color System: Semantic color palette with dark mode support
- Lazy Loading: Images and content loaded on demand
- Service Worker: PWA capabilities for offline functionality
- Focus Management: Enhanced keyboard navigation
- Reduced Motion: Respects user's motion preferences
portfolio/
├── css/
│ ├── design-tokens.css # Design system variables
│ ├── reset.css # Modern CSS reset
│ ├── base.css # Base typography and layout
│ ├── components.css # UI component styles
│ ├── animations.css # Animation definitions
│ └── responsive.css # Mobile and responsive styles
├── js/
│ ├── utils.js # Utility functions
│ ├── github-api.js # GitHub integration
│ ├── animations.js # Animation controller
│ └── main.js # Main application logic
├── assets/
│ └── (fonts, images, icons)
├── .github/
│ └── copilot-instructions.md
├── index.html
└── README.md- Primary: Blue gradient (#3b82f6 to #1d4ed8)
- Neutral: Grayscale from white to dark gray
- Semantic: Success, warning, error states
- Glass effects with transparency and blur
- Display Font: SF Pro Display (system fallback)
- Text Font: SF Pro Text (system fallback)
- Monospace: SF Mono (system fallback)
- Scale: Golden ratio-based sizing (1.618)
- Base Unit: 8px for consistent spacing
- Scale: 4px, 8px, 12px, 16px, 20px, 24px, 32px, etc.
- Duration: Fast (150ms), Normal (300ms), Slow (500ms)
- Easing: Custom cubic-bezier curves for natural motion
- Liquid Effects: CSS animations with randomized keyframes
- Modern web browser (Chrome 80+, Firefox 75+, Safari 13+)
- Local development server (optional)
-
Clone the repository
git clone https://github.com/cuneytcakar/portfolio.git cd portfolio -
Serve locally (optional)
# Using Python 3 python -m http.server 8000 # Using Node.js npx serve . # Using PHP php -S localhost:8000
-
Open in browser
http://localhost:8000
Update the username in js/github-api.js:
const githubAPI = new GitHubAPI('olmstedian');Update content in index.html:
- Name and title
- About section
- Contact information
- Social media links
Modify css/design-tokens.css to customize:
- Colors and themes
- Typography scales
- Spacing values
- Animation timing
Add new components to css/components.css:
.new-component {
/* Component styles using design tokens */
background: var(--color-background-glass);
padding: var(--spacing-4);
border-radius: var(--radius-lg);
}Create custom animations in css/animations.css:
@keyframes customAnimation {
0% { transform: translateY(0); }
100% { transform: translateY(-10px); }
}- Mobile: < 640px
- Tablet: 640px - 1024px
- Desktop: > 1024px
- Large Desktop: > 1280px
- Fluid typography with
clamp() - Responsive images with
object-fit - Touch-friendly interface elements
- Mobile-first CSS approach
- Critical CSS: Inlined essential styles
- Lazy Loading: Images and non-critical content
- Code Splitting: Modular JavaScript architecture
- Caching: Local storage for API responses
- Compression: Optimized assets and code
- LCP: Optimized with image preloading
- FID: Minimal JavaScript blocking
- CLS: Stable layout with proper sizing
- ARIA Labels: Comprehensive labeling
- Keyboard Navigation: Full keyboard support
- Screen Readers: Semantic HTML structure
- Focus Management: Visible focus indicators
- Color Contrast: WCAG AA compliant
- Reduced Motion: Respects user preferences
- axe DevTools: Automated accessibility testing
- Keyboard Navigation: Manual testing
- Screen Reader: VoiceOver/NVDA testing
Automatic detection based on system preferences:
@media (prefers-color-scheme: dark) {
:root {
--color-background-primary: var(--color-neutral-900);
}
}// Core Web Vitals tracking
Performance.mark('portfolio-loaded');
Performance.measure('load-time', 'navigationStart', 'portfolio-loaded');window.addEventListener('error', (e) => {
console.error('Portfolio error:', e.error);
});Deploy to any static hosting service:
- Netlify: Drag and drop deployment
- Vercel: GitHub integration
- GitHub Pages: Built-in hosting
- Firebase Hosting: Google's CDN
No build process required - pure HTML/CSS/JS:
- Update content and configuration
- Test across browsers
- Deploy to hosting service
MIT License - feel free to use this project as a template for your own portfolio.
- Fork the repository
- Create a feature branch
- Make your changes
- Test across browsers
- Submit a pull request
- Website: ccakar.com
- Email: ccakar [at] spexop [dot] com
- GitHub: @ccakar
This project is hosted on GitHub Pages. Thanks to GitHub for providing free static site hosting through GitHub Pages.
Built with ❤️ using modern web technologies and design systems.