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
$modal.open | |
templateUrl: '/my-view.html' | |
controller: 'ModalController as ctrl' | |
resolve: | |
message: -> | |
'Success' | |
$modal.open | |
templateUrl: '/my-view.html' | |
controller: 'ModalController as ctrl' |
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
{ | |
"posts" : [ | |
{ | |
"url" : "http://www.naturallycurly.com/curlreading/home/the-truth-about-sulfates-according-to-science/", | |
"title" : "The Truth About Sulfates, According to Science", | |
"excerpt" : "Are you generalizing sulfates? This will make you wonder what other ingredients have you generalized and judged prematurely.", | |
"thumbnail" : "http://static.naturallycurly.com/wp-content/uploads/2015/01/Sulfate-380x260.jpg" | |
}, | |
{ | |
"url" : "http://www.naturallycurly.com/curlreading/home/100-years-of-hairstyles-and-other-things-you-missed-this-week/", |
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 | |
class CreateFixtureCommand extends CConsoleCommand | |
{ | |
public function actionIndex($type, $key_column, $ids) | |
{ | |
$ids = explode(',', $ids); | |
if (!@class_exists($type)) | |
{ |
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
# bash/zsh completion support for core Git. | |
# | |
# Copyright (C) 2006,2007 Shawn O. Pearce <[email protected]> | |
# Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/). | |
# Distributed under the GNU General Public License, version 2.0. | |
# | |
# The contained completion routines provide support for completing: | |
# | |
# *) local and remote branch names | |
# *) local and remote tag names |
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 linux update, followed by GCC and Make | |
sudo yum -y update | |
sudo yum install -y gcc make | |
# Install Nginx and PHP-FPM | |
sudo yum install -y nginx php-fpm | |
# Install PHP extensions | |
sudo yum install -y php-devel php-mysql php-pdo \ | |
php-pear php-mbstring php-cli php-odbc \ |