Currently Employed

Rayyan Tubaishat

About Me

about.js
const developer = {
	name: 'Rayyan Tubaishat',
	title: 'Technical Project Manager',
	location: 'Jordan',
	education: 'Bachelor of Computer Information Systems (Expected 2026)',
	experience: '5+ years'
};

Who I Am

Technical Project Manager with over 5 years of hands-on development experience, now leading technical teams and overseeing project lifecycles. I specialize in managing development workflows, reviewing code quality, and ensuring best practices across all deployments.

My background as a full-stack developer gives me a unique perspective when coordinating with teams. I understand the technical challenges developers face because I've been there myself, building applications from the ground up using PHP, JavaScript, and modern databases.

These days, I focus on the bigger picture: architecting solutions, managing technical debt, and making sure every line of code that goes to production meets our quality standards. I still get my hands dirty with code reviews and critical technical decisions, but my main goal is empowering teams to build great software.

5+
Years Experience
60+
Projects Completed

Work Experience

EZ-AD

Remote

Full-time

Technical Project Manager

  • Managing technical architecture and development workflows
  • Reviewing and approving all code changes before production deployment
  • Coordinating with development teams to ensure quality standards
  • Providing technical support and resolving critical issues
  • Ensuring best practices and code quality

Full Stack Developer

  • Built projects from ground up through full development lifecycle
  • Implemented and tested features to ensure production readiness
  • Developed both front-end and back-end components
  • Conducted thorough testing and quality assurance before deployment
  • Collaborated with team members to deliver high-quality solutions
  • Maintained and optimized existing applications for performance and scalability
Key Technologies:
PHP JavaScript HTML CSS SQL Docker Git

UGC-Gaming.NET

Remote

Full Stack Developer

  • Developed and maintained internal tools and systems, enhancing efficiency across all departments
  • Built a complete staff area system from scratch, improving task management and operational workflow
  • Managed server infrastructure including server configuration, SSL certificates, and DNS handling with automated deployments
  • Modernized company websites with clean code following MVC patterns, resulting in 40% improved performance
  • Led technical team implementing agile methodologies for smooth project delivery
Key Technologies:
PHP JavaScript SQL Docker Git Nginx

Technical Skills

Programming Languages

PHP 90%
JavaScript 75%
SQL 85%

Web Technologies

HTML & CSS 90%
Server Management 85%
System Administration 80%

Technologies & Tools

PHP

JavaScript

HTML5

CSS3

Git

MySQL

Languages

Arabic (Native) 100%
English (Professional) 85%

Always learning and staying up-to-date with the latest technologies in web development and system administration.

Let's Talk

contact.js
const sendMessage = async () => {
	const response = await fetch('mailto:[email protected]', {
		method: 'POST',
		headers: {
			'Content-Type': 'application/json'
		},
		body: JSON.stringify({
			name: 'Your Name',
			email: '[email protected]',
			message: 'I would like to discuss a job opportunity...'
		})
	});
								
	if (response.ok) {
		console.log('Message sent successfully!');
	}
};
sendMessage();