Skip to content

Instantly share code, notes, and snippets.

View index0h's full-sized avatar

Roman Levishchenko index0h

View GitHub Profile
@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

@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 / Photo.php
Created November 27, 2015 17:46
app/models/Photo.php
<?php
namespace app\models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use KoKoKo\Assert\Assert;
class Photo extends Model
{
@index0h
index0h / report_redmine.js
Last active September 27, 2017 15:45
report_redmine.js
var result = {};
$('.time-entry').each(function () {
var $subject = $(this).children('.subject');
var $tracker = $subject.children('a').text();
var $issue = $subject.contents().last().text().substring(2);
var task = '[' + $tracker.replace(' ', '') + '][' + $issue + ']';
var time = $($(this).children('.issue-hours')[0]).text() * 1;
if (!result.hasOwnProperty(task)) {
@index0h
index0h / app-config-services.yml
Last active March 1, 2016 21:10
symfony_example
services:
account_repository:
class: MY\AppBundle\Repository\AccountRepository
factory: ["@doctrine", getRepository]
arguments:
- MY\AppBundle\Entity\Account
@index0h
index0h / image_resize.php
Created April 7, 2016 21:28
image_resize.php
<?php
$sourcePath = '';
$destinationPath = '';
$maxHeight = 1024;
$maxWith = 768;
$ratio = $maxWith / $maxHeight;
$dir = new DirectoryIterator($sourcePath);
@index0h
index0h / testAddNeverConstraints.php
Created April 14, 2016 16:45
testAddNeverConstraints.php
<?php
class Test {
protected function verifyMockObjects()
{
$reflectionMockObjectsProperty = new \ReflectionProperty(\PHPUnit_Framework_TestCase::class, 'mockObjects');
$reflectionMockObjectsProperty->setAccessible(true);
$reflectionConfigurableMethods = new \ReflectionProperty(
@index0h
index0h / README.md
Created April 21, 2016 23:27
ansible + docker
vagrant up
vagrant ssh
sudo -i
docker -irt --name CONTAINER_NAME centos:centos6.6 bash
ansible-playbook -i hosts playbook.yml
docker commit $(docker ps -aqf "name=CONTAINER_NAME") CONTAINER_NAME:CONTAINER_VERSION
@index0h
index0h / MyRegistrationForm.php
Created June 17, 2016 14:01
MyRegistrationForm.php
<?php
class MyRegistrationForm
{
/** @var string */
private $email;
/** @var string */
private $password;
@index0h
index0h / apocalypse_good.svg
Created August 10, 2016 08:48
apocalypse_good.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.