Skip to content

Instantly share code, notes, and snippets.

View metalim's full-sized avatar
🎯
Focusing

Maksim Litvinov metalim

🎯
Focusing
View GitHub Profile
class P
  constructor: ( @x, @y )->
p = new P 1, 2
args = [ 1, 2 ]
a = 1
b = 2

###call function immediately

@metalim
metalim / gist:3385589
Created August 18, 2012 09:20
mc --kajsdhfkj
MacBook-Pro-Maxim:~ metalim$ mc --kajsdhfkj
Failed to run:
Неизвестный параметр --kajsdhfkj
Использование:
mc [ПАРАМЕТР...] [+число] [этот_каталог] [каталог_другой_панели]
+число - Задать начальную строку для встроенного редактора
GNU Midnight Commander, версия 4.8.4
@metalim
metalim / gist:3385586
Created August 18, 2012 09:19
mc --help
MacBook-Pro-Maxim:~ metalim$ brew update
Already up-to-date.
MacBook-Pro-Maxim:~ metalim$ brew doctor
Your system is raring to brew.
MacBook-Pro-Maxim:~ metalim$ mc -V
GNU Midnight Commander 4.8.4
Built with GLib 2.32.4
Using the S-Lang library with terminfo database
@metalim
metalim / gist:3307639
Created August 9, 2012 20:08
brew install mc
MacBook-Pro-Maxim:~ metalim$ brew update
Updated Homebrew from 5105ef88 to 24214fe9.
==> New Formula
ninja
==> Updated Formula
s-lang
MacBook-Pro-Maxim:~ metalim$ brew doctor
Your system is raring to brew.
@metalim
metalim / gist:3306112
Created August 9, 2012 17:20
brew install mc
MacBook-Pro-Maxim:~ metalim$ brew update
Already up-to-date.
MacBook-Pro-Maxim:~ metalim$ brew doctor
Your system is raring to brew.
MacBook-Pro-Maxim:~ metalim$ brew install mc
==> Installing midnight-commander dependency: s-lang
@metalim
metalim / gist:1081372
Created July 13, 2011 21:26
jquery simplicity
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script type="text/javascript">
function update_filter($elements, str) {
var s = str.toLowerCase();
$elements.each(function(){
$(this).text().toLowerCase().indexOf(s) != -1 ? $(this).show() : $(this).hide();
});
}
</script>
Filter: <input onKeyUp="update_filter($('#my_table tbody tr'), this.value);">