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
/* F | |
-----------------------------------------------------------------------------------------------------------*/ | |
.ui-btn-up-f, .ui-btn-hover-f, .ui-btn-down-f { | |
color: white; | |
font-weight: bold; | |
text-decoration: none; } | |
.ui-btn-up-f { | |
border: 1px solid #711414; | |
background: #ab2525; |
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
<script> | |
/* | |
See the full details here: | |
http://www.snipe.net/2012/02/jquery-mobile-add-remove-fields-dynamically/ | |
Based on the great post by Charlie Griefer, available here: | |
http://charlie.griefer.com/blog/2009/09/17/jquery-dynamically-adding-form-elements/ | |
*/ |
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
100 Continue (in bed) | |
101 Switching Protocols (in bed) | |
102 Processing (in bed) | |
200 OK (in bed) | |
201 Created (in bed) | |
202 Accepted (in bed) | |
203 Non-Authoritative Information (in bed) | |
204 No Content (in bed) | |
205 Reset Content (in bed) | |
206 Partial Content (in bed) |
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
# Welcome to your htaccess file. | |
# Remember that modifying this file can break the entire website | |
# so please edit carefully. | |
# Also remember that the order of the rules below does matter, | |
# so be sure of what you're doing before shuffling things around. | |
AuthType Basic | |
AuthName "My Dev Environment" | |
# Specify what user/password file the server should look |
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"?> | |
<!-- Set some basic project information and targets --> | |
<project name="My ZF Project" default="build"> | |
<target name="build" | |
depends="prepare, lint, phploc, phpmd, phpcpd, phpcs, phpunit"/> | |
<target name="build-parallel" | |
depends="prepare,lint, tools-parallel, phpcpd, phpunit"/> |
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"?> | |
<!-- Set some basic project information and targets --> | |
<project name="My Symfony2 Project" default="build"> | |
<target name="build" | |
depends="prepare, vendors, dbupdate, fixtures, lint, phploc, phpmd, phpcpd, phpcs, phpunit"/> | |
<target name="build-parallel" | |
depends="prepare, vendors, dbupdate, fixtures, lint, tools-parallel, phpcpd, phpunit"/> |
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
This script is now available at banbuilder.com or https://github.com/snipe/banbuilder |
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
<?php | |
$feed = 'recent.rss'; | |
$xml = new SimpleXMLElement(file_get_contents($feed)); | |
$xml->registerXPathNamespace('media', $feed); | |
$images = $xml->xpath('/rss/channel/item/media:content/@url'); | |
foreach ( $xml->channel->item as $item ) { | |
$namespaces = $item->getNameSpaces(true); | |
$media = $item->children($namespaces['media']); |
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
yum install openssl-devel git php ant php-xml php-devel gcc make gcc-c++ freetype-devel fontconfig-devel | |
# Install node.js | |
cd /usr/local/src | |
wget http://nodejs.org/dist/v0.8.15/node-v0.8.15.tar.gz | |
tar zxvf node-v0.8.15.tar.gz | |
cd node-v0.8.15 | |
# Install npm and n for easier updating |
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
vi /etc/php.ini | |
# add to php.ini: | |
zend_extension="/usr/lib64/php/modules/xdebug.so" | |
# Update timezone | |
date.timezone = 'AMERICA/New_York' |
OlderNewer