Skip to content

Instantly share code, notes, and snippets.

View paulchubatyy's full-sized avatar
🤍
Evaporating

Paul (xobb) Chubatyy paulchubatyy

🤍
Evaporating
View GitHub Profile
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
@paulchubatyy
paulchubatyy / HttpMultipleMethodRequestHandler.php
Created February 2, 2014 16:42
One form to hande several method submission at a time.
<?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;
" can haz highlights
syntax enable
" make love to my eyes
colorscheme Tomorrow-Night
" always show tabs
set showtabline=2
" enable recursive file search
@paulchubatyy
paulchubatyy / phpcs-git-hook-pre-receive
Created December 20, 2011 15:48 — forked from bor/phpcs-git-hook-pre-receive
PHP CodeSniffer pre-receive hook for git
#!/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"
SELECT *
FROM journey j
JOIN location l ON l.id = j.departure_id
WHERE l.city = 'Ternopil';
@paulchubatyy
paulchubatyy / getprofiles.php
Created August 25, 2011 15:59
Vkontakte oauth code for blog
<?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);
@paulchubatyy
paulchubatyy / nginx
Created August 23, 2011 19:59
Logrotate example
/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
<?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')
<?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);
}
#!/bin/bash
################################################## Basic
# this is comment
########### variable (quoting a variable preserves whitequotes)
# USERNAME='lzyy'
#