We want to show a flash message as the result of executing some controller. This message will only last for the next request.
I propose to use the new addFlash() method available in the base controller of Symfony 2.6:
| #!/bin/bash | |
| if [[ -n ${bamboo_pull_num} ]]; then | |
| echo 'stoping bamboo' | |
| curl "http://${bamboo_BAMBOO_USER}:${bamboo_BAMBOO_password}@your.bamboo.domain/build/admin/stopPlan.action?${bamboo.planResultKey}-${bamboo.buildNumber}" | |
| fi |
Branch A has commits (X,Y) that also need to be in Branch B. The cherry-pick operations should be done in the same chronological order that the commits appear in Branch A.
cherry-pick does support a range of commits, but if you have merge commits in that range, it gets really complicated
git checkout branch-B
git cherry-pick X
git cherry-pick Y
| #!/bin/bash | |
| GIT_REPO_URL=$(git config --get remote.origin.url) | |
| mkdir .deploy | |
| cp -R ./* .deploy | |
| cd .deploy | |
| git init . | |
| git remote add github $GIT_REPO_URL | |
| git checkout -b gh-pages | |
| git add . |
Every month I have the challenge of finding two speakers to do a 10 minute lightning talk on something PHP related (even adjacent). The past few months this has become increasingly difficult so I've created my personal wishlist. If you would like to add to this list please leave a message below. If you would like to give one of these lightning talks, please let me know by filling out our submission form: https://nomadphp.com/lightning-talk-submission/
I want to encourage new and veteran speakers. This is a great way for you to get some exposure and show conference organizers what you can do. Veterans can use Lightning Talks to test out new talk ideas or even different slide decks to see the audience reactions. Think of it as A/B testing your talks.
The best example is to check out the NomadPHP Youtube Channel and see for yourself!
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the owners of this repository before making a change.
Please note we have a code of conduct, please follow it in all your interactions with the project.
| #!/bin/bash | |
| set -e | |
| show_help() { | |
| cat << EOF | |
| Usage: ${0##*/} [-u USER] [-p PASS] [-P PORT] [-H HOST] [DATABASE] | |
| ${0##*/} -h | |
| Open a standard connection in Sequel PRO. |
First and most important: thank you @javiereguiluz!!
| Title | Published At | Link |
|---|---|---|
| Twig Tips and Tricks | february 2013 | http://www.slideshare.net/javier.eguiluz/twig-tips-and-tricks |
| Silex Al Limite | june 2013 | http://www.slideshare.net/javier.eguiluz/silex-al-lmite |
| Symfony Tips and Tricks | november 2014 | http://www.slideshare.net/javier.eguiluz/symfony-tips-and-tricks |
| Mastering Twig | september 2015 | http://www.slideshare.net/javier.eguiluz/mastering-twig-druaplcon-barcelona-2015 |