<Ar>
Tech Stack
Set of technologies I've used to build my projects and at production grade systems.
PHP Legacy & Modern PHP
- PHP 5.x - 8.x Migration & Maintenance
- Legacy Code Refactoring
- Object-Oriented PHP
- Composer & Package Management
- PHPUnit Testing
Production
3+ yearsReact & Inertia.js Expertise
- React Hooks & Context API
- Inertia.js
- State Management (Redux/Zustand)
- Performance Optimization
Production
2+ yearsLaravel & Blade Templating
- Blade Template Engine
- Laravel MVC Architecture
- Eloquent ORM
- Laravel Mix & Asset Compilation
- Custom Blade Directives
Medium
2+ yearsAgile & Development Practices
- Scrum & Kanban Methodologies
- JIRA & Project Management
Production
2+ yearsLinux & DevOps
- Bash Scripting
- Docker & Containerization
- CI/CD Pipelines
Advanced
1+ yearstypescript
// This is a react component, but could be me
import React, { useState } from 'react';
export default function Me() {
const [work, setWork] = useState('working at Hisower');
return (
<div>
<h1>About me</h1>
<p>I'm a software engineer with a passion for building scalable and efficient systems.</p>
<style me.jsx>{`
div { padding: 20px; font-family: sans-serif; color: #eee; }
h1 { color: #00ff9d; }
info {
name: 'Alysson Rodrigues';
age: 20;
location: 'Dom Aquino, Mato Grosso, Brazil';
email: 'jobs@alyssonrodrigues.com';
website: 'https://alyssonrodrigues.com';
github: 'https://github.com/Alysson-Rodrigues';
`}</style>
</div>
);
}