Skip to content

Instantly share code, notes, and snippets.

View denis's full-sized avatar

Denis Barushev denis

View GitHub Profile
cd /tmp
git clone git://git.kernel.org/pub/scm/git/git.git
cd git
git checkout v`git --version | awk '{print $3}'`
cp contrib/completion/git-completion.bash ~/.git-completion.bash
cd ~
rm -rf /tmp/git
echo -e "source ~/.git-completion.bash" >> .profile
require 'benchmark'
Benchmark.bm do |x|
n = 100_000
x.report do
n.times do
# paste code here
end
end
#!/bin/sh
git diff $* | kompare - > /dev/null 2>&1
Телевидение
-----------
р/с 26007002323226
МФО 335775
ОКПО 25330359
Интернет
--------
р/с 26002001323244
МФО 335775
@denis
denis / jquery.plugin_name.js
Created September 24, 2008 20:21
A simple jQuery plugin skeleton
(function ($) {
$.fn.pluginName = function (settings) {
settings = $.extend({
param: 'value'
}, settings);
return this.each(
function () {
var $this = $(this);
// plugin code here