- Routing framework: https://www.slimframework.com/
- Console framework: https://github.com/symfony/console
- Dependency Injection framework: http://pimple.sensiolabs.org/
- CQRS and event sourcing: http://simplebus.github.io/MessageBus/ or https://github.com/prooph/service-bus
[user]
name = John Doe
email = [email protected]
[color]
diff = auto
status = auto
Some times I found in some legacy code a doubled encoding issue (latin1 tables with UTF-8).
I workaround to fix the issue I find the problematic content:
db=$1
user=$2
pass=$3
mysqldump -u$user -p$pass $db > bkpEncodingIssue$db.sql
mysqldump --default-character-set=latin1 -u$user -p$pass $db | sed 's/DEFAULT CHARSET=LATIN1/DEFAULT CHARSET=utf8/i' | grep -v "^/\*" > bkpEncodingIssue${db}NewEncoding.sql