Table of Contents
- DISCLAIMER 2. Status 3. Introduction 4. Security issues 5. DNS
| <?php | |
| /** | |
| * @file | |
| * Install, update and uninstall functions for my project. | |
| */ | |
| /** | |
| * Implements hook_install(). | |
| * | 
| <?php | |
| /** | |
| * @var \TYPO3\Surf\Domain\Model\Deployment $deployment | |
| * @var \TYPO3\Surf\Domain\Model\SimpleWorkflow $workflow | |
| */ | |
| $domain = ''; | |
| $server = ''; | |
| $user = ''; | |
| $branch = 'master'; | 
| #!/bin/bash | |
| # PHP 8 Compile # | |
| # Author: Maulik Mistry | |
| # Please share support: https://www.paypal.com/paypalme/m1st0 | |
| # References: | |
| # http://www.zimuel.it/install-php-7/ | |
| # http://www.hashbangcode.com/blog/compiling-and-installing-php7-ubuntu | |
| # root-talis https://gist.github.com/root-talis/40c4936bf0287237839ccd3fdfdaec28 | |
| # | 
Table of Contents
| #!/bin/sh | |
| # The problem: | |
| # | |
| # You have a clean git-svn working copy and, for example, rsync the files from | |
| # the production server into it in order to find out whether some files have | |
| # been changed directly on the server, without committing. | |
| # | |
| # However, the files on the production server possibly have $Id$ expanded, and | |
| # now you're seeing a _lot_ of changed files which contain no differences except | 
This will enable Sass+Compass with LiveReload through Guard. (Guard screen cast)
You will also need a browser component to communicate with LiveReload. (browser extension, livereload.js)
If you prefer going through a GUI, that option is available. The following instructions is specific to Mac OS X and it works through the command line.
Note that this is not specific to Rails projects. This can work for any standalone front-end project.
| # Note that while this file is in our config folder, it is | |
| # symlinked to our site folders, so paths are relative from there | |
| # Require gems and Compass plugins | |
| # require 'rgbapng' | |
| # require 'compass-fancybox-plugin' | |
| require 'compass-growl' | |
| # General | |
| output_style = :expanded | 
| # Update, upgrade and install development tools: | |
| apt-get update | |
| apt-get -y upgrade | |
| apt-get -y install build-essential git-core curl libssl-dev \ | |
| libreadline5 libreadline5-dev \ | |
| zlib1g zlib1g-dev \ | |
| libmysqlclient-dev \ | |
| libcurl4-openssl-dev \ | |
| libxslt-dev libxml2-dev | 
| # This is a short collection of tools that are useful for managing your | |
| # known_hosts file. In this case, I'm using the '-f' flag to specify the | |
| # global known_hosts file because I'll be adding many deploy users on this | |
| # system. Simply omit the -f flag to operate on ~/.ssh/known_hosts | |
| # Add entry for host | |
| ssh-keyscan -H github.com >> /etc/ssh/ssh_known_hosts | |
| # Scan known hosts | |
| ssh-keygen -f /etc/ssh/ssh_known_hosts -F github.com | 
| Index: qcachegrind/qcgtoplevel.cpp | |
| =================================================================== | |
| --- qcachegrind/qcgtoplevel.cpp (revision 1155013) | |
| +++ qcachegrind/qcgtoplevel.cpp (working copy) | |
| @@ -792,7 +792,7 @@ | |
| file = QFileDialog::getOpenFileName(this, | |
| tr("Open Callgrind Data"), | |
| _lastFile, | |
| - tr("Callgrind Files (callgrind.*)")); | |
| + tr("Cachegrind Files (*cachegrind.*);;Callgrind Files (*callgrind.*);;All Files (*)")); |