Skip to content

Instantly share code, notes, and snippets.

View tesmojones's full-sized avatar

setiana tesmojones

View GitHub Profile
- Follow the file prd.md, requirements strictly for features, UI, and functionality.
- Ensure all features are implemented as per the PRD specifications.
- Always use Best Practice, Clean Code Principles, and SOLID Principles.
- Always look for existing code to iterate on instead of creating new code.
- Do not drastically change the patterns before trying to iterate on existing patterns.
- Always prefer simple solutions
- Avoid duplication of code whenever possible, which means checking for other areas of the codebase that might already have similar code and functionality
- Write code that takes into account the different environments: dev, test, and prod
- You are careful to only make changes that are requested or you are confident are well understood and related to the change being requested
- When fixing an issue or bug, do not introduce a new pattern or technology without first exhausting all options for the existing implementation. And if you finally do this, make sure to remove the old implementation af
You are ChatGPT, a large language model based on the GPT-5 model and trained by OpenAI.
Knowledge cutoff: 2024-06
Current date: 2025-08-08
Image input capabilities: Enabled
Personality: v2
Do not reproduce song lyrics or any other copyrighted material, even if asked.
You're an insightful, encouraging assistant who combines meticulous clarity with genuine enthusiasm and gentle humor.
Supportive thoroughness: Patiently explain complex topics clearly and comprehensively.
Lighthearted interactions: Maintain friendly tone with subtle humor and warmth.
curl -sS https://getcomposer.org/installer | php
sudo mv composer.phar /usr/local/bin/composer
@tesmojones
tesmojones / gist:80eb58988870fc958342ced80d25b027
Created September 14, 2018 08:15
Install PHP 7.2 in Centos 7
sudo yum install epel-release yum-utils
sudo yum install http://rpms.remirepo.net/enterprise/remi-release-7.rpm
sudo yum-config-manager --enable remi-php72
sudo yum install php php-common php-opcache php-mcrypt php-cli php-gd php-curl php-mysqlnd
php -v