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
ansible web -i staging -m ping -u xobb -vvvv | |
<citylance.eu> ESTABLISH CONNECTION FOR USER: xobb | |
<citylance.eu> REMOTE_MODULE ping | |
<citylance.eu> EXEC ['ssh', '-C', '-tt', '-vvv', '-o', 'ControlMaster=auto', '-o', 'ControlPersist=60s', '-o', 'ControlPath=/home/xobb/.ansible/cp/ansible-ssh-%h-%p-%r', '-o', 'Port=22', '-o', 'KbdInteractiveAuthentication=no', '-o', 'PreferredAuthentications=gssapi-with-mic,gssapi-keyex,hostbased,publickey', '-o', 'PasswordAuthentication=no', '-o', 'ConnectTimeout=10', 'citylance.eu', "/bin/sh -c 'mkdir -p $HOME/.ansible/tmp/ansible-tmp-1400189582.89-195230678704045 && chmod a+rx $HOME/.ansible/tmp/ansible-tmp-1400189582.89-195230678704045 && echo $HOME/.ansible/tmp/ansible-tmp-1400189582.89-195230678704045'"] | |
citylance.eu | FAILED => SSH encountered an unknown error. The output was: | |
OpenSSH_6.2p2 Ubuntu-6ubuntu0.4, OpenSSL 1.0.1e 11 Feb 2013 |
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 HttpMethodBasedRequestHandler | |
* @package Citylance\FrameworkBundle\Form\Extension\HttpFoundation | |
* @author Paul Chubatyy <[email protected]> | |
*/ | |
namespace Citylance\FrameworkBundle\Form\Extension\HttpFoundation; | |
use Symfony\Component\Form\FormInterface; | |
use Symfony\Component\Form\RequestHandlerInterface; |
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
" can haz highlights | |
syntax enable | |
" make love to my eyes | |
colorscheme Tomorrow-Night | |
" always show tabs | |
set showtabline=2 | |
" enable recursive file search |
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
#!/bin/sh | |
# PHP CodeSniffer pre-receive hook for git | |
PHPCS_BIN="/usr/bin/phpcs" | |
PHPCS_CODING_STANDARD="PEAR" | |
# use coding standart dir from local repo | |
PHPCS_DIR_LOCAL=0 | |
TMP_DIR=$(mktemp -d --tmpdir phpcs-pre-receive-hook.XXXXXXXX) | |
mkdir "$TMP_DIR/source" |
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
SELECT * | |
FROM journey j | |
JOIN location l ON l.id = j.departure_id | |
WHERE l.city = 'Ternopil'; |
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 Controller_Profile extends Controller { | |
public function action_index() | |
{ | |
$user = Auth::instance()->get_user(); | |
$vkontakte_api = Vkapi::instance($user->token); | |
// Get user profile | |
$result = $vkontakte_api->getProfiles(array('uid' => $user->vk_user_id)); | |
echo Debug::dump($result); |
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
/home/xobb/src/website/logs/*.log | |
/home/xobb/src/blog/logs/*.log { | |
daily | |
missingok | |
rotate 52 | |
compress | |
delaycompress | |
notifempty | |
create 0640 www-data adm | |
sharedscripts |
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 | |
$result = Mage::getModel('customer/customer')->getCollection() | |
->join(array('pet' => $this->getTable('partners_earn_transactions')), $this->getTable('customer_entity').'.entity_id = `pet`.customer_id') // Этот метод точно есть в Collection классе? Может нужно взять getCollection()->getSelect() перед тем как колать join? | |
->addExpressionFieldToSelect('transaction_count', 'COUNT({{pet.id}})') | |
->addAttributeToFilter('country_id', $country_code) | |
->addFieldToFilter('is_active', 1) | |
->addAttributeToSort('COUNT({{pet.id}})') | |
->addAttributeToSort('SUM({{pet.points}})') | |
->groupByAttribute($this->getTable('customer_entity').'.entity_id') |
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 Model_Builder_Comment extends Jelly_Builder { | |
public function get_user_posts_comments(Model_Author $author) | |
{ | |
// Get author's posts ids | |
$post_ids = $author->get('posts')->as_array('id'); | |
// Get the comments that belong to these posts | |
return $this->where('post_id', 'IN', $post_ids); | |
} |
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
#!/bin/bash | |
################################################## Basic | |
# this is comment | |
########### variable (quoting a variable preserves whitequotes) | |
# USERNAME='lzyy' | |
# |