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
http://symfony.com/doc/current/reference/configuration/doctrine.html#caching-drivers : | |
doctrine: | |
orm: | |
metadata_cache_driver: apc | |
query_cache_driver: apc |
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
#!/bin/bash | |
clear | |
rm -rf var/cache/* | |
composer install | |
bin/console assets:install --ansi -n | |
php bin/console doctrine:schema:update --force --em=default | |
php bin/console assetic:dump --env=prod | |
HTTPDUSER=`ps aux | grep -E '[a]pache|[h]ttpd|[_]www|[w]ww-data|[n]ginx' | grep -v root | head -1 | cut -d\ -f1` |
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
(use with caution): | |
find /www -d 2 -name node_modules -print0 | xargs -0 rm -r | |
From https://twitter.com/FGRibreau/status/770699612646768644 |
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
mysqldump -u username -ppassword databasename | | |
ssh user@ipaddress "mysql -u root -ppassword databasename" |
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
ssh-agent bash -c 'ssh-add /home/myuser/.ssh/github.key; git pull [email protected]:MYPROJECT/myproject.git' |
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
/** | |
* @ORM\Entity | |
* @ORM\Table(name="ecommerce_products",uniqueConstraints={ | |
* @ORM\UniqueConstraint(name="search_idx", columns={"name", "email"})}) | |
*/ |
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
#!/bin/bash | |
# See http://stackoverflow.com/questions/59895/can-a-bash-script-tell-what-directory-its-stored-in/23905052#23905052 | |
ROOT=$(readlink -f $(dirname "$0")) | |
cd $ROOT | |
# Get database parameters | |
dbname=$(grep "database_name" ./app/config/parameters.yml | cut -d " " -f 6) | |
dbuser=$(grep "database_user" ./app/config/parameters.yml | cut -d " " -f 6) |
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
-- Set up variable to delete ALL tables starting with 'temp_' | |
SET GROUP_CONCAT_MAX_LEN=10000; | |
SET @tbls = (SELECT GROUP_CONCAT(TABLE_NAME) | |
FROM information_schema.TABLES | |
WHERE TABLE_SCHEMA = 'my_database' | |
AND TABLE_NAME LIKE 'temp_%'); | |
SET @delStmt = CONCAT('DROP TABLE ', @tbls); | |
-- SELECT @delStmt; | |
PREPARE stmt FROM @delStmt; | |
EXECUTE stmt; |
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
composer global require hirak/prestissimo |
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
// Permet de préfixer les navigateurs | |
navigator.vibrate = navigator.vibrate || navigator.webkitVibrate || navigator.mozVibrate || navigator.msVibrate; | |
// Si l'API vibrate est supportée, on fait vibrer le téléphone 1/2 seconde | |
if (navigator.vibrate) { | |
navigator.vibrate(500); | |
} | |
//Il est également possible de faire vibrer plusieurs fois le téléphone en passant un tableau en paramètre : | |
if (navigator.vibrate) { |
NewerOlder