╔═══════════════════════════════════════════════════════════════╗
║ ║
║ Y I G I T H A N G U M U S ║
║ < init system > ║
║ ║
║ Full Stack Developer Terminal ║
║ Building scalable web solutions ║
║ ║
║ SYSTEM ID: PORTFOLIO v2.0 ALPHA ║
║ STATUS: ▰▰▰ ONLINE ║
║ ║
╚═══════════════════════════════════════════════════════════════╝
root@yigithangumus:~$
whoami
yigithangumus
[ FULL STACK WEB DEVELOPER ]
[✓] PHP | Laravel | Node.js | .NET | Vue.js | Nuxt.js | Next.js
[✓] System initialized successfully
root@yigithangumus:~$
cat about.txt
└─ Software development since 2018
└─ Passion driven | Career focused | Results oriented
Full Stack Developer specializing in complete web application
development lifecycle. Expert in backend systems, frontend UI/UX,
and enterprise architecture.
PRIMARY STACK:
└─ PHP / Laravel | Node.js | .NET MVC
└─ Vue.js | Nuxt.js | Next.js | React
└─ Scalable | Maintainable | Performance-oriented
root@yigithangumus:~$
./experience.sh
► WORK EXPERIENCE
[2024-2025] Rodos Group — Full Stack Developer
[2023-2024] SAYEM / SUBU — Full Stack Developer
[2023] SUBU IT Department — Backend Developer, Intern
[2020-Present] Freelance — Web Developer
[2019-2020] ARTBAR Agency — Web Developer, Intern
root@yigithangumus:~$
./education.sh
► EDUCATION
Sakarya University of Applied Sciences — Computer Programming
Dilek Sabancı Anatolian High School — Information Technologies / Web Design
root@yigithangumus:~$
./skills.sh --detailed
► TECHNICAL SKILLS & STACK
BACKEND TECHNOLOGIES
PHP 8+
Laravel 8+
Node.js
Express.js
C#
.NET MVC
FRONTEND TECHNOLOGIES
Vue.js 2/3
Nuxt.js
React
Next.js
JavaScript
TypeScript
DATABASE & ARCHITECTURE
MySQL
PostgreSQL
MongoDB
Redis
Docker
CI/CD
PROFICIENCY LEVELS:
Backend:
Frontend:
DevOps:
root@yigithangumus:~$
./services.sh --list
► SERVICES OFFERED
WEB APPLICATION DEVELOPMENT — Full stack web apps from concept to deployment
REST API DEVELOPMENT — Scalable and secure APIs for mobile & web
FRONTEND UI/UX — Responsive and interactive user interfaces
DATABASE DESIGN — Efficient schema design and optimization
SYSTEM ARCHITECTURE — Planning and designing scalable systems
MAINTENANCE & SUPPORT — Long-term project support and updates
root@yigithangumus:~$
./stats.sh --overview
► SYSTEM METRICS DASHBOARD
EXPERIENCE
6+
Years in Development
PROJECTS COMPLETED
25+
Production Systems
ACTIVE PROJECTS
9+
Featured Deployments
TOTAL EFFORT
2K+
Hours Tracked
LANGUAGES
5
Programming Languages
SATISFACTION
100%
Client Feedback
root@yigithangumus:~$
git log --oneline --decorate --graph
► CAREER TIMELINE & GIT HISTORY
[2024-2025] — Rodos Group
Full Stack Developer | Building enterprise solutions | Laravel + Vue.js
[2023-2024] — SAYEM / SUBU
Full Stack Developer | E-commerce & business apps | Node.js + React
[2023] — SUBU IT Department
Backend Developer (Intern) | API development | Laravel
[2020-Present] — Freelance
Independent Web Developer | Full-stack projects | Multi-tech stack
[2019-2020] — ARTBAR Agency
Web Developer (Intern) | Web design & development | PHP + jQuery
Total Commits: 142+ | Active Branches: Multiple | Latest Release: Portfolio v2.0 ALPHA
root@yigithangumus:~$
./github-stats.sh --fetch --verbose
► GITHUB STATISTICS & REPOSITORIES
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
GitHub Profile :
github.com/YigithanGumus
User ID : 58472284 | Account Age: 4+ years
Public Repos : 19 | Private Repos: Multiple
Followers/Following: 7 followers | 5 following
Annual Stats : 142 contributions in last year
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
TECH STACK (GitHub):
└─ Languages : HTML5 | CSS3 | JavaScript | TypeScript | PHP | C#
└─ Frameworks : Laravel | Vue.js | Nuxt.js | Next.js | React | .NET
└─ Databases : MySQL | PostgreSQL | MongoDB | Redis
└─ Tools : Docker | Git | GitHub Actions | Vite | Webpack
FEATURED REPOSITORIES:
├─
ai-resume
│ └─ AI-Powered Resume Generator (Backend) | PHP | Stars: 2
├─
qrcode-generator-api
│ └─ QRCode Generator REST API | JavaScript | HTML
├─
laravel-youtube
│ └─ Full YouTube Clone | Laravel + Vue.js + Vite | Stars: 1 Fork: 1
└─
laravel-eksisozluk
└─ Eksisozluk Clone Platform | Laravel | PHP
Location: Istanbul/Kadikoy, Turkey
Website :
yigithangumus.com
root@yigithangumus:~$
cat code-examples.php
► CODE SNIPPET EXAMPLES
Laravel + Vue.js Stack:
// app/Http/Controllers/ProjectController.php
namespace App\Http\Controllers;
use App\Models\Project;
use Illuminate\Http\Response;
class ProjectController extends Controller {
public function index(): Response {
$projects = Project::with('technologies')
->where('status', 'active')
->latest()
->paginate(9);
return response()->json($projects);
}
}
Vue 3 Composition API:
<script setup>
import { ref, computed } from 'vue'
import { fetchProjects } from '@/api'
const projects = ref([])
const loading = ref(false)
const filteredProjects = computed(() => {
return projects.value.sort((a, b) =>
new Date(b.created_at) - new Date(a.created_at)
)
})
</script>