Single Element Split Button
This creates a split button using a single element, it uses pseudo elements and data attributes.
/* | |
* Updated to use the function-based method described in http://www.phpied.com/social-button-bffs/ | |
* Better handling of scripts without supplied ids. | |
* | |
* N.B. Be sure to include Google Analytics's _gaq and Facebook's fbAsyncInit prior to this function. | |
*/ | |
(function(doc, script) { | |
var js, | |
fjs = doc.getElementsByTagName(script)[0], |
<?php | |
// Script to install the latest version of Bolt.cm CMS | |
// Define function to test if curl is installed on the server | |
function _is_curl_installed() { | |
if (in_array ('curl', get_loaded_extensions())) { | |
return true; | |
} else { | |
return false; | |
} |
<?php | |
exec("cp " . php_ini_loaded_file() . " " . $_SERVER['DOCUMENT_ROOT'] . "/php.ini"); | |
fwrite(fopen("{$_SERVER['DOCUMENT_ROOT']}/php.ini", 'a'), PHP_EOL . '[PHP]' . PHP_EOL . "magic_quotes_gpc = Off" . PHP_EOL); | |
fwrite(fopen("{$_SERVER['DOCUMENT_ROOT']}/.htaccess", 'a'), PHP_EOL . "SetEnv PHPRC {$_SERVER['DOCUMENT_ROOT']}/php.ini" . PHP_EOL); | |
?> |
<?php | |
// Script to install the latest version of Bolt.cm CMS | |
// Define function to test if curl is installed on the server | |
function _is_curl_installed() { | |
if (in_array ('curl', get_loaded_extensions())) { | |
return true; | |
} else { | |
return false; | |
} |
// ---- | |
// Sass (v3.4.12) | |
// Compass (v1.0.3) | |
// ---- | |
$spacing-unit: 24px; | |
$spacing-unit-tiny: round(0.25 * $spacing-unit); | |
$spacing-unit-small: round(0.5 * $spacing-unit); | |
$spacing-unit-large: round(2 * $spacing-unit); |
{# Extend a different layout if requested via AJAX #} | |
{% extends app.request.isXmlHttpRequest ? 'layout-ajax.twig' : 'layout.twig' %} |
background: linear-gradient(1deg, #a24bcf, #cf4b4b, #c0cf4b, #52cf4b, #52cf4b, #4bc5cf, #4b79cf); | |
background-size: 1400% 1400%; | |
-webkit-animation: encounterGradient 30s ease infinite; | |
-moz-animation: encounterGradient 30s ease infinite; | |
-o-animation: encounterGradient 30s ease infinite; | |
animation: encounterGradient 30s ease infinite; | |
@-webkit-keyframes encounterGradient { | |
0%{background-position:50% 0%} | |
50%{background-position:51% 100%} | |
100%{background-position:50% 0%} |
// Export Layers To Files (Clean) | |
// Copyright 2007. Adobe Systems, Incorporated. All rights reserved. | |
// This script will export each layer in the document to a separate file. | |
// Written by Naoki Hada | |
// ZStrings and auto layout by Tom Ruark | |
// Bug fixes by Eric Ching | |
// Modded for cleaner output by Zomars | |
/* |
<?php | |
$repo_dir = '/home/username'; | |
$branch_to_deploy = 'master'; | |
$update = false; | |
// Parse data from Bitbucket hook payload | |
$payload = json_decode($_POST['payload']); | |
if (empty($payload->commits)) { |