Skip to content

Instantly share code, notes, and snippets.

View eniuz's full-sized avatar

Mariusz Szot eniuz

View GitHub Profile
require.config({
baseUrl: '/backbone-tests/',
paths: {
'jquery' : '/app/libs/jquery',
'underscore' : '/app/libs/underscore',
'backbone' : '/app/libs/backbone',
'mocha' : 'libs/mocha',
'chai' : 'libs/chai',
'chai-jquery' : 'libs/chai-jquery',
'models' : '/app/models'
@eniuz
eniuz / myapp.js
Created December 6, 2013 11:41 — forked from refractalize/myapp.js
// your app
myapp = angular.module('myapp', []);
myapp.directive('userView', function () {...});
myapp.factory('userApi', function () {...});
@eniuz
eniuz / save-guest-additions
Created January 28, 2015 10:53
Fix guest additions problem after vagrant box provisioning
#!/bin/bash
# the "vboxsf" file system is not available. Please verify that
sudo ln -s /opt/VBoxGuestAdditions-4.3.10/lib/VBoxGuestAdditions /usr/lib/VBoxGuestAdditions"
@eniuz
eniuz / gist:bf9e874d6dd08f4b0c4d
Last active August 29, 2015 14:15
remove mysql server
#!/bin/bash
sudo apt-get –purge remove mysql-server
sudo apt-get –purge remove mysql-client
sudo apt-get –purge remove mysql-common
sudo apt-get autoremove
sudo apt-get autoclean
@eniuz
eniuz / enable-moodle-completion-tracking.txt
Created February 16, 2015 13:12
Enable completion tracking in Moodle
/**
* Enable completion tracking in Moodle (check on 2.7, 2.8 don't know how does it relates to other versions)
* 1. Site administration > Advanced features > Completion tracking - enable completion tracking
* 2. Administration > Course administration > Course completion
*/
truncate mdl_course_modules_completion;
or
completion_info->delete_all_completion_data();

Simplified behat for Tim Hunt.

Disclaimers:

  • I'm hoping this will help you understand so you can help us improve our documentation.
  • This is simplified version, i'm ignoring some details which are unimportant for discusing this.

What Behat requires.

@eniuz
eniuz / gist:554e8142b418c89b1135
Created March 24, 2015 13:21
run behat features in parallel
# http://zalas.eu/running-behat-in-parallel-with-selenium-grid/
find features/ -iname '*.feature' | parallel --gnu 'bin/behat {}' || exit 1
java -jar selenium-server-standalone.jar -role node -hub http://localhost:4444/grid/register
# behat.yml
default:
extensions:
Behat\MinkExtension\Extension:
@eniuz
eniuz / phplint.sh
Created March 30, 2015 10:58
php lint from bash or zshell
function phplint(){
dir="$@";
if [ $# -eq 0 ]
then
echo "No arguments supplied";
return;
fi
find $dir -name '*.php' | xargs -n1 php -l
}
@eniuz
eniuz / git-useful.txt
Created April 22, 2015 08:20
git useful commands
# get list of HEADs
git reflog
# reset to the HEAD number
git reset --hard HEAD@{1}
# show stash contents
git stash show -p stash@{1}