Skip to content

Instantly share code, notes, and snippets.

View index0h's full-sized avatar

Roman Levishchenko index0h

View GitHub Profile
@index0h
index0h / tests.md
Created September 13, 2015 10:21
tests.md
% No Sync % Sync AVG time 1 time 2 time 3 time 4 time 5
No Sync - 40 21.31 21.74 20.85 21.48 20.99 21.51
No Sync +Cache 96 37 20.5 20.63 20.93 20.54 19.88 20.55
No Sync +Fixture 60 24 12.76 12.55 12.86 12.64 12.79 13
No Sync +Cache +Fixture 56 22 11.92 11.94 11.86 11.9 11.91 11.99
Sync 252 - 53.83 54.21 53.43 53.53 54.22 53.8
Sync +Cache 115 46 24.52 25.53 24.22 24.15 24.3 24.56
Sync +Fixture 209 83 44.55 44.48 44.98 44.49 44.65 44.17
Sync +Cache +Fixture 75 30 15.98 15.81 16.03 16.16 15.88 16.03
@index0h
index0h / setup-modernie-vagrant-boxes.md
Last active August 28, 2015 09:26 — forked from andrealbinop/setup-modernie-vagrant-boxes.md
Setup modern.ie vagrant boxes

Setup modern.ie vagrant boxes

Since modern.ie released vagrant boxes, it' no longer necessary to manually import the ova file to virtualbox, as mentioned here.

However, the guys at modern.ie didn't configured the box to work with WinRM. This how-to addresses that, presenting steps to proper repackage these boxes, adding WinRM support. Additionally configures chocolatey package manager and puppet provisioner.

Pre-requisites

thrift_service:
constructor: NewThriftService
arguments:
- "%visit_handler%"
- "%event_handler%"
- "%flash_handler%"
- "%track_handler%"
- "%mark_handler%"
- "localhost:9090"
- binary
################################### General ####################################
## Sentry server name. This is the base URL that Cyclops will use to send
## requests to sentry.
## Defaults to: localhost:9000
SENTRY_BASE_URL = '{{ SENTRY_HOST_HERE }}'
################################################################################
################################# Performance ##################################
@index0h
index0h / commit_name.sh
Created April 15, 2015 11:49
Commit name maker
#!/bin/bash
# Current script works with branches by next standars:
# dev-{YYYYmmdd}-{surname}-N{ticket number}-{ticket name}
# dev-{YYYYmmdd}-{surname}-{ticket number}-{ticket name}
#
# {YYYYmmdd} - branch creation date
# {surname} - authors surname
# {ticket number} - number of ticket in your bug tracker
# {ticket name} - short ticket description, words could be separated by - or _
@index0h
index0h / History.php
Created March 29, 2015 23:39
History.php
<?php
/**
* Поведение для отслеживания изменений.
*
* **ВНИМАНИЕ!!!**
* Данное поведение не работает с моножественными действиями: update и delete, будьте внимательны.
*
* ### Подготовка:
*
* - Необходимо создать такую же таблицу с суфиксом **_history**, как отслежуемая, но с дополнительными полями:
@index0h
index0h / yii1-translation-behavior.php
Created November 18, 2014 08:27
yii1-translation-behavior
<?php
/**
* Поведение для стандартизированной работы с переводами.
*
* Подготовка.
* Создаем основную модель.
*
* - **ДОЛЖНА НЕ** иметь переводимых полей.
* - **ДОЛЖНА** иметь поле id.
* - Основная модель не обязана иметь прописанную связь с моделью переводов.
#!/bin/bash
#=============================================================================
#
# FILE: list_dates.sh
#
# USAGE: list_dates.sh start_date end_date
#
# DESCRIPTION: List the dates between a given range of dates.
#
#=============================================================================
@index0h
index0h / mysql-tunnel.sh
Last active January 5, 2016 15:58
mysql-tunnel.sh
#!/bin/bash
# Необходимо задать три массива: PORTS, PROXY_HOSTS и HOSTS.
# При подключении будут созданы туннели PROXY_HOSTS[id]:PORTS[id] -> HOSTS[id]:3306.
# HOSTS - массив хостов, к которым будет выполнятся ssh подключение (рекомендую использовать ssh-ключи).
PORTS=('33061')
PROXY_HOSTS=('127.0.0.1')
HOSTS=('external.host')