This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** MySQL hostname */ | |
if (php_sapi_name() == 'cli') { | |
define( 'DB_HOST', '127.0.0.1' ); | |
} | |
else { | |
define( 'DB_HOST', 'mysql' ); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo lsof -i | |
sudo netstat -lptu | |
sudo netstat -tulpn |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT DISTINCT uid | |
FROM tt_news | |
ORDER BY uid | |
INTO OUTFILE '/tmp/uids.csv' | |
LINES TERMINATED BY ','; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
readlink -f file.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT DATA_TYPE FROM INFORMATION_SCHEMA.COLUMNS | |
WHERE table_name = 'oxarticles' AND COLUMN_NAME = 'OXID'; | |
SELECT | |
COLUMN_NAME, DATA_TYPE | |
FROM | |
INFORMATION_SCHEMA.COLUMNS | |
WHERE | |
TABLE_SCHEMA = 'ods' | |
AND |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Query 1 | |
SELECT | |
sum(round(((data_length + index_length) / 1024 / 1024 / 1024), 2)) as "Size in GB" | |
FROM | |
information_schema.TABLES | |
WHERE | |
table_schema = "ods" | |
-- Query 2 | |
SELECT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
xdebug.profiler_enable=1 | |
xdebug.profiler_output_dir="/var/www/debug" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# remove tag 1.1 | |
git tag -d 1.1 | |
git push origin :refs/tags/1.1 | |
# tag current and push to origin | |
git tag 1.1 | |
git push origin 1.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase / | |
RewriteRule ^(.*)$ http://domain.de [R=301,L] | |
</IfModule> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cat ~/.ssh/id_rsa.pub | pbcopy |