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
openssl req -nodes -newkey rsa:2048 -sha512 -keyout myserver.key -out server.csr |
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
if (ENVIRONMENT != 'development') { | |
define('AUTOMATIC_UPDATER_DISABLED', true); // Disable Automatic Updates | |
define('WP_AUTO_UPDATE_CORE', false); // Disable WordPress Core Automatic Updates | |
define('DISALLOW_FILE_EDIT', true); // Disable the Plugin and Theme Editor | |
define('DISALLOW_FILE_MODS', true); // Disable Wordpress, Plugin and Theme Installation and Updates | |
} |
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
openssl x509 -noout -modulus -in certificate.crt | openssl md5 | |
openssl rsa -noout -modulus -in private-key.key | openssl md5 | |
openssl req -noout -modulus -in certificate-signing-request.csr | openssl md5 |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2" xmlns:kml="http://www.opengis.net/kml/2.2" xmlns:atom="http://www.w3.org/2005/Atom"> | |
<Document id="Warwickshire_Ring_New" xsi:schemaLocation="http://www.opengis.net/kml/2.2 http://schemas.opengis.net/kml/2.2.0/ogckml22.xsd http://www.google.com/kml/ext/2.2 http://code.google.com/apis/kml/schema/kml22gx.xsd"> | |
<name>Warwickshire_Ring_New</name> | |
<Snippet maxLines="0"></Snippet> | |
<Style id="LineStyle01"> | |
<LabelStyle> | |
<color>00000000</color> | |
<scale>0</scale> | |
</LabelStyle> |
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
# Install a specific version of Varnish | |
sudo apt-get install varnish=3.0.5-2 | |
# Ensure Package cannot be updated | |
sudo apt-mark hold varnish |
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
# Download and Setup Key | |
wget http://download.opensuse.org/repositories/home:/holland-backup/xUbuntu_14.04/Release.key -O - | sudo apt-key add - | |
# Add Repo | |
sudo echo 'deb http://download.opensuse.org/repositories/home:/holland-backup/xUbuntu_14.04/ ./' > /etc/apt/sources.list.d/holland.list | |
# Install Holland | |
sudo apt-get update && sudo apt-get install holland-common holland-mysqldump | |
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
<input type="text" name="forename" class="form-control" id="forename" value="{{ ! is_null(old('forename')) ? old('forename') : (isset($model->forename) ? $model->forename : '') }}" /> |
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
@import '../../../bower_components/bootstrap/less/bootstrap.less'; |
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
var elixir = require('laravel-elixir'); | |
/* | |
|-------------------------------------------------------------------------- | |
| Elixir Asset Management | |
|-------------------------------------------------------------------------- | |
| | |
| Elixir provides a clean, fluent API for defining some basic Gulp tasks | |
| for your Laravel application. By default, we are compiling the Sass | |
| file for our application, as well as publishing vendor resources. |
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
luke@samsung:~$ env X="() { :;} ; echo busted" /bin/sh -c "echo completed" | |
completed | |
luke@samsung:~$ env X="() { :;} ; echo busted" `which bash` -c "echo completed" | |
busted | |
completed | |
luke@samsung:~$ sudo apt-get update && sudo apt-get upgrade -y | |
... | |
... | |
... | |
luke@samsung:~$ env X="() { :;} ; echo busted" /bin/sh -c "echo completed" |
NewerOlder