(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| # | |
| # Capistrano recipe for deploying Drupal7 using git and ssh. | |
| # | |
| # Part of the explanations in the comments taken from: | |
| # http://help.github.com/deploy-with-capistrano/ | |
| # | |
| set :default_environment, { | |
| # This is the $PATH for the deploymant shell. using uberpsace's recent php | |
| # and added ~/bin for drush. |
| #!/bin/sh | |
| # Installation instructions: | |
| # - Download the file | |
| # - mv finalize.sh finalize | |
| # - chmod +x finalize | |
| # - mv finalize /usr/local/bin | |
| # - now you can type `finalize` in any directory and it should work | |
| # NOTE: this will rename all the files in your current directory, so be careful |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| # Credit: pwnsdx https://gist.github.com/pwnsdx/1217727ca57de2dd2a372afdd7a0fc21; nebular https://gist.github.com/pwnsdx/d87b034c4c0210b988040ad2f85a68d3#gistcomment-3019082 | |
| # IMPORTANT: Don't forget to logout from your Apple ID in the settings before running it! | |
| # IMPORTANT: You will need to disable SIP: Reboot to Recovery, in Terminal csrutil disable | |
| # WARNING: It might disable things that you may not like. Please double check the services in the TODISABLE vars. | |
| # Get active services: launchctl list | grep -v "\-\t0" | |
| # Find a service: grep -lR [service] /System/Library/Launch* /Library/Launch* ~/Library/LaunchAgents | |
| # List disabled services: launchctl print-disabled user/501 |grep true & launchctl print-disabled system |grep true |