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
Instructions to reproduce the issue: | |
1) Download and unzip Symfony standard edition from here - http://symfony.com/download?v=Symfony_Standard_Vendors_2.0.4.tgz . It seems that this bug is not existing when do "git clone" and "bin/vendors install". Also this bug is not visible when using master or 2.0 branch. | |
2) Apply changes from files specified in this gist | |
3) Load http://localhost/Symfony/web/app_dev.php and see the error: | |
Fatal error: Allowed memory size of 1887436800 bytes exhausted (tried to allocate 523800 bytes) in /Users/Bob/Sites/Symfony/vendor/symfony/src/Symfony/Component/Translation/MessageCatalogue.php on line 127 | |
Notes: | |
It happens only when translation key is not found in messages file, and cache is empty, and on first request (when reload the page session is restored and bug is not visible). |
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 | |
while read LINE; do | |
curl -o /dev/null --silent --progress-bar --head --write-out '%{http_code} %{time_starttransfer} %{url_effective}\n' "$LINE" >> urls_result.txt | |
done < urls.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
s3cmd --recursive --reduced-redundancy --skip-existing --no-delete-removed --acl-public sync s3://s3.domain.com/files/ s3://s3-backup.domain.com/files/ |
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
# https://github.com/s0enke/git-hooks/tree/master/phpcs-pre-commit/ | |
curl -o .git/hooks/pre-commit https://raw.github.com/s0enke/git-hooks/master/phpcs-pre-commit/pre-commit | |
chmod +x .git/hooks/pre-commit | |
Specify Symfony2 as standards in pre-commit. | |
Also there is Netbeans plugin to verify coding style. | |
Profit! :) |
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
# Show which process is on this port: | |
netstat -tulpn | grep :80 | |
# List urls which miss: | |
varnishtop -i txurl | |
# Activity by IP: | |
varnishlog -b -m TxHeader:88.88.88.88 | |
# Purge URL from curl: |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>VM iframe</title> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
</head> | |
<body> | |
<iframe src="http://www.victoriamilan.com/" scrolling="no" style="width: 1000px; height: 800px; border: 0px; overflow: auto;"></iframe> |
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
# test | |
machine: | |
environment: | |
CIRCLECI: false | |
CI: false | |
branches: | |
ignore: | |
- /.*/ |
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
more_set_headers "Access-Control-Allow-Origin: $http_origin"; | |
more_set_headers "Access-Control-Allow-Credentials: true"; | |
# OPTIONS indicates a CORS pre-flight request | |
if ($request_method = 'OPTIONS') { | |
more_set_headers "Access-Control-Max-Age: 1728000"; | |
more_set_headers "Access-Control-Allow-Methods: GET, POST, PUT, DELETE, PATCH, OPTIONS"; | |
more_set_headers "Access-Control-Allow-Headers: Authorization,Content-Type,Accept,Origin,User-Agent,DNT,Cache-Control,X-Mx-ReqToken,Keep-Alive,X-Requested-With,If-Modified-Since"; | |
more_set_headers "Content-Length: 0"; |
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
dig +short myip.opendns.com @resolver1.opendns.com |
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
# Run Apptus on Ubuntu (using Vagrant) | |
# vagrant up | |
# vagrant ssh | |
sudo apt-get install openjdk-7-jdk | |
/esales/install_server.sh | |
###### |
OlderNewer